2008-01-31 12:14:35 +08:00
|
|
|
#######################################################################
|
|
|
|
# Top-level SConstruct
|
|
|
|
#
|
|
|
|
# For example, invoke scons as
|
|
|
|
#
|
2010-11-01 21:30:22 +08:00
|
|
|
# scons build=debug llvm=yes machine=x86
|
2008-01-31 12:14:35 +08:00
|
|
|
#
|
|
|
|
# to set configuration variables. Or you can write those options to a file
|
|
|
|
# named config.py:
|
|
|
|
#
|
|
|
|
# # config.py
|
2010-11-01 21:30:22 +08:00
|
|
|
# build='debug'
|
|
|
|
# llvm=True
|
2008-02-06 13:36:50 +08:00
|
|
|
# machine='x86'
|
2008-01-31 12:14:35 +08:00
|
|
|
#
|
|
|
|
# Invoke
|
|
|
|
#
|
|
|
|
# scons -h
|
|
|
|
#
|
|
|
|
# to get the full list of options. See scons manpage for more info.
|
|
|
|
#
|
|
|
|
|
2008-02-27 16:36:28 +08:00
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
2010-01-27 03:57:34 +08:00
|
|
|
import SCons.Util
|
2008-02-27 16:36:28 +08:00
|
|
|
|
|
|
|
import common
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Configuration options
|
2008-02-23 18:49:08 +08:00
|
|
|
|
2009-05-01 23:12:17 +08:00
|
|
|
opts = Variables('config.py')
|
2008-03-04 01:52:37 +08:00
|
|
|
common.AddOptions(opts)
|
2008-08-30 01:30:32 +08:00
|
|
|
|
2008-02-06 13:36:50 +08:00
|
|
|
env = Environment(
|
2008-06-06 13:48:57 +08:00
|
|
|
options = opts,
|
|
|
|
tools = ['gallium'],
|
2008-07-15 06:56:42 +08:00
|
|
|
toolpath = ['#scons'],
|
2008-06-06 13:48:57 +08:00
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
2011-06-18 03:11:35 +08:00
|
|
|
opts.Save('config.py', env)
|
|
|
|
|
2010-11-01 21:30:22 +08:00
|
|
|
# Backwards compatability with old target configuration variable
|
|
|
|
try:
|
|
|
|
targets = ARGUMENTS['targets']
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
targets = targets.split(',')
|
|
|
|
print 'scons: warning: targets option is deprecated; pass the targets on their own such as'
|
|
|
|
print
|
|
|
|
print ' scons %s' % ' '.join(targets)
|
|
|
|
print
|
|
|
|
COMMAND_LINE_TARGETS.append(targets)
|
2010-01-27 03:14:16 +08:00
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
|
2010-11-01 21:30:22 +08:00
|
|
|
Help(opts.GenerateHelpText(env))
|
2008-01-31 12:14:35 +08:00
|
|
|
|
2011-01-14 17:50:29 +08:00
|
|
|
# fail early for a common error on windows
|
|
|
|
if env['gles']:
|
|
|
|
try:
|
|
|
|
import libxml2
|
|
|
|
except ImportError:
|
|
|
|
raise SCons.Errors.UserError, "GLES requires libxml2-python to build"
|
2008-01-31 12:14:35 +08:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Environment setup
|
|
|
|
|
|
|
|
# Includes
|
2010-04-26 16:08:34 +08:00
|
|
|
env.Prepend(CPPPATH = [
|
2008-01-31 12:14:35 +08:00
|
|
|
'#/include',
|
2010-04-26 16:08:34 +08:00
|
|
|
])
|
|
|
|
env.Append(CPPPATH = [
|
2008-02-18 18:52:44 +08:00
|
|
|
'#/src/gallium/include',
|
|
|
|
'#/src/gallium/auxiliary',
|
|
|
|
'#/src/gallium/drivers',
|
2010-03-10 18:34:29 +08:00
|
|
|
'#/src/gallium/winsys',
|
2008-01-31 12:14:35 +08:00
|
|
|
])
|
|
|
|
|
2010-01-10 18:36:35 +08:00
|
|
|
if env['msvc']:
|
|
|
|
env.Append(CPPPATH = ['#include/c99'])
|
|
|
|
|
2008-03-12 21:34:30 +08:00
|
|
|
# for debugging
|
|
|
|
#print env.Dump()
|
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
|
2011-01-14 04:52:01 +08:00
|
|
|
#######################################################################
|
|
|
|
# Invoke host SConscripts
|
|
|
|
#
|
|
|
|
# For things that are meant to be run on the native host build machine, instead
|
|
|
|
# of the target machine.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Create host environent
|
2011-06-17 21:48:28 +08:00
|
|
|
if env['crosscompile'] and not env['embedded']:
|
2011-01-14 04:52:01 +08:00
|
|
|
host_env = Environment(
|
|
|
|
options = opts,
|
|
|
|
# no tool used
|
|
|
|
tools = [],
|
|
|
|
toolpath = ['#scons'],
|
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Override options
|
|
|
|
host_env['platform'] = common.host_platform
|
|
|
|
host_env['machine'] = common.host_machine
|
|
|
|
host_env['toolchain'] = 'default'
|
|
|
|
host_env['llvm'] = False
|
|
|
|
|
|
|
|
host_env.Tool('gallium')
|
|
|
|
|
2011-02-12 01:38:54 +08:00
|
|
|
host_env['hostonly'] = True
|
|
|
|
assert host_env['crosscompile'] == False
|
|
|
|
|
2011-02-12 01:59:36 +08:00
|
|
|
if host_env['msvc']:
|
|
|
|
host_env.Append(CPPPATH = ['#include/c99'])
|
|
|
|
|
2011-02-15 23:31:19 +08:00
|
|
|
target_env = env
|
|
|
|
env = host_env
|
|
|
|
Export('env')
|
2011-02-12 01:38:54 +08:00
|
|
|
|
2011-01-14 04:52:01 +08:00
|
|
|
SConscript(
|
2011-02-12 01:38:54 +08:00
|
|
|
'src/SConscript',
|
2011-01-14 04:52:01 +08:00
|
|
|
variant_dir = host_env['build_dir'],
|
|
|
|
duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|
|
|
|
|
2011-02-15 23:31:19 +08:00
|
|
|
env = target_env
|
|
|
|
|
2011-02-12 01:38:54 +08:00
|
|
|
Export('env')
|
2011-01-14 04:52:01 +08:00
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
#######################################################################
|
|
|
|
# Invoke SConscripts
|
|
|
|
|
2008-01-31 13:21:49 +08:00
|
|
|
# TODO: Build several variants at the same time?
|
|
|
|
# http://www.scons.org/wiki/SimultaneousVariantBuilds
|
2008-01-31 12:14:35 +08:00
|
|
|
|
|
|
|
SConscript(
|
2008-02-18 18:52:44 +08:00
|
|
|
'src/SConscript',
|
2010-09-29 21:08:53 +08:00
|
|
|
variant_dir = env['build_dir'],
|
2008-01-31 12:14:35 +08:00
|
|
|
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|
2010-01-01 05:10:25 +08:00
|
|
|
|