Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include EGL on linux #9

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Include EGL on linux
  • Loading branch information
TheDrawingCoder-Gamer committed Dec 6, 2023
commit 35402c767500633fab59bab7e964fdbaa539ff73
5 changes: 3 additions & 2 deletions script/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def main():
'skia_use_system_freetype2=true',
# 'skia_enable_gpu=true',
'extra_cflags_cc=["-frtti"]',
'skia_use_egl=true',
]

if (machine == 'arm64') and (machine != common.native_machine()):
Expand All @@ -60,8 +61,8 @@ def main():
]
else:
args += [
'cc="gcc-9"',
'cxx="g++-9"',
'cc="gcc"',
'cxx="g++"',
]

elif 'windows' == system:
Expand Down