scons: fix typo in package version
[mesa.git] / scons / gallium.py
1 """gallium
2
3 Frontend-tool for Gallium3D architecture.
4
5 """
6
7 #
8 # Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
9 # All Rights Reserved.
10 #
11 # Permission is hereby granted, free of charge, to any person obtaining a
12 # copy of this software and associated documentation files (the
13 # "Software"), to deal in the Software without restriction, including
14 # without limitation the rights to use, copy, modify, merge, publish,
15 # distribute, sub license, and/or sell copies of the Software, and to
16 # permit persons to whom the Software is furnished to do so, subject to
17 # the following conditions:
18 #
19 # The above copyright notice and this permission notice (including the
20 # next paragraph) shall be included in all copies or substantial portions
21 # of the Software.
22 #
23 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
26 # IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
27 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
28 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
29 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 #
31
32
33 import distutils.version
34 import os
35 import os.path
36 import re
37 import subprocess
38 import platform as _platform
39
40 import SCons.Action
41 import SCons.Builder
42 import SCons.Scanner
43
44
45 def symlink(target, source, env):
46 target = str(target[0])
47 source = str(source[0])
48 if os.path.islink(target) or os.path.exists(target):
49 os.remove(target)
50 os.symlink(os.path.basename(source), target)
51
52 def install(env, source, subdir):
53 target_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir'], subdir)
54 return env.Install(target_dir, source)
55
56 def install_program(env, source):
57 return install(env, source, 'bin')
58
59 def install_shared_library(env, sources, version = ()):
60 targets = []
61 install_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir'])
62 version = tuple(map(str, version))
63 if env['SHLIBSUFFIX'] == '.dll':
64 dlls = env.FindIxes(sources, 'SHLIBPREFIX', 'SHLIBSUFFIX')
65 targets += install(env, dlls, 'bin')
66 libs = env.FindIxes(sources, 'LIBPREFIX', 'LIBSUFFIX')
67 targets += install(env, libs, 'lib')
68 else:
69 for source in sources:
70 target_dir = os.path.join(install_dir, 'lib')
71 target_name = '.'.join((str(source),) + version)
72 last = env.InstallAs(os.path.join(target_dir, target_name), source)
73 targets += last
74 while len(version):
75 version = version[:-1]
76 target_name = '.'.join((str(source),) + version)
77 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...")
78 last = env.Command(os.path.join(target_dir, target_name), last, action)
79 targets += last
80 return targets
81
82
83 def createInstallMethods(env):
84 env.AddMethod(install_program, 'InstallProgram')
85 env.AddMethod(install_shared_library, 'InstallSharedLibrary')
86
87
88 def num_jobs():
89 try:
90 return int(os.environ['NUMBER_OF_PROCESSORS'])
91 except (ValueError, KeyError):
92 pass
93
94 try:
95 return os.sysconf('SC_NPROCESSORS_ONLN')
96 except (ValueError, OSError, AttributeError):
97 pass
98
99 try:
100 return int(os.popen2("sysctl -n hw.ncpu")[1].read())
101 except ValueError:
102 pass
103
104 return 1
105
106
107 def generate(env):
108 """Common environment generation code"""
109
110 # Tell tools which machine to compile for
111 env['TARGET_ARCH'] = env['machine']
112 env['MSVS_ARCH'] = env['machine']
113
114 # Toolchain
115 platform = env['platform']
116 env.Tool(env['toolchain'])
117
118 # Allow override compiler and specify additional flags from environment
119 if os.environ.has_key('CC'):
120 env['CC'] = os.environ['CC']
121 # Update CCVERSION to match
122 pipe = SCons.Action._subproc(env, [env['CC'], '--version'],
123 stdin = 'devnull',
124 stderr = 'devnull',
125 stdout = subprocess.PIPE)
126 if pipe.wait() == 0:
127 line = pipe.stdout.readline()
128 match = re.search(r'[0-9]+(\.[0-9]+)+', line)
129 if match:
130 env['CCVERSION'] = match.group(0)
131 if os.environ.has_key('CFLAGS'):
132 env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
133 if os.environ.has_key('CXX'):
134 env['CXX'] = os.environ['CXX']
135 if os.environ.has_key('CXXFLAGS'):
136 env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
137 if os.environ.has_key('LDFLAGS'):
138 env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
139
140 env['gcc'] = 'gcc' in os.path.basename(env['CC']).split('-')
141 env['msvc'] = env['CC'] == 'cl'
142
143 if env['msvc'] and env['toolchain'] == 'default' and env['machine'] == 'x86_64':
144 # MSVC x64 support is broken in earlier versions of scons
145 env.EnsurePythonVersion(2, 0)
146
147 # shortcuts
148 machine = env['machine']
149 platform = env['platform']
150 x86 = env['machine'] == 'x86'
151 ppc = env['machine'] == 'ppc'
152 gcc = env['gcc']
153 msvc = env['msvc']
154
155 # Determine whether we are cross compiling; in particular, whether we need
156 # to compile code generators with a different compiler as the target code.
157 host_platform = _platform.system().lower()
158 if host_platform.startswith('cygwin'):
159 host_platform = 'cygwin'
160 host_machine = os.environ.get('PROCESSOR_ARCHITEW6432', os.environ.get('PROCESSOR_ARCHITECTURE', _platform.machine()))
161 host_machine = {
162 'x86': 'x86',
163 'i386': 'x86',
164 'i486': 'x86',
165 'i586': 'x86',
166 'i686': 'x86',
167 'ppc' : 'ppc',
168 'AMD64': 'x86_64',
169 'x86_64': 'x86_64',
170 }.get(host_machine, 'generic')
171 env['crosscompile'] = platform != host_platform
172 if machine == 'x86_64' and host_machine != 'x86_64':
173 env['crosscompile'] = True
174 env['hostonly'] = False
175
176 # Backwards compatability with the debug= profile= options
177 if env['build'] == 'debug':
178 if not env['debug']:
179 print 'scons: warning: debug option is deprecated and will be removed eventually; use instead'
180 print
181 print ' scons build=release'
182 print
183 env['build'] = 'release'
184 if env['profile']:
185 print 'scons: warning: profile option is deprecated and will be removed eventually; use instead'
186 print
187 print ' scons build=profile'
188 print
189 env['build'] = 'profile'
190 if False:
191 # Enforce SConscripts to use the new build variable
192 env.popitem('debug')
193 env.popitem('profile')
194 else:
195 # Backwards portability with older sconscripts
196 if env['build'] in ('debug', 'checked'):
197 env['debug'] = True
198 env['profile'] = False
199 if env['build'] == 'profile':
200 env['debug'] = False
201 env['profile'] = True
202 if env['build'] == 'release':
203 env['debug'] = False
204 env['profile'] = False
205
206 # Put build output in a separate dir, which depends on the current
207 # configuration. See also http://www.scons.org/wiki/AdvancedBuildExample
208 build_topdir = 'build'
209 build_subdir = env['platform']
210 if env['embedded']:
211 build_subdir = 'embedded-' + build_subdir
212 if env['machine'] != 'generic':
213 build_subdir += '-' + env['machine']
214 if env['build'] != 'release':
215 build_subdir += '-' + env['build']
216 build_dir = os.path.join(build_topdir, build_subdir)
217 # Place the .sconsign file in the build dir too, to avoid issues with
218 # different scons versions building the same source file
219 env['build_dir'] = build_dir
220 env.SConsignFile(os.path.join(build_dir, '.sconsign'))
221 if 'SCONS_CACHE_DIR' in os.environ:
222 print 'scons: Using build cache in %s.' % (os.environ['SCONS_CACHE_DIR'],)
223 env.CacheDir(os.environ['SCONS_CACHE_DIR'])
224 env['CONFIGUREDIR'] = os.path.join(build_dir, 'conf')
225 env['CONFIGURELOG'] = os.path.join(os.path.abspath(build_dir), 'config.log')
226
227 # Parallel build
228 if env.GetOption('num_jobs') <= 1:
229 env.SetOption('num_jobs', num_jobs())
230
231 env.Decider('MD5-timestamp')
232 env.SetOption('max_drift', 60)
233
234 # C preprocessor options
235 cppdefines = []
236 if env['build'] in ('debug', 'checked'):
237 cppdefines += ['DEBUG']
238 else:
239 cppdefines += ['NDEBUG']
240 if env['build'] == 'profile':
241 cppdefines += ['PROFILE']
242 if env['platform'] in ('posix', 'linux', 'freebsd', 'darwin'):
243 cppdefines += [
244 '_POSIX_SOURCE',
245 ('_POSIX_C_SOURCE', '199309L'),
246 '_SVID_SOURCE',
247 '_BSD_SOURCE',
248 '_GNU_SOURCE',
249 'PTHREADS',
250 'HAVE_POSIX_MEMALIGN',
251 ]
252 if env['platform'] == 'darwin':
253 cppdefines += [
254 '_DARWIN_C_SOURCE',
255 'GLX_USE_APPLEGL',
256 'GLX_DIRECT_RENDERING',
257 ]
258 else:
259 cppdefines += [
260 'GLX_DIRECT_RENDERING',
261 'GLX_INDIRECT_RENDERING',
262 ]
263 if env['platform'] in ('linux', 'freebsd'):
264 cppdefines += ['HAVE_ALIAS']
265 else:
266 cppdefines += ['GLX_ALIAS_UNSUPPORTED']
267 if platform == 'windows':
268 cppdefines += [
269 'WIN32',
270 '_WINDOWS',
271 #'_UNICODE',
272 #'UNICODE',
273 # http://msdn.microsoft.com/en-us/library/aa383745.aspx
274 ('_WIN32_WINNT', '0x0601'),
275 ('WINVER', '0x0601'),
276 ]
277 if gcc:
278 cppdefines += [('__MSVCRT_VERSION__', '0x0700')]
279 if msvc:
280 cppdefines += [
281 'VC_EXTRALEAN',
282 '_USE_MATH_DEFINES',
283 '_CRT_SECURE_NO_WARNINGS',
284 '_CRT_SECURE_NO_DEPRECATE',
285 '_SCL_SECURE_NO_WARNINGS',
286 '_SCL_SECURE_NO_DEPRECATE',
287 ]
288 if env['build'] in ('debug', 'checked'):
289 cppdefines += ['_DEBUG']
290 if platform == 'windows':
291 cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_USER']
292 if platform == 'haiku':
293 cppdefines += ['BEOS_THREADS']
294 if env['embedded']:
295 cppdefines += ['PIPE_SUBSYSTEM_EMBEDDED']
296 env.Append(CPPDEFINES = cppdefines)
297
298 # C compiler options
299 cflags = [] # C
300 cxxflags = [] # C++
301 ccflags = [] # C & C++
302 if gcc:
303 ccversion = env['CCVERSION']
304 if env['build'] == 'debug':
305 ccflags += ['-O0']
306 elif ccversion.startswith('4.2.'):
307 # gcc 4.2.x optimizer is broken
308 print "warning: gcc 4.2.x optimizer is broken -- disabling optimizations"
309 ccflags += ['-O0']
310 else:
311 ccflags += ['-O3']
312 # gcc's builtin memcmp is slower than glibc's
313 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
314 ccflags += ['-fno-builtin-memcmp']
315 # Work around aliasing bugs - developers should comment this out
316 ccflags += ['-fno-strict-aliasing']
317 ccflags += ['-g']
318 if env['build'] in ('checked', 'profile'):
319 # See http://code.google.com/p/jrfonseca/wiki/Gprof2Dot#Which_options_should_I_pass_to_gcc_when_compiling_for_profiling?
320 ccflags += [
321 '-fno-omit-frame-pointer',
322 '-fno-optimize-sibling-calls',
323 ]
324 if env['machine'] == 'x86':
325 ccflags += [
326 '-m32',
327 #'-march=pentium4',
328 ]
329 if distutils.version.LooseVersion(ccversion) >= distutils.version.LooseVersion('4.2') \
330 and (platform != 'windows' or env['build'] == 'debug' or True):
331 # NOTE: We need to ensure stack is realigned given that we
332 # produce shared objects, and have no control over the stack
333 # alignment policy of the application. Therefore we need
334 # -mstackrealign ore -mincoming-stack-boundary=2.
335 #
336 # XXX: -O and -mstackrealign causes stack corruption on MinGW
337 #
338 # XXX: We could have SSE without -mstackrealign if we always used
339 # __attribute__((force_align_arg_pointer)), but that's not
340 # always the case.
341 ccflags += [
342 '-mstackrealign', # ensure stack is aligned
343 '-mmmx', '-msse', '-msse2', # enable SIMD intrinsics
344 #'-mfpmath=sse',
345 ]
346 if platform in ['windows', 'darwin']:
347 # Workaround http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216
348 ccflags += ['-fno-common']
349 if env['machine'] == 'x86_64':
350 ccflags += ['-m64']
351 if platform == 'darwin':
352 ccflags += ['-fno-common']
353 if env['platform'] not in ('windows', 'haiku'):
354 ccflags += ['-fvisibility=hidden']
355 # See also:
356 # - http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
357 ccflags += [
358 '-Wall',
359 '-Wno-long-long',
360 '-ffast-math',
361 '-fmessage-length=0', # be nice to Eclipse
362 ]
363 cflags += [
364 '-Wmissing-prototypes',
365 '-std=gnu99',
366 ]
367 if distutils.version.LooseVersion(ccversion) >= distutils.version.LooseVersion('4.2'):
368 ccflags += [
369 '-Wpointer-arith',
370 ]
371 cflags += [
372 '-Wdeclaration-after-statement',
373 ]
374 if msvc:
375 # See also:
376 # - http://msdn.microsoft.com/en-us/library/19z1t1wy.aspx
377 # - cl /?
378 if env['build'] == 'debug':
379 ccflags += [
380 '/Od', # disable optimizations
381 '/Oi', # enable intrinsic functions
382 '/Oy-', # disable frame pointer omission
383 ]
384 else:
385 ccflags += [
386 '/O2', # optimize for speed
387 ]
388 if env['build'] == 'release':
389 ccflags += [
390 '/GL', # enable whole program optimization
391 ]
392 else:
393 ccflags += [
394 '/GL-', # disable whole program optimization
395 ]
396 ccflags += [
397 '/fp:fast', # fast floating point
398 '/W3', # warning level
399 #'/Wp64', # enable 64 bit porting warnings
400 '/wd4996', # disable deprecated POSIX name warnings
401 ]
402 if env['machine'] == 'x86':
403 ccflags += [
404 #'/arch:SSE2', # use the SSE2 instructions
405 ]
406 if platform == 'windows':
407 ccflags += [
408 # TODO
409 ]
410 # Automatic pdb generation
411 # See http://scons.tigris.org/issues/show_bug.cgi?id=1656
412 env.EnsureSConsVersion(0, 98, 0)
413 env['PDB'] = '${TARGET.base}.pdb'
414 env.Append(CCFLAGS = ccflags)
415 env.Append(CFLAGS = cflags)
416 env.Append(CXXFLAGS = cxxflags)
417
418 if env['platform'] == 'windows' and msvc:
419 # Choose the appropriate MSVC CRT
420 # http://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx
421 if env['build'] in ('debug', 'checked'):
422 env.Append(CCFLAGS = ['/MTd'])
423 env.Append(SHCCFLAGS = ['/LDd'])
424 else:
425 env.Append(CCFLAGS = ['/MT'])
426 env.Append(SHCCFLAGS = ['/LD'])
427
428 # Assembler options
429 if gcc:
430 if env['machine'] == 'x86':
431 env.Append(ASFLAGS = ['-m32'])
432 if env['machine'] == 'x86_64':
433 env.Append(ASFLAGS = ['-m64'])
434
435 # Linker options
436 linkflags = []
437 shlinkflags = []
438 if gcc:
439 if env['machine'] == 'x86':
440 linkflags += ['-m32']
441 if env['machine'] == 'x86_64':
442 linkflags += ['-m64']
443 if env['platform'] not in ('darwin'):
444 shlinkflags += [
445 '-Wl,-Bsymbolic',
446 ]
447 # Handle circular dependencies in the libraries
448 if env['platform'] in ('darwin'):
449 pass
450 else:
451 env['_LIBFLAGS'] = '-Wl,--start-group ' + env['_LIBFLAGS'] + ' -Wl,--end-group'
452 if env['platform'] == 'windows':
453 # Avoid depending on gcc runtime DLLs
454 linkflags += ['-static-libgcc']
455 if 'w64' in env['CC'].split('-'):
456 linkflags += ['-static-libstdc++']
457 # Handle the @xx symbol munging of DLL exports
458 shlinkflags += ['-Wl,--enable-stdcall-fixup']
459 #shlinkflags += ['-Wl,--kill-at']
460 if msvc:
461 if env['build'] == 'release':
462 # enable Link-time Code Generation
463 linkflags += ['/LTCG']
464 env.Append(ARFLAGS = ['/LTCG'])
465 if platform == 'windows' and msvc:
466 # See also:
467 # - http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx
468 linkflags += [
469 '/fixed:no',
470 '/incremental:no',
471 ]
472 env.Append(LINKFLAGS = linkflags)
473 env.Append(SHLINKFLAGS = shlinkflags)
474
475 # We have C++ in several libraries, so always link with the C++ compiler
476 if env['gcc']:
477 env['LINK'] = env['CXX']
478
479 # Default libs
480 libs = []
481 if env['platform'] in ('posix', 'linux', 'freebsd', 'darwin'):
482 libs += ['m', 'pthread', 'dl']
483 env.Append(LIBS = libs)
484
485 # OpenMP
486 if env['openmp']:
487 if env['msvc']:
488 env.Append(CCFLAGS = ['/openmp'])
489 # When building openmp release VS2008 link.exe crashes with LNK1103 error.
490 # Workaround: overwrite PDB flags with empty value as it isn't required anyways
491 if env['build'] == 'release':
492 env['PDB'] = ''
493 if env['gcc']:
494 env.Append(CCFLAGS = ['-fopenmp'])
495 env.Append(LIBS = ['gomp'])
496
497 # Load tools
498 env.Tool('lex')
499 env.Tool('yacc')
500 if env['llvm']:
501 env.Tool('llvm')
502
503 # Custom builders and methods
504 env.Tool('custom')
505 createInstallMethods(env)
506
507 env.PkgCheckModules('X11', ['x11', 'xext', 'xdamage', 'xfixes'])
508 env.PkgCheckModules('XCB', ['x11-xcb', 'xcb-glx'])
509 env.PkgCheckModules('XF86VIDMODE', ['xxf86vm'])
510 env.PkgCheckModules('DRM', ['libdrm >= 2.4.24'])
511 env.PkgCheckModules('DRM_INTEL', ['libdrm_intel >= 2.4.30'])
512 env.PkgCheckModules('DRM_RADEON', ['libdrm_radeon >= 2.4.31'])
513 env.PkgCheckModules('XORG', ['xorg-server >= 1.6.0'])
514 env.PkgCheckModules('KMS', ['libkms >= 2.4.24'])
515 env.PkgCheckModules('UDEV', ['libudev > 150'])
516
517 env['dri'] = env['x11'] and env['drm']
518
519 # for debugging
520 #print env.Dump()
521
522
523 def exists(env):
524 return 1