diff options
author | José Fonseca <[email protected]> | 2011-06-17 16:28:27 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-06-17 16:41:05 +0100 |
commit | 8173471fc25f4c768cab54fa840fd4c53d1c3c0f (patch) | |
tree | c4c2432bc2184eb63aac9e19ed5edbc23cadbab5 /scons | |
parent | 41750107496858a047afa8d81d20fe903f285a78 (diff) |
scons: Move all env setup to scons/gallium.py
Diffstat (limited to 'scons')
-rwxr-xr-x | scons/gallium.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 57acfe032f2..9d08efdd10c 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -279,6 +279,18 @@ def generate(env): cppdefines += ['NDEBUG'] if env['build'] == 'profile': cppdefines += ['PROFILE'] + if env['platform'] in ('posix', 'linux', 'freebsd', 'darwin'): + cppdefines += [ + '_POSIX_SOURCE', + ('_POSIX_C_SOURCE', '199309L'), + '_SVID_SOURCE', + '_BSD_SOURCE', + '_GNU_SOURCE', + 'PTHREADS', + 'HAVE_POSIX_MEMALIGN', + ] + if env['platform'] == 'darwin': + cppdefines += ['_DARWIN_C_SOURCE'] if platform == 'windows': cppdefines += [ 'WIN32', @@ -405,6 +417,8 @@ def generate(env): ccflags += ['-m64'] if platform == 'darwin': ccflags += ['-fno-common'] + if env['platform'] != 'windows': + ccflags += ['-fvisibility=hidden'] # See also: # - http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html ccflags += [ @@ -597,7 +611,10 @@ def generate(env): env['LINK'] = env['CXX'] # Default libs - env.Append(LIBS = []) + libs = [] + if env['platform'] in ('posix', 'linux', 'freebsd', 'darwin'): + libs += ['m', 'pthread', 'dl'] + env.Append(LIBS = libs) # Load tools env.Tool('lex') |