2015-05-24 22:22:51 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
def is_active():
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_name():
|
|
|
|
return "Haiku"
|
|
|
|
|
|
|
|
def can_build():
|
|
|
|
if (os.name != "posix"):
|
|
|
|
return False
|
|
|
|
|
|
|
|
if (sys.platform == "darwin"):
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_opts():
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_flags():
|
|
|
|
return [
|
|
|
|
('builtin_zlib', 'no')
|
|
|
|
]
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
is64=sys.maxsize > 2**32
|
|
|
|
|
|
|
|
if (env["bits"]=="default"):
|
|
|
|
if (is64):
|
|
|
|
env["bits"]="64"
|
|
|
|
else:
|
|
|
|
env["bits"]="32"
|
|
|
|
|
|
|
|
env.Append(CPPPATH = ['#platform/haiku'])
|
2015-05-25 02:49:24 +02:00
|
|
|
|
|
|
|
# TODO: add clang and try gcc2 too
|
2015-05-24 22:22:51 +02:00
|
|
|
env["CC"] = "gcc-x86"
|
|
|
|
env["CXX"] = "g++-x86"
|
|
|
|
|
2015-05-27 23:59:41 +02:00
|
|
|
if (env["target"]=="release"):
|
|
|
|
if (env["debug_release"]=="yes"):
|
|
|
|
env.Append(CCFLAGS=['-g2','-fomit-frame-pointer'])
|
|
|
|
else:
|
|
|
|
env.Append(CCFLAGS=['-O2','-ffast-math','-fomit-frame-pointer'])
|
|
|
|
elif (env["target"]=="release_debug"):
|
|
|
|
env.Append(CCFLAGS=['-O2','-ffast-math','-DDEBUG_ENABLED'])
|
|
|
|
elif (env["target"]=="debug"):
|
|
|
|
env.Append(CCFLAGS=['-g2', '-Wall','-DDEBUG_ENABLED','-DDEBUG_MEMORY_ENABLED'])
|
|
|
|
|
2015-05-28 02:42:40 +02:00
|
|
|
#env.Append(CCFLAGS=['-DFREETYPE_ENABLED'])
|
|
|
|
env.Append(CPPFLAGS = ['-DOPENGL_ENABLED', '-DGLEW_ENABLED'])
|
|
|
|
env.Append(CPPFLAGS = ['-DUNIX_ENABLED', '-DGLES2_ENABLED', '-DGLES_OVER_GL'])
|
2015-05-25 05:02:55 +02:00
|
|
|
env.Append(LIBS = ['be', 'z', 'network', 'bnetapi'])
|