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'
|
2010-08-26 10:37:42 +00:00
|
|
|
default_targets = 'graw-null'
|
2008-07-13 14:36:59 +00:00
|
|
|
|
2008-02-27 08:36:28 +00:00
|
|
|
if common.default_platform in ('linux', 'freebsd', 'darwin'):
|
2010-09-03 22:25:44 +00:00
|
|
|
default_drivers = 'softpipe,galahad,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',):
|
2010-05-12 20:11:39 +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,
|
2010-05-31 03:47:58 +00:00
|
|
|
['mesa', 'python', 'xorg', 'egl']))
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
|
2010-09-03 22:25:44 +00:00
|
|
|
['softpipe', 'galahad', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'r600', 'identity', 'llvmpipe', 'nouveau', 'nv50', 'nvfx']))
|
2009-05-01 15:12:17 +00:00
|
|
|
opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
|
2010-05-13 19:29:18 +00:00
|
|
|
['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'r600', 'graw-xlib']))
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2010-05-14 09:55:07 +00:00
|
|
|
opts.Add(ListVariable('targets', 'driver targets to build', default_targets,
|
|
|
|
['dri-i915',
|
|
|
|
'dri-i965',
|
|
|
|
'dri-nouveau',
|
|
|
|
'dri-radeong',
|
|
|
|
'dri-swrast',
|
|
|
|
'dri-vmwgfx',
|
|
|
|
'egl-i915',
|
|
|
|
'egl-i965',
|
|
|
|
'egl-nouveau',
|
|
|
|
'egl-radeon',
|
|
|
|
'egl-swrast',
|
|
|
|
'egl-vmwgfx',
|
|
|
|
'graw-xlib',
|
2010-08-26 10:37:42 +00:00
|
|
|
'graw-null',
|
2010-05-14 09:55:07 +00:00
|
|
|
'libgl-gdi',
|
|
|
|
'libgl-xlib',
|
|
|
|
'xorg-i915',
|
|
|
|
'xorg-i965',
|
|
|
|
'xorg-nouveau',
|
|
|
|
'xorg-radeon',
|
|
|
|
'xorg-vmwgfx']))
|
|
|
|
|
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-05-04 11:06:37 +00:00
|
|
|
# Always build trace, rbug, identity, softpipe, and llvmpipe (where possible)
|
2010-02-25 17:02:52 +00:00
|
|
|
if 'trace' not in env['drivers']:
|
|
|
|
env['drivers'].append('trace')
|
2010-05-04 11:06:37 +00:00
|
|
|
if 'rbug' not in env['drivers']:
|
|
|
|
env['drivers'].append('rbug')
|
2010-06-28 20:22:53 +00:00
|
|
|
if 'galahad' not in env['drivers']:
|
|
|
|
env['drivers'].append('galahad')
|
2010-03-09 17:08:16 +00:00
|
|
|
if 'identity' not in env['drivers']:
|
|
|
|
env['drivers'].append('identity')
|
2010-04-10 02:01:30 +00:00
|
|
|
if 'softpipe' not in env['drivers']:
|
|
|
|
env['drivers'].append('softpipe')
|
|
|
|
if env['llvm'] and 'llvmpipe' not in env['drivers']:
|
|
|
|
env['drivers'].append('llvmpipe')
|
2010-06-05 14:53:38 +00:00
|
|
|
if 'sw' not in env['drivers']:
|
|
|
|
env['drivers'].append('sw')
|
2010-02-25 17:02:52 +00:00
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
# Includes
|
2010-04-26 08:08:34 +00:00
|
|
|
env.Prepend(CPPPATH = [
|
2008-01-31 04:14:35 +00:00
|
|
|
'#/include',
|
2010-04-26 08:08:34 +00:00
|
|
|
])
|
|
|
|
env.Append(CPPPATH = [
|
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-05-12 21:48:32 +00:00
|
|
|
if gcc:
|
|
|
|
env.Append(CFLAGS = ['-fvisibility=hidden'])
|
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
|
|
|
|
|
|
|
SConscript(
|
2008-02-18 10:52:44 +00:00
|
|
|
'src/SConscript',
|
2010-09-29 13:08:53 +00:00
|
|
|
variant_dir = env['build_dir'],
|
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')
|
|
|
|
|