summaryrefslogtreecommitdiff
path: root/platform/haiku/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-06-30 08:07:24 +0200
committerGitHub <noreply@github.com>2016-06-30 08:07:24 +0200
commit91655b9a18fdccaff9137af458add3778bf666e9 (patch)
tree85b1fcab4658ccf1c0483f617e8189cff3f80d5b /platform/haiku/detect.py
parent0233c69bdcc951926421f1d9ac4160e0f3758f8d (diff)
parentfbdb717cae6f7598fb9459d2f05afb2745bfede2 (diff)
Merge pull request #5494 from jay3d/master
Fixed building for latest Haiku nightlies.
Diffstat (limited to 'platform/haiku/detect.py')
-rw-r--r--platform/haiku/detect.py6
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"):