2008-01-31 04:14:35 +00:00
|
|
|
#######################################################################
|
|
|
|
# Top-level SConstruct
|
|
|
|
#
|
|
|
|
# For example, invoke scons as
|
|
|
|
#
|
2008-02-06 05:36:50 +00:00
|
|
|
# scons debug=1 dri=0 machine=x86
|
2008-01-31 04:14:35 +00:00
|
|
|
#
|
|
|
|
# to set configuration variables. Or you can write those options to a file
|
|
|
|
# named config.py:
|
|
|
|
#
|
|
|
|
# # config.py
|
|
|
|
# debug=1
|
|
|
|
# dri=0
|
2008-02-06 05:36:50 +00:00
|
|
|
# machine='x86'
|
2008-01-31 04:14:35 +00:00
|
|
|
#
|
|
|
|
# Invoke
|
|
|
|
#
|
|
|
|
# scons -h
|
|
|
|
#
|
|
|
|
# to get the full list of options. See scons manpage for more info.
|
|
|
|
#
|
|
|
|
|
2008-02-27 08:36:28 +00:00
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
2010-01-26 19:57:34 +00:00
|
|
|
import SCons.Util
|
2008-02-27 08:36:28 +00:00
|
|
|
|
|
|
|
import common
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Configuration options
|
2008-02-23 10:49:08 +00:00
|
|
|
|
2008-07-13 14:36:59 +00:00
|
|
|
default_statetrackers = 'mesa'
|
|
|
|
|
2008-02-27 08:36:28 +00:00
|
|
|
if common.default_platform in ('linux', 'freebsd', 'darwin'):
|
2009-12-21 19:18:41 +00:00
|
|
|
default_drivers = 'softpipe,failover,svga,i915,i965,trace,identity,llvmpipe'
|
2008-02-23 10:49:08 +00:00
|
|
|
default_winsys = 'xlib'
|
2008-02-27 08:36:28 +00:00
|
|
|
elif common.default_platform in ('winddk',):
|
2009-12-21 19:18:41 +00:00
|
|
|
default_drivers = 'softpipe,svga,i915,i965,trace,identity'
|
2008-06-02 15:04:19 +00:00
|
|
|
default_winsys = 'all'
|
2010-01-26 20:58:11 +00:00
|
|
|
elif common.default_platform in ('embedded',):
|
|
|
|
default_drivers = 'softpipe,llvmpipe'
|
|
|
|
default_winsys = 'xlib'
|
2008-02-22 15:46:40 +00:00
|
|
|
else:
|
2008-02-23 10:49:08 +00:00
|
|
|
default_drivers = 'all'
|
|
|
|
default_winsys = 'all'
|
2008-02-24 07:43:07 +00:00
|
|
|
|
2009-05-01 15:12:17 +00:00
|
|
|
opts = Variables('config.py')
|
2008-03-03 17:52:37 +00:00
|
|
|
common.AddOptions(opts)
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers,
|
2009-08-25 13:39:05 +00:00
|
|
|
['mesa', 'python', 'xorg']))
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
|
2010-01-01 00:22:48 +00:00
|
|
|
['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe']))
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
|
2010-03-28 16:53:58 +00:00
|
|
|
['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'graw-xlib']))
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))
|
2008-08-29 17:30:32 +00:00
|
|
|
|
2008-02-06 05:36:50 +00:00
|
|
|
env = Environment(
|
2008-06-06 05:48:57 +00:00
|
|
|
options = opts,
|
|
|
|
tools = ['gallium'],
|
2008-07-14 22:56:42 +00:00
|
|
|
toolpath = ['#scons'],
|
2008-06-06 05:48:57 +00:00
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
2010-01-26 19:14:16 +00:00
|
|
|
if os.environ.has_key('CC'):
|
|
|
|
env['CC'] = os.environ['CC']
|
|
|
|
if os.environ.has_key('CFLAGS'):
|
|
|
|
env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
|
|
|
|
if os.environ.has_key('CXX'):
|
|
|
|
env['CXX'] = os.environ['CXX']
|
|
|
|
if os.environ.has_key('CXXFLAGS'):
|
|
|
|
env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
|
|
|
|
if os.environ.has_key('LDFLAGS'):
|
|
|
|
env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
|
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
Help(opts.GenerateHelpText(env))
|
|
|
|
|
|
|
|
# replicate options values in local variables
|
|
|
|
debug = env['debug']
|
|
|
|
dri = env['dri']
|
|
|
|
machine = env['machine']
|
2008-02-19 09:53:16 +00:00
|
|
|
platform = env['platform']
|
2008-01-31 04:14:35 +00:00
|
|
|
|
|
|
|
# derived options
|
|
|
|
x86 = machine == 'x86'
|
2008-10-23 08:28:48 +00:00
|
|
|
ppc = machine == 'ppc'
|
2010-01-26 20:58:11 +00:00
|
|
|
gcc = platform in ('linux', 'freebsd', 'darwin', 'embedded')
|
2008-04-25 09:16:25 +00:00
|
|
|
msvc = platform in ('windows', 'winddk')
|
2008-01-31 04:14:35 +00:00
|
|
|
|
|
|
|
Export([
|
|
|
|
'debug',
|
|
|
|
'x86',
|
2008-10-23 08:28:48 +00:00
|
|
|
'ppc',
|
2008-01-31 04:14:35 +00:00
|
|
|
'dri',
|
|
|
|
'platform',
|
|
|
|
'gcc',
|
|
|
|
'msvc',
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Environment setup
|
|
|
|
|
2010-03-09 17:08:16 +00:00
|
|
|
# Always build trace and identity drivers
|
2010-02-25 17:02:52 +00:00
|
|
|
if 'trace' not in env['drivers']:
|
|
|
|
env['drivers'].append('trace')
|
2010-03-09 17:08:16 +00:00
|
|
|
if 'identity' not in env['drivers']:
|
|
|
|
env['drivers'].append('identity')
|
2010-02-25 17:02:52 +00:00
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
# Includes
|
|
|
|
env.Append(CPPPATH = [
|
|
|
|
'#/include',
|
2008-02-18 10:52:44 +00:00
|
|
|
'#/src/gallium/include',
|
|
|
|
'#/src/gallium/auxiliary',
|
|
|
|
'#/src/gallium/drivers',
|
2010-03-10 10:34:29 +00:00
|
|
|
'#/src/gallium/winsys',
|
2008-01-31 04:14:35 +00:00
|
|
|
])
|
|
|
|
|
2010-01-10 10:36:35 +00:00
|
|
|
if env['msvc']:
|
|
|
|
env.Append(CPPPATH = ['#include/c99'])
|
|
|
|
|
2010-01-28 17:26:05 +00:00
|
|
|
# Embedded
|
|
|
|
if platform == 'embedded':
|
|
|
|
env.Append(CPPDEFINES = [
|
|
|
|
'_POSIX_SOURCE',
|
|
|
|
('_POSIX_C_SOURCE', '199309L'),
|
|
|
|
'_SVID_SOURCE',
|
|
|
|
'_BSD_SOURCE',
|
|
|
|
'_GNU_SOURCE',
|
|
|
|
|
|
|
|
'PTHREADS',
|
|
|
|
])
|
|
|
|
env.Append(LIBS = [
|
|
|
|
'm',
|
|
|
|
'pthread',
|
|
|
|
'dl',
|
|
|
|
])
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2008-02-07 10:59:17 +00:00
|
|
|
# Posix
|
2010-01-28 17:26:05 +00:00
|
|
|
if platform in ('posix', 'linux', 'freebsd', 'darwin'):
|
2008-02-07 10:59:17 +00:00
|
|
|
env.Append(CPPDEFINES = [
|
|
|
|
'_POSIX_SOURCE',
|
|
|
|
('_POSIX_C_SOURCE', '199309L'),
|
|
|
|
'_SVID_SOURCE',
|
|
|
|
'_BSD_SOURCE',
|
|
|
|
'_GNU_SOURCE',
|
|
|
|
|
|
|
|
'PTHREADS',
|
2010-01-28 17:26:05 +00:00
|
|
|
'HAVE_POSIX_MEMALIGN',
|
2008-02-07 10:59:17 +00:00
|
|
|
])
|
2010-01-24 05:05:58 +00:00
|
|
|
if platform == 'darwin':
|
|
|
|
env.Append(CPPDEFINES = ['_DARWIN_C_SOURCE'])
|
2008-02-07 10:59:17 +00:00
|
|
|
env.Append(LIBS = [
|
|
|
|
'm',
|
|
|
|
'pthread',
|
|
|
|
'dl',
|
|
|
|
])
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2008-03-12 13:34:30 +00:00
|
|
|
# for debugging
|
|
|
|
#print env.Dump()
|
|
|
|
|
2008-02-27 08:36:28 +00:00
|
|
|
Export('env')
|
2008-01-31 04:14:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Invoke SConscripts
|
|
|
|
|
2008-01-31 05:21:49 +00:00
|
|
|
# TODO: Build several variants at the same time?
|
|
|
|
# http://www.scons.org/wiki/SimultaneousVariantBuilds
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2009-12-10 16:29:04 +00:00
|
|
|
if env['platform'] != common.default_platform:
|
|
|
|
# GLSL code has to be built twice -- one for the host OS, another for the target OS...
|
|
|
|
|
|
|
|
host_env = Environment(
|
|
|
|
# options are ignored
|
|
|
|
# default tool is used
|
2009-12-31 17:58:56 +00:00
|
|
|
tools = ['default', 'custom'],
|
2009-12-10 16:29:04 +00:00
|
|
|
toolpath = ['#scons'],
|
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
|
|
|
host_env['platform'] = common.default_platform
|
2009-12-31 17:58:56 +00:00
|
|
|
host_env['machine'] = common.default_machine
|
|
|
|
host_env['debug'] = env['debug']
|
2009-12-10 16:29:04 +00:00
|
|
|
|
|
|
|
SConscript(
|
|
|
|
'src/glsl/SConscript',
|
2009-12-31 21:10:25 +00:00
|
|
|
variant_dir = os.path.join(env['build'], 'host'),
|
2009-12-10 16:29:04 +00:00
|
|
|
duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
exports={'env':host_env},
|
|
|
|
)
|
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
SConscript(
|
2008-02-18 10:52:44 +00:00
|
|
|
'src/SConscript',
|
2009-01-24 15:56:28 +00:00
|
|
|
variant_dir = env['build'],
|
2008-01-31 04:14:35 +00:00
|
|
|
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|
2009-12-31 21:10:25 +00:00
|
|
|
|
2010-02-15 20:48:24 +00:00
|
|
|
env.Default('src')
|
|
|
|
|
|
|
|
SConscript(
|
|
|
|
'progs/SConscript',
|
|
|
|
variant_dir = os.path.join('progs', env['build']),
|
|
|
|
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|