scons: Always build trace driver
[mesa.git] / SConstruct
1 #######################################################################
2 # Top-level SConstruct
3 #
4 # For example, invoke scons as
5 #
6 # scons debug=1 dri=0 machine=x86
7 #
8 # to set configuration variables. Or you can write those options to a file
9 # named config.py:
10 #
11 # # config.py
12 # debug=1
13 # dri=0
14 # machine='x86'
15 #
16 # Invoke
17 #
18 # scons -h
19 #
20 # to get the full list of options. See scons manpage for more info.
21 #
22
23 import os
24 import os.path
25 import sys
26 import SCons.Util
27
28 import common
29
30 #######################################################################
31 # Configuration options
32
33 default_statetrackers = 'mesa'
34
35 if common.default_platform in ('linux', 'freebsd', 'darwin'):
36 default_drivers = 'softpipe,failover,svga,i915,i965,trace,identity,llvmpipe'
37 default_winsys = 'xlib'
38 elif common.default_platform in ('winddk',):
39 default_drivers = 'softpipe,svga,i915,i965,trace,identity'
40 default_winsys = 'all'
41 elif common.default_platform in ('embedded',):
42 default_drivers = 'softpipe,llvmpipe'
43 default_winsys = 'xlib'
44 else:
45 default_drivers = 'all'
46 default_winsys = 'all'
47
48 opts = Variables('config.py')
49 common.AddOptions(opts)
50 opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers,
51 ['mesa', 'python', 'xorg']))
52 opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
53 ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe']))
54 opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
55 ['xlib', 'vmware', 'intel', 'i965', 'gdi', 'radeon']))
56
57 opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))
58
59 env = Environment(
60 options = opts,
61 tools = ['gallium'],
62 toolpath = ['#scons'],
63 ENV = os.environ,
64 )
65
66 if os.environ.has_key('CC'):
67 env['CC'] = os.environ['CC']
68 if os.environ.has_key('CFLAGS'):
69 env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
70 if os.environ.has_key('CXX'):
71 env['CXX'] = os.environ['CXX']
72 if os.environ.has_key('CXXFLAGS'):
73 env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
74 if os.environ.has_key('LDFLAGS'):
75 env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
76
77 Help(opts.GenerateHelpText(env))
78
79 # replicate options values in local variables
80 debug = env['debug']
81 dri = env['dri']
82 machine = env['machine']
83 platform = env['platform']
84 drawllvm = 'llvmpipe' in env['drivers']
85
86 # LLVM support in the Draw module
87 if drawllvm:
88 env.Tool('llvm')
89 if not env.has_key('LLVM_VERSION'):
90 drawllvm = False
91
92 # derived options
93 x86 = machine == 'x86'
94 ppc = machine == 'ppc'
95 gcc = platform in ('linux', 'freebsd', 'darwin', 'embedded')
96 msvc = platform in ('windows', 'winddk')
97
98 Export([
99 'debug',
100 'x86',
101 'ppc',
102 'dri',
103 'drawllvm',
104 'platform',
105 'gcc',
106 'msvc',
107 ])
108
109
110 #######################################################################
111 # Environment setup
112
113 # Always build trace driver
114 if 'trace' not in env['drivers']:
115 env['drivers'].append('trace')
116
117 # Includes
118 env.Append(CPPPATH = [
119 '#/include',
120 '#/src/gallium/include',
121 '#/src/gallium/auxiliary',
122 '#/src/gallium/drivers',
123 ])
124
125 if env['msvc']:
126 env.Append(CPPPATH = ['#include/c99'])
127
128 # Embedded
129 if platform == 'embedded':
130 env.Append(CPPDEFINES = [
131 '_POSIX_SOURCE',
132 ('_POSIX_C_SOURCE', '199309L'),
133 '_SVID_SOURCE',
134 '_BSD_SOURCE',
135 '_GNU_SOURCE',
136
137 'PTHREADS',
138 ])
139 env.Append(LIBS = [
140 'm',
141 'pthread',
142 'dl',
143 ])
144
145 # Posix
146 if platform in ('posix', 'linux', 'freebsd', 'darwin'):
147 env.Append(CPPDEFINES = [
148 '_POSIX_SOURCE',
149 ('_POSIX_C_SOURCE', '199309L'),
150 '_SVID_SOURCE',
151 '_BSD_SOURCE',
152 '_GNU_SOURCE',
153
154 'PTHREADS',
155 'HAVE_POSIX_MEMALIGN',
156 ])
157 if platform == 'darwin':
158 env.Append(CPPDEFINES = ['_DARWIN_C_SOURCE'])
159 env.Append(CPPPATH = ['/usr/X11R6/include'])
160 env.Append(LIBPATH = ['/usr/X11R6/lib'])
161 env.Append(LIBS = [
162 'm',
163 'pthread',
164 'expat',
165 'dl',
166 ])
167
168 # DRI
169 if dri:
170 env.ParseConfig('pkg-config --cflags --libs libdrm')
171 env.Append(CPPDEFINES = [
172 ('USE_EXTERNAL_DXTN_LIB', '1'),
173 'IN_DRI_DRIVER',
174 'GLX_DIRECT_RENDERING',
175 'GLX_INDIRECT_RENDERING',
176 ])
177
178 # LLVM support in the Draw module
179 if drawllvm:
180 env.Append(CPPDEFINES = ['DRAW_LLVM'])
181
182 # libGL
183 if platform in ('linux', 'freebsd', 'darwin'):
184 env.Append(LIBS = [
185 'X11',
186 'Xext',
187 'Xxf86vm',
188 'Xdamage',
189 'Xfixes',
190 ])
191
192 # for debugging
193 #print env.Dump()
194
195 Export('env')
196
197
198 #######################################################################
199 # Invoke SConscripts
200
201 # TODO: Build several variants at the same time?
202 # http://www.scons.org/wiki/SimultaneousVariantBuilds
203
204 if env['platform'] != common.default_platform:
205 # GLSL code has to be built twice -- one for the host OS, another for the target OS...
206
207 host_env = Environment(
208 # options are ignored
209 # default tool is used
210 tools = ['default', 'custom'],
211 toolpath = ['#scons'],
212 ENV = os.environ,
213 )
214
215 host_env['platform'] = common.default_platform
216 host_env['machine'] = common.default_machine
217 host_env['debug'] = env['debug']
218
219 SConscript(
220 'src/glsl/SConscript',
221 variant_dir = os.path.join(env['build'], 'host'),
222 duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
223 exports={'env':host_env},
224 )
225
226 SConscript(
227 'src/SConscript',
228 variant_dir = env['build'],
229 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
230 )
231
232 env.Default('src')
233
234 SConscript(
235 'progs/SConscript',
236 variant_dir = os.path.join('progs', env['build']),
237 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
238 )