2008-01-31 12:14:35 +08:00
|
|
|
#######################################################################
|
|
|
|
# Top-level SConstruct
|
|
|
|
#
|
2016-05-25 21:30:06 +08:00
|
|
|
# For example, invoke scons as
|
2008-01-31 12:14:35 +08:00
|
|
|
#
|
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'
|
2016-05-25 21:30:06 +08:00
|
|
|
#
|
2008-01-31 12:14:35 +08:00
|
|
|
# Invoke
|
|
|
|
#
|
|
|
|
# scons -h
|
|
|
|
#
|
|
|
|
# to get the full list of options. See scons manpage for more info.
|
2016-05-25 21:30:06 +08:00
|
|
|
#
|
2008-01-31 12:14:35 +08:00
|
|
|
|
2019-10-22 00:24:12 +08:00
|
|
|
from __future__ import print_function
|
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
|
|
|
|
|
2018-08-01 23:48:11 +08:00
|
|
|
#######################################################################
|
|
|
|
# Minimal scons version
|
|
|
|
|
|
|
|
EnsureSConsVersion(2, 4)
|
2018-08-15 01:24:29 +08:00
|
|
|
EnsurePythonVersion(2, 7)
|
2018-08-01 23:48:11 +08:00
|
|
|
|
|
|
|
|
2008-02-27 16:36:28 +08:00
|
|
|
#######################################################################
|
|
|
|
# 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'],
|
2016-05-25 21:30:06 +08:00
|
|
|
toolpath = ['#scons'],
|
2008-06-06 13:48:57 +08:00
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
2011-07-02 02:04:57 +08:00
|
|
|
# XXX: This creates a many problems as it saves...
|
|
|
|
#opts.Save('config.py', env)
|
2011-06-18 03:11:35 +08:00
|
|
|
|
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(',')
|
2017-09-19 20:56:34 +08:00
|
|
|
print('scons: warning: targets option is deprecated; pass the targets on their own such as')
|
|
|
|
print()
|
|
|
|
print(' scons %s' % ' '.join(targets))
|
|
|
|
print()
|
2010-11-01 21:30:22 +08:00
|
|
|
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
|
|
|
|
2019-10-22 00:29:23 +08:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Print a deprecation warning for using scons on non-windows
|
|
|
|
|
2019-10-26 05:09:34 +08:00
|
|
|
if common.host_platform != 'windows' and env['platform'] != 'windows':
|
|
|
|
if env['force_scons']:
|
2019-10-22 00:29:23 +08:00
|
|
|
print("WARNING: Scons is deprecated for non-windows platforms (including cygwin) "
|
|
|
|
"please use meson instead.", file=sys.stderr)
|
|
|
|
else:
|
|
|
|
print("ERROR: Scons is deprecated for non-windows platforms (including cygwin) "
|
|
|
|
"please use meson instead. If you really need to use scons you "
|
|
|
|
"can add `force_scons=1` to the scons command line.", file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2019-10-22 01:18:50 +08:00
|
|
|
else:
|
|
|
|
print("WARNING: Scons support is in the process of being deprecated on "
|
|
|
|
"on windows platforms (including mingw). If you haven't already "
|
|
|
|
"please try using meson for windows builds. Be sure to report any "
|
|
|
|
"issues you run into", file=sys.stderr)
|
|
|
|
|
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
#######################################################################
|
|
|
|
# Environment setup
|
|
|
|
|
2013-07-26 06:45:45 +08:00
|
|
|
with open("VERSION") as f:
|
|
|
|
mesa_version = f.read().strip()
|
2013-03-13 21:13:08 +08:00
|
|
|
env.Append(CPPDEFINES = [
|
2013-07-26 06:45:45 +08:00
|
|
|
('PACKAGE_VERSION', '\\"%s\\"' % mesa_version),
|
2019-09-19 03:59:41 +08:00
|
|
|
('PACKAGE_BUGREPORT', '\\"https://gitlab.freedesktop.org/mesa/mesa/issues\\"'),
|
2013-03-13 21:13:08 +08:00
|
|
|
])
|
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
# 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
|
|
|
])
|
|
|
|
|
2008-03-12 21:34:30 +08:00
|
|
|
# for debugging
|
|
|
|
#print env.Dump()
|
|
|
|
|
2008-01-31 12:14:35 +08:00
|
|
|
|
2016-04-13 20:31:04 +08:00
|
|
|
# Add a check target for running tests
|
|
|
|
check = env.Alias('check')
|
|
|
|
env.AlwaysBuild(check)
|
|
|
|
|
|
|
|
|
2011-01-14 04:52:01 +08:00
|
|
|
#######################################################################
|
2016-05-25 21:30:06 +08:00
|
|
|
# Invoke host SConscripts
|
|
|
|
#
|
2011-01-14 04:52:01 +08:00
|
|
|
# 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-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
|
|
|
|
2011-06-18 03:11:50 +08:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# List all aliases
|
|
|
|
|
|
|
|
try:
|
|
|
|
from SCons.Node.Alias import default_ans
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
else:
|
2017-09-19 20:56:56 +08:00
|
|
|
aliases = sorted(default_ans.keys())
|
2011-06-18 03:11:50 +08:00
|
|
|
env.Help('\n')
|
|
|
|
env.Help('Recognized targets:\n')
|
|
|
|
for alias in aliases:
|
|
|
|
env.Help(' %s\n' % alias)
|