2008-01-31 13:14:35 +09:00
|
|
|
#######################################################################
|
|
|
|
# Top-level SConstruct
|
|
|
|
#
|
|
|
|
# For example, invoke scons as
|
|
|
|
#
|
2008-02-06 14:36:50 +09:00
|
|
|
# scons debug=1 dri=0 machine=x86
|
2008-01-31 13:14:35 +09: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 14:36:50 +09:00
|
|
|
# machine='x86'
|
2008-01-31 13:14:35 +09:00
|
|
|
#
|
|
|
|
# Invoke
|
|
|
|
#
|
|
|
|
# scons -h
|
|
|
|
#
|
|
|
|
# to get the full list of options. See scons manpage for more info.
|
|
|
|
#
|
|
|
|
|
2008-02-27 17:36:28 +09:00
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import common
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Configuration options
|
2008-02-23 19:49:08 +09:00
|
|
|
|
2008-07-13 23:36:59 +09:00
|
|
|
default_statetrackers = 'mesa'
|
|
|
|
|
2008-02-27 17:36:28 +09: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 19:49:08 +09:00
|
|
|
default_winsys = 'xlib'
|
2008-02-27 17:36:28 +09: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-03 00:04:19 +09:00
|
|
|
default_winsys = 'all'
|
2008-02-23 00:46:40 +09:00
|
|
|
else:
|
2008-02-23 19:49:08 +09:00
|
|
|
default_drivers = 'all'
|
|
|
|
default_winsys = 'all'
|
2008-02-24 16:43:07 +09:00
|
|
|
|
2009-05-01 16:12:17 +01:00
|
|
|
opts = Variables('config.py')
|
2008-03-03 18:52:37 +01:00
|
|
|
common.AddOptions(opts)
|
2009-05-01 16:12:17 +01:00
|
|
|
opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers,
|
2009-08-25 15:39:05 +02:00
|
|
|
['mesa', 'python', 'xorg']))
|
2009-05-01 16:12:17 +01:00
|
|
|
opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
|
2009-12-21 19:18:41 +00:00
|
|
|
['softpipe', 'failover', 'svga', 'i915', 'i965', 'cell', 'trace', 'r300', 'identity', 'llvmpipe']))
|
2009-05-01 16:12:17 +01:00
|
|
|
opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
|
2009-12-21 19:18:41 +00:00
|
|
|
['xlib', 'vmware', 'intel', 'i965', 'gdi', 'radeon']))
|
2008-01-31 13:14:35 +09:00
|
|
|
|
2009-05-01 16:12:17 +01:00
|
|
|
opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))
|
2008-08-29 11:30:32 -06:00
|
|
|
|
2008-02-06 14:36:50 +09:00
|
|
|
env = Environment(
|
2008-06-06 14:48:57 +09:00
|
|
|
options = opts,
|
|
|
|
tools = ['gallium'],
|
2008-07-15 07:56:42 +09:00
|
|
|
toolpath = ['#scons'],
|
2008-06-06 14:48:57 +09:00
|
|
|
ENV = os.environ,
|
|
|
|
)
|
|
|
|
|
2008-01-31 13:14:35 +09:00
|
|
|
Help(opts.GenerateHelpText(env))
|
|
|
|
|
|
|
|
# replicate options values in local variables
|
|
|
|
debug = env['debug']
|
|
|
|
dri = env['dri']
|
2008-02-19 10:50:39 +09:00
|
|
|
llvm = env['llvm']
|
2008-01-31 13:14:35 +09:00
|
|
|
machine = env['machine']
|
2008-02-19 18:53:16 +09:00
|
|
|
platform = env['platform']
|
2008-01-31 13:14:35 +09:00
|
|
|
|
|
|
|
# derived options
|
|
|
|
x86 = machine == 'x86'
|
2008-10-23 10:28:48 +02:00
|
|
|
ppc = machine == 'ppc'
|
2008-02-19 18:53:16 +09:00
|
|
|
gcc = platform in ('linux', 'freebsd', 'darwin')
|
2008-04-25 18:16:25 +09:00
|
|
|
msvc = platform in ('windows', 'winddk')
|
2008-01-31 13:14:35 +09:00
|
|
|
|
|
|
|
Export([
|
|
|
|
'debug',
|
|
|
|
'x86',
|
2008-10-23 10:28:48 +02:00
|
|
|
'ppc',
|
2008-01-31 13:14:35 +09:00
|
|
|
'dri',
|
2008-02-19 10:50:39 +09:00
|
|
|
'llvm',
|
2008-01-31 13:14:35 +09:00
|
|
|
'platform',
|
|
|
|
'gcc',
|
|
|
|
'msvc',
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Environment setup
|
|
|
|
|
|
|
|
# Includes
|
|
|
|
env.Append(CPPPATH = [
|
|
|
|
'#/include',
|
2008-02-18 10:52:44 +00:00
|
|
|
'#/src/gallium/include',
|
|
|
|
'#/src/gallium/auxiliary',
|
|
|
|
'#/src/gallium/drivers',
|
2008-01-31 13:14:35 +09:00
|
|
|
])
|
|
|
|
|
|
|
|
|
2008-02-07 19:59:17 +09:00
|
|
|
# Posix
|
|
|
|
if platform in ('posix', 'linux', 'freebsd', 'darwin'):
|
|
|
|
env.Append(CPPDEFINES = [
|
|
|
|
'_POSIX_SOURCE',
|
|
|
|
('_POSIX_C_SOURCE', '199309L'),
|
|
|
|
'_SVID_SOURCE',
|
|
|
|
'_BSD_SOURCE',
|
|
|
|
'_GNU_SOURCE',
|
|
|
|
|
|
|
|
'PTHREADS',
|
|
|
|
'HAVE_POSIX_MEMALIGN',
|
|
|
|
])
|
|
|
|
env.Append(CPPPATH = ['/usr/X11R6/include'])
|
|
|
|
env.Append(LIBPATH = ['/usr/X11R6/lib'])
|
|
|
|
env.Append(LIBS = [
|
|
|
|
'm',
|
|
|
|
'pthread',
|
|
|
|
'expat',
|
|
|
|
'dl',
|
|
|
|
])
|
|
|
|
|
2008-01-31 13:14:35 +09:00
|
|
|
|
|
|
|
# DRI
|
|
|
|
if dri:
|
|
|
|
env.ParseConfig('pkg-config --cflags --libs libdrm')
|
|
|
|
env.Append(CPPDEFINES = [
|
|
|
|
('USE_EXTERNAL_DXTN_LIB', '1'),
|
|
|
|
'IN_DRI_DRIVER',
|
|
|
|
'GLX_DIRECT_RENDERING',
|
|
|
|
'GLX_INDIRECT_RENDERING',
|
|
|
|
])
|
|
|
|
|
2008-02-19 10:50:39 +09:00
|
|
|
# LLVM
|
|
|
|
if llvm:
|
|
|
|
# See also http://www.scons.org/wiki/UsingPkgConfig
|
2009-03-09 17:46:49 +01:00
|
|
|
env.ParseConfig('llvm-config --cflags --ldflags --libs backend bitreader engine instrumentation interpreter ipo')
|
2008-02-19 10:50:39 +09:00
|
|
|
env.Append(CPPDEFINES = ['MESA_LLVM'])
|
2008-03-04 18:28:23 +01:00
|
|
|
# Force C++ linkage
|
2008-03-04 12:40:18 +01:00
|
|
|
env['LINK'] = env['CXX']
|
2008-02-19 10:50:39 +09:00
|
|
|
|
2008-01-31 13:14:35 +09:00
|
|
|
# libGL
|
2008-04-25 19:53:13 +09:00
|
|
|
if platform in ('linux', 'freebsd', 'darwin'):
|
2008-01-31 13:14:35 +09:00
|
|
|
env.Append(LIBS = [
|
|
|
|
'X11',
|
|
|
|
'Xext',
|
|
|
|
'Xxf86vm',
|
|
|
|
'Xdamage',
|
|
|
|
'Xfixes',
|
|
|
|
])
|
|
|
|
|
2008-03-12 13:34:30 +00:00
|
|
|
# for debugging
|
|
|
|
#print env.Dump()
|
|
|
|
|
2008-02-27 17:36:28 +09:00
|
|
|
Export('env')
|
2008-01-31 13:14:35 +09:00
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Invoke SConscripts
|
|
|
|
|
2008-01-31 14:21:49 +09:00
|
|
|
# TODO: Build several variants at the same time?
|
|
|
|
# http://www.scons.org/wiki/SimultaneousVariantBuilds
|
2008-01-31 13:14:35 +09: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 13:14:35 +09: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 13:14:35 +09:00
|
|
|
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
|
|
|
)
|
2009-12-31 21:10:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
)
|