OSDN Git Service

egl: Use SConscript for Windows build.
[android-x86/external-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 default_targets = 'none'
35
36 if common.default_platform in ('linux', 'freebsd', 'darwin'):
37         default_drivers = 'softpipe,failover,svga,i915,i965,trace,identity,llvmpipe'
38         default_winsys = 'xlib'
39 elif common.default_platform in ('winddk',):
40         default_drivers = 'softpipe,svga,i915,i965,trace,identity'
41         default_winsys = 'all'
42 elif common.default_platform in ('embedded',):
43         default_drivers = 'softpipe,llvmpipe'
44         default_winsys = 'xlib'
45 else:
46         default_drivers = 'all'
47         default_winsys = 'all'
48
49 opts = Variables('config.py')
50 common.AddOptions(opts)
51 opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers,
52                      ['mesa', 'python', 'xorg', 'egl']))
53 opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
54                      ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'r600', 'identity', 'llvmpipe', 'nouveau', 'nv50', 'nvfx']))
55 opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
56                      ['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'r600', 'graw-xlib']))
57
58 opts.Add(ListVariable('targets', 'driver targets to build', default_targets,
59                       ['dri-i915',
60                        'dri-i965',
61                        'dri-nouveau',
62                        'dri-radeong',
63                        'dri-swrast',
64                        'dri-vmwgfx',
65                        'egl-i915',
66                        'egl-i965',
67                        'egl-nouveau',
68                        'egl-radeon',
69                        'egl-swrast',
70                        'egl-vmwgfx',
71                        'graw-xlib',
72                        'libgl-gdi',
73                        'libgl-xlib',
74                        'xorg-i915',
75                        'xorg-i965',
76                        'xorg-nouveau',
77                        'xorg-radeon',
78                        'xorg-vmwgfx']))
79
80 opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))
81
82 env = Environment(
83         options = opts,
84         tools = ['gallium'],
85         toolpath = ['#scons'],  
86         ENV = os.environ,
87 )
88
89 if os.environ.has_key('CC'):
90         env['CC'] = os.environ['CC']
91 if os.environ.has_key('CFLAGS'):
92         env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
93 if os.environ.has_key('CXX'):
94         env['CXX'] = os.environ['CXX']
95 if os.environ.has_key('CXXFLAGS'):
96         env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
97 if os.environ.has_key('LDFLAGS'):
98         env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
99
100 Help(opts.GenerateHelpText(env))
101
102 # replicate options values in local variables
103 debug = env['debug']
104 dri = env['dri']
105 machine = env['machine']
106 platform = env['platform']
107
108 # derived options
109 x86 = machine == 'x86'
110 ppc = machine == 'ppc'
111 gcc = platform in ('linux', 'freebsd', 'darwin', 'embedded')
112 msvc = platform in ('windows', 'winddk')
113
114 Export([
115         'debug', 
116         'x86', 
117         'ppc', 
118         'dri', 
119         'platform',
120         'gcc',
121         'msvc',
122 ])
123
124
125 #######################################################################
126 # Environment setup
127
128 # Always build trace, rbug, identity, softpipe, and llvmpipe (where possible)
129 if 'trace' not in env['drivers']:
130     env['drivers'].append('trace')
131 if 'rbug' not in env['drivers']:
132     env['drivers'].append('rbug')
133 if 'identity' not in env['drivers']:
134     env['drivers'].append('identity')
135 if 'softpipe' not in env['drivers']:
136     env['drivers'].append('softpipe')
137 if env['llvm'] and 'llvmpipe' not in env['drivers']:
138     env['drivers'].append('llvmpipe')
139
140 # Includes
141 env.Prepend(CPPPATH = [
142         '#/include',
143 ])
144 env.Append(CPPPATH = [
145         '#/src/gallium/include',
146         '#/src/gallium/auxiliary',
147         '#/src/gallium/drivers',
148         '#/src/gallium/winsys',
149 ])
150
151 if env['msvc']:
152     env.Append(CPPPATH = ['#include/c99'])
153
154 # Embedded
155 if platform == 'embedded':
156         env.Append(CPPDEFINES = [
157                 '_POSIX_SOURCE',
158                 ('_POSIX_C_SOURCE', '199309L'), 
159                 '_SVID_SOURCE',
160                 '_BSD_SOURCE', 
161                 '_GNU_SOURCE',
162                 
163                 'PTHREADS',
164         ])
165         env.Append(LIBS = [
166                 'm',
167                 'pthread',
168                 'dl',
169         ])
170
171 # Posix
172 if platform in ('posix', 'linux', 'freebsd', 'darwin'):
173         env.Append(CPPDEFINES = [
174                 '_POSIX_SOURCE',
175                 ('_POSIX_C_SOURCE', '199309L'), 
176                 '_SVID_SOURCE',
177                 '_BSD_SOURCE', 
178                 '_GNU_SOURCE',
179                 'PTHREADS',
180                 'HAVE_POSIX_MEMALIGN',
181         ])
182         if gcc:
183                 env.Append(CFLAGS = ['-fvisibility=hidden'])
184         if platform == 'darwin':
185                 env.Append(CPPDEFINES = ['_DARWIN_C_SOURCE'])
186         env.Append(LIBS = [
187                 'm',
188                 'pthread',
189                 'dl',
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