3 Frontend-tool for Gallium3D architecture.
8 # Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
19 # The above copyright notice and this permission notice (including the
20 # next paragraph) shall be included in all copies or substantial portions
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.
44 def quietCommandLines(env
):
46 # See also http://www.scons.org/wiki/HidingCommandLinesInOutput
47 env
['ASCOMSTR'] = " Assembling $SOURCE ..."
48 env
['ASPPCOMSTR'] = " Assembling $SOURCE ..."
49 env
['CCCOMSTR'] = " Compiling $SOURCE ..."
50 env
['SHCCCOMSTR'] = " Compiling $SOURCE ..."
51 env
['CXXCOMSTR'] = " Compiling $SOURCE ..."
52 env
['SHCXXCOMSTR'] = " Compiling $SOURCE ..."
53 env
['ARCOMSTR'] = " Archiving $TARGET ..."
54 env
['RANLIBCOMSTR'] = " Indexing $TARGET ..."
55 env
['LINKCOMSTR'] = " Linking $TARGET ..."
56 env
['SHLINKCOMSTR'] = " Linking $TARGET ..."
57 env
['LDMODULECOMSTR'] = " Linking $TARGET ..."
58 env
['SWIGCOMSTR'] = " Generating $TARGET ..."
61 def createConvenienceLibBuilder(env
):
62 """This is a utility function that creates the ConvenienceLibrary
63 Builder in an Environment if it is not there already.
65 If it is already there, we return the existing one.
67 Based on the stock StaticLibrary and SharedLibrary builders.
71 convenience_lib
= env
['BUILDERS']['ConvenienceLibrary']
73 action_list
= [ SCons
.Action
.Action("$ARCOM", "$ARCOMSTR") ]
74 if env
.Detect('ranlib'):
75 ranlib_action
= SCons
.Action
.Action("$RANLIBCOM", "$RANLIBCOMSTR")
76 action_list
.append(ranlib_action
)
78 convenience_lib
= SCons
.Builder
.Builder(action
= action_list
,
79 emitter
= '$LIBEMITTER',
80 prefix
= '$LIBPREFIX',
81 suffix
= '$LIBSUFFIX',
82 src_suffix
= '$SHOBJSUFFIX',
83 src_builder
= 'SharedObject')
84 env
['BUILDERS']['ConvenienceLibrary'] = convenience_lib
86 return convenience_lib
89 # TODO: handle import statements with multiple modules
90 # TODO: handle from import statements
91 import_re
= re
.compile(r
'^import\s+(\S+)$', re
.M
)
93 def python_scan(node
, env
, path
):
94 # http://www.scons.org/doc/0.98.5/HTML/scons-user/c2781.html#AEN2789
95 contents
= node
.get_contents()
96 source_dir
= node
.get_dir()
97 imports
= import_re
.findall(contents
)
101 file = os
.path
.join(str(dir), imp
.replace('.', os
.sep
) + '.py')
102 if os
.path
.exists(file):
103 results
.append(env
.File(file))
105 file = os
.path
.join(str(dir), imp
.replace('.', os
.sep
), '__init__.py')
106 if os
.path
.exists(file):
107 results
.append(env
.File(file))
111 python_scanner
= SCons
.Scanner
.Scanner(function
= python_scan
, skeys
= ['.py'])
114 def code_generate(env
, script
, target
, source
, command
):
115 """Method to simplify code generation via python scripts.
117 http://www.scons.org/wiki/UsingCodeGenerators
118 http://www.scons.org/doc/0.98.5/HTML/scons-user/c2768.html
121 # We're generating code using Python scripts, so we have to be
122 # careful with our scons elements. This entry represents
123 # the generator file *in the source directory*.
124 script_src
= env
.File(script
).srcnode()
126 # This command creates generated code *in the build directory*.
127 command
= command
.replace('$SCRIPT', script_src
.path
)
128 code
= env
.Command(target
, source
, command
)
130 # Explicitly mark that the generated code depends on the generator,
131 # and on implicitly imported python modules
132 path
= (script_src
.get_dir(),)
134 deps
+= script_src
.get_implicit_deps(env
, python_scanner
, path
)
135 env
.Depends(code
, deps
)
137 # Running the Python script causes .pyc files to be generated in the
138 # source directory. When we clean up, they should go too. So add side
139 # effects for .pyc files
141 pyc
= env
.File(str(dep
) + 'c')
142 env
.SideEffect(pyc
, code
)
147 def createCodeGenerateMethod(env
):
148 env
.Append(SCANNERS
= python_scanner
)
149 env
.AddMethod(code_generate
, 'CodeGenerate')
152 def symlink(target
, source
, env
):
153 target
= str(target
[0])
154 source
= str(source
[0])
155 if os
.path
.islink(target
) or os
.path
.exists(target
):
157 os
.symlink(os
.path
.basename(source
), target
)
159 def install_shared_library(env
, source
, version
= ()):
160 source
= str(source
[0])
161 version
= tuple(map(str, version
))
162 target_dir
= os
.path
.join(env
.Dir('#.').srcnode().abspath
, env
['build'], 'lib')
163 target_name
= '.'.join((str(source
),) + version
)
164 last
= env
.InstallAs(os
.path
.join(target_dir
, target_name
), source
)
166 version
= version
[:-1]
167 target_name
= '.'.join((str(source
),) + version
)
168 action
= SCons
.Action
.Action(symlink
, "$TARGET -> $SOURCE")
169 last
= env
.Command(os
.path
.join(target_dir
, target_name
), last
, action
)
171 def createInstallMethods(env
):
172 env
.AddMethod(install_shared_library
, 'InstallSharedLibrary')
177 return int(os
.environ
['NUMBER_OF_PROCESSORS'])
178 except (ValueError, KeyError):
182 return os
.sysconf('SC_NPROCESSORS_ONLN')
183 except (ValueError, OSError, AttributeError):
187 return int(os
.popen2("sysctl -n hw.ncpu")[1].read())
195 """Common environment generation code"""
197 if env
.get('quiet', True):
198 quietCommandLines(env
)
201 platform
= env
['platform']
202 if env
['toolchain'] == 'default':
203 if platform
== 'winddk':
204 env
['toolchain'] = 'winddk'
205 elif platform
== 'wince':
206 env
['toolchain'] = 'wcesdk'
207 env
.Tool(env
['toolchain'])
209 env
['gcc'] = 'gcc' in os
.path
.basename(env
['CC']).split('-')
210 env
['msvc'] = env
['CC'] == 'cl'
214 machine
= env
['machine']
215 platform
= env
['platform']
216 x86
= env
['machine'] == 'x86'
217 ppc
= env
['machine'] == 'ppc'
221 # Put build output in a separate dir, which depends on the current
222 # configuration. See also http://www.scons.org/wiki/AdvancedBuildExample
223 build_topdir
= 'build'
224 build_subdir
= env
['platform']
226 build_subdir
+= "-llvm"
227 if env
['machine'] != 'generic':
228 build_subdir
+= '-' + env
['machine']
230 build_subdir
+= "-debug"
232 build_subdir
+= "-profile"
233 build_dir
= os
.path
.join(build_topdir
, build_subdir
)
234 # Place the .sconsign file in the build dir too, to avoid issues with
235 # different scons versions building the same source file
236 env
['build'] = build_dir
237 env
.SConsignFile(os
.path
.join(build_dir
, '.sconsign'))
238 env
.CacheDir('build/cache')
241 if env
.GetOption('num_jobs') <= 1:
242 env
.SetOption('num_jobs', num_jobs())
244 # C preprocessor options
247 cppdefines
+= ['DEBUG']
249 cppdefines
+= ['NDEBUG']
251 cppdefines
+= ['PROFILE']
252 if platform
== 'windows':
258 ('_WIN32_WINNT', '0x0501'), # minimum required OS version
259 ('WINVER', '0x0501'),
260 # http://msdn2.microsoft.com/en-us/library/6dwk3a1z.aspx,
261 'WIN32_LEAN_AND_MEAN',
263 if msvc
and env
['toolchain'] != 'winddk':
266 '_CRT_SECURE_NO_DEPRECATE',
269 cppdefines
+= ['_DEBUG']
270 if env
['toolchain'] == 'winddk':
271 # Mimic WINDDK's builtin flags. See also:
272 # - WINDDK's bin/makefile.new i386mk.inc for more info.
273 # - buildchk_wxp_x86.log files, generated by the WINDDK's build
274 # - http://alter.org.ua/docs/nt_kernel/vc8_proj/
276 cppdefines
+= ['_X86_', 'i386']
277 if machine
== 'x86_64':
278 cppdefines
+= ['_AMD64_', 'AMD64']
279 if platform
== 'winddk':
282 ('CONDITION_HANDLING', '1'),
287 ('_WIN32_WINNT', '0x0501'), # minimum required OS version
288 ('WINVER', '0x0501'),
289 ('_WIN32_IE', '0x0603'),
290 ('WIN32_LEAN_AND_MEAN', '1'),
292 ('__BUILDMACHINE__', 'WinDDK'),
296 cppdefines
+= [('DBG', 1)]
297 if platform
== 'wince':
299 '_CRT_SECURE_NO_DEPRECATE',
304 ('_WIN32_WCE', '0x600'),
312 ('INTLMSG_CODEPAGE', '1252'),
314 if platform
== 'windows':
315 cppdefines
+= ['PIPE_SUBSYSTEM_WINDOWS_USER']
316 if platform
== 'winddk':
317 cppdefines
+= ['PIPE_SUBSYSTEM_WINDOWS_DISPLAY']
318 if platform
== 'wince':
319 cppdefines
+= ['PIPE_SUBSYSTEM_WINDOWS_CE']
320 cppdefines
+= ['PIPE_SUBSYSTEM_WINDOWS_CE_OGL']
321 env
.Append(CPPDEFINES
= cppdefines
)
326 ccflags
= [] # C & C++
329 ccflags
+= ['-O0', '-g3']
330 elif env
['CCVERSION'].startswith('4.2.'):
331 # gcc 4.2.x optimizer is broken
332 print "warning: gcc 4.2.x optimizer is broken -- disabling optimizations"
333 ccflags
+= ['-O0', '-g3']
335 ccflags
+= ['-O3', '-g3']
337 # See http://code.google.com/p/jrfonseca/wiki/Gprof2Dot#Which_options_should_I_pass_to_gcc_when_compiling_for_profiling?
339 '-fno-omit-frame-pointer',
340 '-fno-optimize-sibling-calls',
342 if env
['machine'] == 'x86':
346 '-mmmx', '-msse', '-msse2', # enable SIMD intrinsics
347 '-mstackrealign', # ensure stack is aligned -- do not enabled -msse without it!
350 if env
['machine'] == 'x86_64':
353 # - http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
356 '-Wmissing-field-initializers',
360 '-fmessage-length=0', # be nice to Eclipse
363 '-Werror=declaration-after-statement',
364 '-Wmissing-prototypes',
369 # - http://msdn.microsoft.com/en-us/library/19z1t1wy.aspx
373 '/Od', # disable optimizations
374 '/Oi', # enable intrinsic functions
375 '/Oy-', # disable frame pointer omission
376 '/GL-', # disable whole program optimization
380 '/O2', # optimize for speed
381 #'/fp:fast', # fast floating point
385 '/Gh', # enable _penter hook function
386 '/GH', # enable _pexit hook function
389 '/W3', # warning level
390 #'/Wp64', # enable 64 bit porting warnings
392 if env
['machine'] == 'x86':
394 #'/QIfist', # Suppress _ftol
395 #'/arch:SSE2', # use the SSE2 instructions
397 if platform
== 'windows':
401 if platform
== 'winddk':
403 '/Zl', # omit default library name in .OBJ
404 '/Zp8', # 8bytes struct member alignment
405 '/Gy', # separate functions for linker
406 '/Gm-', # disable minimal rebuild
407 '/WX', # treat warnings as errors
408 '/Gz', # __stdcall Calling convention
409 '/GX-', # disable C++ EH
410 '/GR-', # disable C++ RTTI
411 '/GF', # enable read-only string pooling
412 '/G6', # optimize for PPro, P-II, P-III
413 '/Ze', # enable extensions
414 '/Gi-', # disable incremental compilation
415 '/QIfdiv-', # disable Pentium FDIV fix
416 '/hotpatch', # prepares an image for hotpatching.
417 #'/Z7', #enable old-style debug info
419 if platform
== 'wince':
420 # See also C:\WINCE600\public\common\oak\misc\makefile.def
422 '/Zl', # omit default library name in .OBJ
423 '/GF', # enable read-only string pooling
424 '/GR-', # disable C++ RTTI
425 '/GS', # enable security checks
426 # Allow disabling language conformance to maintain backward compat
427 #'/Zc:wchar_t-', # don't force wchar_t as native type, instead of typedef
428 #'/Zc:forScope-', # don't enforce Standard C++ for scoping rules
434 # Automatic pdb generation
435 # See http://scons.tigris.org/issues/show_bug.cgi?id=1656
436 env
.EnsureSConsVersion(0, 98, 0)
437 env
['PDB'] = '${TARGET.base}.pdb'
438 env
.Append(CCFLAGS
= ccflags
)
439 env
.Append(CFLAGS
= cflags
)
440 env
.Append(CXXFLAGS
= cxxflags
)
442 if env
['platform'] == 'windows' and msvc
:
443 # Choose the appropriate MSVC CRT
444 # http://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx
446 env
.Append(CCFLAGS
= ['/MTd'])
447 env
.Append(SHCCFLAGS
= ['/LDd'])
449 env
.Append(CCFLAGS
= ['/MT'])
450 env
.Append(SHCCFLAGS
= ['/LD'])
454 if env
['machine'] == 'x86':
455 env
.Append(ASFLAGS
= ['-m32'])
456 if env
['machine'] == 'x86_64':
457 env
.Append(ASFLAGS
= ['-m64'])
463 if env
['machine'] == 'x86':
464 linkflags
+= ['-m32']
465 if env
['machine'] == 'x86_64':
466 linkflags
+= ['-m64']
470 # Handle circular dependencies in the libraries
471 env
['_LIBFLAGS'] = '-Wl,--start-group ' + env
['_LIBFLAGS'] + ' -Wl,--end-group'
472 if platform
== 'windows' and msvc
:
474 # - http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx
479 if platform
== 'winddk':
482 '/merge:_TEXT=.text',
486 '/ignore:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221',
499 '/stack:0x40000,0x1000',
502 '/subsystem:native,5.01',
505 '/entry:DrvEnableDriver',
507 if env
['debug'] or env
['profile']:
509 '/MAP', # http://msdn.microsoft.com/en-us/library/k7xkk3e2.aspx
511 if platform
== 'wince':
516 '/entry:_DllMainCRTStartup',
518 env
.Append(LINKFLAGS
= linkflags
)
519 env
.Append(SHLINKFLAGS
= shlinkflags
)
522 env
.Append(LIBS
= [])
524 # Custom builders and methods
525 createConvenienceLibBuilder(env
)
526 createCodeGenerateMethod(env
)
527 createInstallMethods(env
)