diff options
author | Jamil Halabi <jay3dlinux@gmail.com> | 2016-06-29 15:04:24 -0400 |
---|---|---|
committer | Jamil Halabi <jay3dlinux@gmail.com> | 2016-06-29 15:40:25 -0400 |
commit | fbdb717cae6f7598fb9459d2f05afb2745bfede2 (patch) | |
tree | ea14d50604f8abc767488bd625da62e952976a8d /platform/haiku/detect.py | |
parent | 72c2cccbe28d37890e3367c1488830693a225e69 (diff) | |
download | redot-engine-fbdb717cae6f7598fb9459d2f05afb2745bfede2.tar.gz |
Fixed building for latest Haiku nightlies.
Diffstat (limited to 'platform/haiku/detect.py')
-rw-r--r-- | platform/haiku/detect.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/haiku/detect.py b/platform/haiku/detect.py index 6d1a96a8da..f36b0c567e 100644 --- a/platform/haiku/detect.py +++ b/platform/haiku/detect.py @@ -24,7 +24,7 @@ def get_opts(): def get_flags(): return [ ('builtin_zlib', 'no'), - #('glew', 'yes'), # TODO: investigate the GLEW situation on Haiku + ('glew', 'yes'), ] def configure(env): @@ -38,8 +38,8 @@ def configure(env): env.Append(CPPPATH = ['#platform/haiku']) - env["CC"] = "gcc" - env["CXX"] = "g++" + env["CC"] = "gcc-x86" + env["CXX"] = "g++-x86" if (env["target"]=="release"): if (env["debug_release"]=="yes"): |