2008-01-31 04:14:35 +00:00
|
|
|
#######################################################################
|
|
|
|
# Top-level SConstruct
|
|
|
|
#
|
|
|
|
# For example, invoke scons as
|
|
|
|
#
|
2010-11-01 13:30:22 +00:00
|
|
|
# scons build=debug llvm=yes 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
|
2010-11-01 13:30:22 +00:00
|
|
|
# build='debug'
|
|
|
|
# llvm=True
|
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
|
|
|
|
2009-05-01 15:12:17 +00:00
|
|
|
opts = Variables('config.py')
|
2008-03-03 17:52:37 +00:00
|
|
|
common.AddOptions(opts)
|
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,
|
|
|
|
)
|
|
|
|
|
2011-07-01 18:04:57 +00:00
|
|
|
# XXX: This creates a many problems as it saves...
|
|
|
|
#opts.Save('config.py', env)
|
2011-06-17 19:11:35 +00:00
|
|
|
|
2010-11-01 13:30:22 +00: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-26 19:14:16 +00:00
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2010-11-01 13:30:22 +00:00
|
|
|
Help(opts.GenerateHelpText(env))
|
2008-01-31 04:14:35 +00:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Environment setup
|
|
|
|
|
2013-07-25 22:45:45 +00:00
|
|
|
with open("VERSION") as f:
|
|
|
|
mesa_version = f.read().strip()
|
2013-03-13 13:13:08 +00:00
|
|
|
env.Append(CPPDEFINES = [
|
2013-07-25 22:45:45 +00:00
|
|
|
('PACKAGE_VERSION', '\\"%s\\"' % mesa_version),
|
2013-03-13 13:13:08 +00:00
|
|
|
('PACKAGE_BUGREPORT', '\\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\\"'),
|
|
|
|
])
|
|
|
|
|
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
|
|
|
])
|
|
|
|
|
2008-03-12 13:34:30 +00:00
|
|
|
# for debugging
|
|
|
|
#print env.Dump()
|
|
|
|
|
2008-01-31 04:14:35 +00:00
|
|
|
|
2011-01-13 20:52:01 +00: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 13:48:28 +00:00
|
|
|
if env['crosscompile'] and not env['embedded']:
|
2011-01-13 20:52:01 +00: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-11 17:38:54 +00:00
|
|
|
host_env['hostonly'] = True
|
|
|
|
assert host_env['crosscompile'] == False
|
|
|
|
|
2011-02-15 15:31:19 +00:00
|
|
|
target_env = env
|
|
|
|
env = host_env
|
|
|
|
Export('env')
|
2011-02-11 17:38:54 +00:00
|
|
|
|
2011-01-13 20:52:01 +00:00
|
|
|
SConscript(
|
2011-02-11 17:38:54 +00:00
|
|
|
'src/SConscript',
|
2011-01-13 20:52:01 +00:00
|
|
|
variant_dir = host_env['build_dir'],
|
|
|
|
duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|
|
|
|
|
2011-02-15 15:31:19 +00:00
|
|
|
env = target_env
|
|
|
|
|
2011-02-11 17:38:54 +00:00
|
|
|
Export('env')
|
2011-01-13 20:52:01 +00:00
|
|
|
|
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
|
|
|
|
2011-06-17 19:11:50 +00:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# List all aliases
|
|
|
|
|
|
|
|
try:
|
|
|
|
from SCons.Node.Alias import default_ans
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
aliases = default_ans.keys()
|
|
|
|
aliases.sort()
|
|
|
|
env.Help('\n')
|
|
|
|
env.Help('Recognized targets:\n')
|
|
|
|
for alias in aliases:
|
|
|
|
env.Help(' %s\n' % alias)
|