eb633c0fca6c25964e7c4e5760f71c72b542b055
[gem5.git] / SConstruct
1 # -*- mode:python -*-
2
3 # Copyright (c) 2011 Advanced Micro Devices, Inc.
4 # Copyright (c) 2009 The Hewlett-Packard Development Company
5 # Copyright (c) 2004-2005 The Regents of The University of Michigan
6 # All rights reserved.
7 #
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions are
10 # met: redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer;
12 # redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution;
15 # neither the name of the copyright holders nor the names of its
16 # contributors may be used to endorse or promote products derived from
17 # this software without specific prior written permission.
18 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #
31 # Authors: Steve Reinhardt
32 # Nathan Binkert
33
34 ###################################################
35 #
36 # SCons top-level build description (SConstruct) file.
37 #
38 # While in this directory ('m5'), just type 'scons' to build the default
39 # configuration (see below), or type 'scons build/<CONFIG>/<binary>'
40 # to build some other configuration (e.g., 'build/ALPHA_FS/m5.opt' for
41 # the optimized full-system version).
42 #
43 # You can build M5 in a different directory as long as there is a
44 # 'build/<CONFIG>' somewhere along the target path. The build system
45 # expects that all configs under the same build directory are being
46 # built for the same host system.
47 #
48 # Examples:
49 #
50 # The following two commands are equivalent. The '-u' option tells
51 # scons to search up the directory tree for this SConstruct file.
52 # % cd <path-to-src>/m5 ; scons build/ALPHA_FS/m5.debug
53 # % cd <path-to-src>/m5/build/ALPHA_FS; scons -u m5.debug
54 #
55 # The following two commands are equivalent and demonstrate building
56 # in a directory outside of the source tree. The '-C' option tells
57 # scons to chdir to the specified directory to find this SConstruct
58 # file.
59 # % cd <path-to-src>/m5 ; scons /local/foo/build/ALPHA_FS/m5.debug
60 # % cd /local/foo/build/ALPHA_FS; scons -C <path-to-src>/m5 m5.debug
61 #
62 # You can use 'scons -H' to print scons options. If you're in this
63 # 'm5' directory (or use -u or -C to tell scons where to find this
64 # file), you can use 'scons -h' to print all the M5-specific build
65 # options as well.
66 #
67 ###################################################
68
69 # Check for recent-enough Python and SCons versions.
70 try:
71 # Really old versions of scons only take two options for the
72 # function, so check once without the revision and once with the
73 # revision, the first instance will fail for stuff other than
74 # 0.98, and the second will fail for 0.98.0
75 EnsureSConsVersion(0, 98)
76 EnsureSConsVersion(0, 98, 1)
77 except SystemExit, e:
78 print """
79 For more details, see:
80 http://m5sim.org/wiki/index.php/Compiling_M5
81 """
82 raise
83
84 # We ensure the python version early because we have stuff that
85 # requires python 2.4
86 try:
87 EnsurePythonVersion(2, 4)
88 except SystemExit, e:
89 print """
90 You can use a non-default installation of the Python interpreter by
91 either (1) rearranging your PATH so that scons finds the non-default
92 'python' first or (2) explicitly invoking an alternative interpreter
93 on the scons script.
94
95 For more details, see:
96 http://m5sim.org/wiki/index.php/Using_a_non-default_Python_installation
97 """
98 raise
99
100 # Global Python includes
101 import os
102 import re
103 import subprocess
104 import sys
105
106 from os import mkdir, environ
107 from os.path import abspath, basename, dirname, expanduser, normpath
108 from os.path import exists, isdir, isfile
109 from os.path import join as joinpath, split as splitpath
110
111 # SCons includes
112 import SCons
113 import SCons.Node
114
115 extra_python_paths = [
116 Dir('src/python').srcnode().abspath, # M5 includes
117 Dir('ext/ply').srcnode().abspath, # ply is used by several files
118 ]
119
120 sys.path[1:1] = extra_python_paths
121
122 from m5.util import compareVersions, readCommand
123
124 help_texts = {
125 "options" : "",
126 "global_vars" : "",
127 "local_vars" : ""
128 }
129
130 Export("help_texts")
131
132 def AddM5Option(*args, **kwargs):
133 col_width = 30
134
135 help = " " + ", ".join(args)
136 if "help" in kwargs:
137 length = len(help)
138 if length >= col_width:
139 help += "\n" + " " * col_width
140 else:
141 help += " " * (col_width - length)
142 help += kwargs["help"]
143 help_texts["options"] += help + "\n"
144
145 AddOption(*args, **kwargs)
146
147 AddM5Option('--colors', dest='use_colors', action='store_true',
148 help="Add color to abbreviated scons output")
149 AddM5Option('--no-colors', dest='use_colors', action='store_false',
150 help="Don't add color to abbreviated scons output")
151 AddM5Option('--default', dest='default', type='string', action='store',
152 help='Override which build_opts file to use for defaults')
153 AddM5Option('--ignore-style', dest='ignore_style', action='store_true',
154 help='Disable style checking hooks')
155 AddM5Option('--update-ref', dest='update_ref', action='store_true',
156 help='Update test reference outputs')
157 AddM5Option('--verbose', dest='verbose', action='store_true',
158 help='Print full tool command lines')
159
160 use_colors = GetOption('use_colors')
161 if use_colors:
162 from m5.util.terminal import termcap
163 elif use_colors is None:
164 # option unspecified; default behavior is to use colors iff isatty
165 from m5.util.terminal import tty_termcap as termcap
166 else:
167 from m5.util.terminal import no_termcap as termcap
168
169 ########################################################################
170 #
171 # Set up the main build environment.
172 #
173 ########################################################################
174 use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 'PATH',
175 'PYTHONPATH', 'RANLIB' ])
176
177 use_env = {}
178 for key,val in os.environ.iteritems():
179 if key in use_vars or key.startswith("M5"):
180 use_env[key] = val
181
182 main = Environment(ENV=use_env)
183 main.root = Dir(".") # The current directory (where this file lives).
184 main.srcdir = Dir("src") # The source directory
185
186 # add useful python code PYTHONPATH so it can be used by subprocesses
187 # as well
188 main.AppendENVPath('PYTHONPATH', extra_python_paths)
189
190 ########################################################################
191 #
192 # Mercurial Stuff.
193 #
194 # If the M5 directory is a mercurial repository, we should do some
195 # extra things.
196 #
197 ########################################################################
198
199 hgdir = main.root.Dir(".hg")
200
201 mercurial_style_message = """
202 You're missing the gem5 style hook, which automatically checks your code
203 against the gem5 style rules on hg commit and qrefresh commands. This
204 script will now install the hook in your .hg/hgrc file.
205 Press enter to continue, or ctrl-c to abort: """
206
207 mercurial_style_hook = """
208 # The following lines were automatically added by gem5/SConstruct
209 # to provide the gem5 style-checking hooks
210 [extensions]
211 style = %s/util/style.py
212
213 [hooks]
214 pretxncommit.style = python:style.check_style
215 pre-qrefresh.style = python:style.check_style
216 # End of SConstruct additions
217
218 """ % (main.root.abspath)
219
220 mercurial_lib_not_found = """
221 Mercurial libraries cannot be found, ignoring style hook. If
222 you are a gem5 developer, please fix this and run the style
223 hook. It is important.
224 """
225
226 # Check for style hook and prompt for installation if it's not there.
227 # Skip this if --ignore-style was specified, there's no .hg dir to
228 # install a hook in, or there's no interactive terminal to prompt.
229 if not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
230 style_hook = True
231 try:
232 from mercurial import ui
233 ui = ui.ui()
234 ui.readconfig(hgdir.File('hgrc').abspath)
235 style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
236 ui.config('hooks', 'pre-qrefresh.style', None)
237 except ImportError:
238 print mercurial_lib_not_found
239
240 if not style_hook:
241 print mercurial_style_message,
242 # continue unless user does ctrl-c/ctrl-d etc.
243 try:
244 raw_input()
245 except:
246 print "Input exception, exiting scons.\n"
247 sys.exit(1)
248 hgrc_path = '%s/.hg/hgrc' % main.root.abspath
249 print "Adding style hook to", hgrc_path, "\n"
250 try:
251 hgrc = open(hgrc_path, 'a')
252 hgrc.write(mercurial_style_hook)
253 hgrc.close()
254 except:
255 print "Error updating", hgrc_path
256 sys.exit(1)
257
258
259 ###################################################
260 #
261 # Figure out which configurations to set up based on the path(s) of
262 # the target(s).
263 #
264 ###################################################
265
266 # Find default configuration & binary.
267 Default(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA_SE/m5.debug'))
268
269 # helper function: find last occurrence of element in list
270 def rfind(l, elt, offs = -1):
271 for i in range(len(l)+offs, 0, -1):
272 if l[i] == elt:
273 return i
274 raise ValueError, "element not found"
275
276 # Take a list of paths (or SCons Nodes) and return a list with all
277 # paths made absolute and ~-expanded. Paths will be interpreted
278 # relative to the launch directory unless a different root is provided
279 def makePathListAbsolute(path_list, root=GetLaunchDir()):
280 return [abspath(joinpath(root, expanduser(str(p))))
281 for p in path_list]
282
283 # Each target must have 'build' in the interior of the path; the
284 # directory below this will determine the build parameters. For
285 # example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
286 # recognize that ALPHA_SE specifies the configuration because it
287 # follow 'build' in the build path.
288
289 # The funky assignment to "[:]" is needed to replace the list contents
290 # in place rather than reassign the symbol to a new list, which
291 # doesn't work (obviously!).
292 BUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
293
294 # Generate a list of the unique build roots and configs that the
295 # collected targets reference.
296 variant_paths = []
297 build_root = None
298 for t in BUILD_TARGETS:
299 path_dirs = t.split('/')
300 try:
301 build_top = rfind(path_dirs, 'build', -2)
302 except:
303 print "Error: no non-leaf 'build' dir found on target path", t
304 Exit(1)
305 this_build_root = joinpath('/',*path_dirs[:build_top+1])
306 if not build_root:
307 build_root = this_build_root
308 else:
309 if this_build_root != build_root:
310 print "Error: build targets not under same build root\n"\
311 " %s\n %s" % (build_root, this_build_root)
312 Exit(1)
313 variant_path = joinpath('/',*path_dirs[:build_top+2])
314 if variant_path not in variant_paths:
315 variant_paths.append(variant_path)
316
317 # Make sure build_root exists (might not if this is the first build there)
318 if not isdir(build_root):
319 mkdir(build_root)
320 main['BUILDROOT'] = build_root
321
322 Export('main')
323
324 main.SConsignFile(joinpath(build_root, "sconsign"))
325
326 # Default duplicate option is to use hard links, but this messes up
327 # when you use emacs to edit a file in the target dir, as emacs moves
328 # file to file~ then copies to file, breaking the link. Symbolic
329 # (soft) links work better.
330 main.SetOption('duplicate', 'soft-copy')
331
332 #
333 # Set up global sticky variables... these are common to an entire build
334 # tree (not specific to a particular build like ALPHA_SE)
335 #
336
337 global_vars_file = joinpath(build_root, 'variables.global')
338
339 global_vars = Variables(global_vars_file, args=ARGUMENTS)
340
341 global_vars.AddVariables(
342 ('CC', 'C compiler', environ.get('CC', main['CC'])),
343 ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
344 ('BATCH', 'Use batch pool for build and tests', False),
345 ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
346 ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
347 ('EXTRAS', 'Add extra directories to the compilation', '')
348 )
349
350 # Update main environment with values from ARGUMENTS & global_vars_file
351 global_vars.Update(main)
352 help_texts["global_vars"] += global_vars.GenerateHelpText(main)
353
354 # Save sticky variable settings back to current variables file
355 global_vars.Save(global_vars_file, main)
356
357 # Parse EXTRAS variable to build list of all directories where we're
358 # look for sources etc. This list is exported as extras_dir_list.
359 base_dir = main.srcdir.abspath
360 if main['EXTRAS']:
361 extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
362 else:
363 extras_dir_list = []
364
365 Export('base_dir')
366 Export('extras_dir_list')
367
368 # the ext directory should be on the #includes path
369 main.Append(CPPPATH=[Dir('ext')])
370
371 def strip_build_path(path, env):
372 path = str(path)
373 variant_base = env['BUILDROOT'] + os.path.sep
374 if path.startswith(variant_base):
375 path = path[len(variant_base):]
376 elif path.startswith('build/'):
377 path = path[6:]
378 return path
379
380 # Generate a string of the form:
381 # common/path/prefix/src1, src2 -> tgt1, tgt2
382 # to print while building.
383 class Transform(object):
384 # all specific color settings should be here and nowhere else
385 tool_color = termcap.Normal
386 pfx_color = termcap.Yellow
387 srcs_color = termcap.Yellow + termcap.Bold
388 arrow_color = termcap.Blue + termcap.Bold
389 tgts_color = termcap.Yellow + termcap.Bold
390
391 def __init__(self, tool, max_sources=99):
392 self.format = self.tool_color + (" [%8s] " % tool) \
393 + self.pfx_color + "%s" \
394 + self.srcs_color + "%s" \
395 + self.arrow_color + " -> " \
396 + self.tgts_color + "%s" \
397 + termcap.Normal
398 self.max_sources = max_sources
399
400 def __call__(self, target, source, env, for_signature=None):
401 # truncate source list according to max_sources param
402 source = source[0:self.max_sources]
403 def strip(f):
404 return strip_build_path(str(f), env)
405 if len(source) > 0:
406 srcs = map(strip, source)
407 else:
408 srcs = ['']
409 tgts = map(strip, target)
410 # surprisingly, os.path.commonprefix is a dumb char-by-char string
411 # operation that has nothing to do with paths.
412 com_pfx = os.path.commonprefix(srcs + tgts)
413 com_pfx_len = len(com_pfx)
414 if com_pfx:
415 # do some cleanup and sanity checking on common prefix
416 if com_pfx[-1] == ".":
417 # prefix matches all but file extension: ok
418 # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
419 com_pfx = com_pfx[0:-1]
420 elif com_pfx[-1] == "/":
421 # common prefix is directory path: OK
422 pass
423 else:
424 src0_len = len(srcs[0])
425 tgt0_len = len(tgts[0])
426 if src0_len == com_pfx_len:
427 # source is a substring of target, OK
428 pass
429 elif tgt0_len == com_pfx_len:
430 # target is a substring of source, need to back up to
431 # avoid empty string on RHS of arrow
432 sep_idx = com_pfx.rfind(".")
433 if sep_idx != -1:
434 com_pfx = com_pfx[0:sep_idx]
435 else:
436 com_pfx = ''
437 elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
438 # still splitting at file extension: ok
439 pass
440 else:
441 # probably a fluke; ignore it
442 com_pfx = ''
443 # recalculate length in case com_pfx was modified
444 com_pfx_len = len(com_pfx)
445 def fmt(files):
446 f = map(lambda s: s[com_pfx_len:], files)
447 return ', '.join(f)
448 return self.format % (com_pfx, fmt(srcs), fmt(tgts))
449
450 Export('Transform')
451
452
453 if GetOption('verbose'):
454 def MakeAction(action, string, *args, **kwargs):
455 return Action(action, *args, **kwargs)
456 else:
457 MakeAction = Action
458 main['CCCOMSTR'] = Transform("CC")
459 main['CXXCOMSTR'] = Transform("CXX")
460 main['ASCOMSTR'] = Transform("AS")
461 main['SWIGCOMSTR'] = Transform("SWIG")
462 main['ARCOMSTR'] = Transform("AR", 0)
463 main['LINKCOMSTR'] = Transform("LINK", 0)
464 main['RANLIBCOMSTR'] = Transform("RANLIB", 0)
465 main['M4COMSTR'] = Transform("M4")
466 main['SHCCCOMSTR'] = Transform("SHCC")
467 main['SHCXXCOMSTR'] = Transform("SHCXX")
468 Export('MakeAction')
469
470 CXX_version = readCommand([main['CXX'],'--version'], exception=False)
471 CXX_V = readCommand([main['CXX'],'-V'], exception=False)
472
473 main['GCC'] = CXX_version and CXX_version.find('g++') >= 0
474 main['SUNCC'] = CXX_V and CXX_V.find('Sun C++') >= 0
475 main['ICC'] = CXX_V and CXX_V.find('Intel') >= 0
476 main['CLANG'] = CXX_V and CXX_V.find('clang') >= 0
477 if main['GCC'] + main['SUNCC'] + main['ICC'] + main['CLANG'] > 1:
478 print 'Error: How can we have two at the same time?'
479 Exit(1)
480
481 # Set up default C++ compiler flags
482 if main['GCC']:
483 main.Append(CCFLAGS=['-pipe'])
484 main.Append(CCFLAGS=['-fno-strict-aliasing'])
485 main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
486 main.Append(CXXFLAGS=['-Wno-deprecated'])
487 # Read the GCC version to check for versions with bugs
488 # Note CCVERSION doesn't work here because it is run with the CC
489 # before we override it from the command line
490 gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
491 main['GCC_VERSION'] = gcc_version
492 if not compareVersions(gcc_version, '4.4.1') or \
493 not compareVersions(gcc_version, '4.4.2'):
494 print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.'
495 main.Append(CCFLAGS=['-fno-tree-vectorize'])
496 elif main['ICC']:
497 pass #Fix me... add warning flags once we clean up icc warnings
498 elif main['SUNCC']:
499 main.Append(CCFLAGS=['-Qoption ccfe'])
500 main.Append(CCFLAGS=['-features=gcc'])
501 main.Append(CCFLAGS=['-features=extensions'])
502 main.Append(CCFLAGS=['-library=stlport4'])
503 main.Append(CCFLAGS=['-xar'])
504 #main.Append(CCFLAGS=['-instances=semiexplicit'])
505 elif main['CLANG']:
506 clang_version_re = re.compile(".* version (\d+\.\d+)")
507 clang_version_match = clang_version_re.match(CXX_version)
508 if (clang_version_match):
509 clang_version = clang_version_match.groups()[0]
510 if compareVersions(clang_version, "2.9") < 0:
511 print 'Error: clang version 2.9 or newer required.'
512 print ' Installed version:', clang_version
513 Exit(1)
514 else:
515 print 'Error: Unable to determine clang version.'
516 Exit(1)
517
518 main.Append(CCFLAGS=['-pipe'])
519 main.Append(CCFLAGS=['-fno-strict-aliasing'])
520 main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
521 main.Append(CCFLAGS=['-Wno-tautological-compare'])
522 main.Append(CCFLAGS=['-Wno-self-assign'])
523 else:
524 print 'Error: Don\'t know what compiler options to use for your compiler.'
525 print ' Please fix SConstruct and src/SConscript and try again.'
526 Exit(1)
527
528 # Set up common yacc/bison flags (needed for Ruby)
529 main['YACCFLAGS'] = '-d'
530 main['YACCHXXFILESUFFIX'] = '.hh'
531
532 # Do this after we save setting back, or else we'll tack on an
533 # extra 'qdo' every time we run scons.
534 if main['BATCH']:
535 main['CC'] = main['BATCH_CMD'] + ' ' + main['CC']
536 main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX']
537 main['AS'] = main['BATCH_CMD'] + ' ' + main['AS']
538 main['AR'] = main['BATCH_CMD'] + ' ' + main['AR']
539 main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
540
541 if sys.platform == 'cygwin':
542 # cygwin has some header file issues...
543 main.Append(CCFLAGS=["-Wno-uninitialized"])
544
545 # Check for SWIG
546 if not main.has_key('SWIG'):
547 print 'Error: SWIG utility not found.'
548 print ' Please install (see http://www.swig.org) and retry.'
549 Exit(1)
550
551 # Check for appropriate SWIG version
552 swig_version = readCommand(('swig', '-version'), exception='').split()
553 # First 3 words should be "SWIG Version x.y.z"
554 if len(swig_version) < 3 or \
555 swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
556 print 'Error determining SWIG version.'
557 Exit(1)
558
559 min_swig_version = '1.3.28'
560 if compareVersions(swig_version[2], min_swig_version) < 0:
561 print 'Error: SWIG version', min_swig_version, 'or newer required.'
562 print ' Installed version:', swig_version[2]
563 Exit(1)
564
565 # Set up SWIG flags & scanner
566 swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
567 main.Append(SWIGFLAGS=swig_flags)
568
569 # filter out all existing swig scanners, they mess up the dependency
570 # stuff for some reason
571 scanners = []
572 for scanner in main['SCANNERS']:
573 skeys = scanner.skeys
574 if skeys == '.i':
575 continue
576
577 if isinstance(skeys, (list, tuple)) and '.i' in skeys:
578 continue
579
580 scanners.append(scanner)
581
582 # add the new swig scanner that we like better
583 from SCons.Scanner import ClassicCPP as CPPScanner
584 swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
585 scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
586
587 # replace the scanners list that has what we want
588 main['SCANNERS'] = scanners
589
590 # Add a custom Check function to the Configure context so that we can
591 # figure out if the compiler adds leading underscores to global
592 # variables. This is needed for the autogenerated asm files that we
593 # use for embedding the python code.
594 def CheckLeading(context):
595 context.Message("Checking for leading underscore in global variables...")
596 # 1) Define a global variable called x from asm so the C compiler
597 # won't change the symbol at all.
598 # 2) Declare that variable.
599 # 3) Use the variable
600 #
601 # If the compiler prepends an underscore, this will successfully
602 # link because the external symbol 'x' will be called '_x' which
603 # was defined by the asm statement. If the compiler does not
604 # prepend an underscore, this will not successfully link because
605 # '_x' will have been defined by assembly, while the C portion of
606 # the code will be trying to use 'x'
607 ret = context.TryLink('''
608 asm(".globl _x; _x: .byte 0");
609 extern int x;
610 int main() { return x; }
611 ''', extension=".c")
612 context.env.Append(LEADING_UNDERSCORE=ret)
613 context.Result(ret)
614 return ret
615
616 # Platform-specific configuration. Note again that we assume that all
617 # builds under a given build root run on the same host platform.
618 conf = Configure(main,
619 conf_dir = joinpath(build_root, '.scons_config'),
620 log_file = joinpath(build_root, 'scons_config.log'),
621 custom_tests = { 'CheckLeading' : CheckLeading })
622
623 # Check for leading underscores. Don't really need to worry either
624 # way so don't need to check the return code.
625 conf.CheckLeading()
626
627 # Check if we should compile a 64 bit binary on Mac OS X/Darwin
628 try:
629 import platform
630 uname = platform.uname()
631 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
632 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
633 main.Append(CCFLAGS=['-arch', 'x86_64'])
634 main.Append(CFLAGS=['-arch', 'x86_64'])
635 main.Append(LINKFLAGS=['-arch', 'x86_64'])
636 main.Append(ASFLAGS=['-arch', 'x86_64'])
637 except:
638 pass
639
640 # Recent versions of scons substitute a "Null" object for Configure()
641 # when configuration isn't necessary, e.g., if the "--help" option is
642 # present. Unfortuantely this Null object always returns false,
643 # breaking all our configuration checks. We replace it with our own
644 # more optimistic null object that returns True instead.
645 if not conf:
646 def NullCheck(*args, **kwargs):
647 return True
648
649 class NullConf:
650 def __init__(self, env):
651 self.env = env
652 def Finish(self):
653 return self.env
654 def __getattr__(self, mname):
655 return NullCheck
656
657 conf = NullConf(main)
658
659 # Find Python include and library directories for embedding the
660 # interpreter. For consistency, we will use the same Python
661 # installation used to run scons (and thus this script). If you want
662 # to link in an alternate version, see above for instructions on how
663 # to invoke scons with a different copy of the Python interpreter.
664 from distutils import sysconfig
665
666 py_getvar = sysconfig.get_config_var
667
668 py_debug = getattr(sys, 'pydebug', False)
669 py_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "")
670
671 py_general_include = sysconfig.get_python_inc()
672 py_platform_include = sysconfig.get_python_inc(plat_specific=True)
673 py_includes = [ py_general_include ]
674 if py_platform_include != py_general_include:
675 py_includes.append(py_platform_include)
676
677 py_lib_path = [ py_getvar('LIBDIR') ]
678 # add the prefix/lib/pythonX.Y/config dir, but only if there is no
679 # shared library in prefix/lib/.
680 if not py_getvar('Py_ENABLE_SHARED'):
681 py_lib_path.append(py_getvar('LIBPL'))
682
683 py_libs = []
684 for lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split():
685 if not lib.startswith('-l'):
686 # Python requires some special flags to link (e.g. -framework
687 # common on OS X systems), assume appending preserves order
688 main.Append(LINKFLAGS=[lib])
689 else:
690 lib = lib[2:]
691 if lib not in py_libs:
692 py_libs.append(lib)
693 py_libs.append(py_version)
694
695 main.Append(CPPPATH=py_includes)
696 main.Append(LIBPATH=py_lib_path)
697
698 # Cache build files in the supplied directory.
699 if main['M5_BUILD_CACHE']:
700 print 'Using build cache located at', main['M5_BUILD_CACHE']
701 CacheDir(main['M5_BUILD_CACHE'])
702
703
704 # verify that this stuff works
705 if not conf.CheckHeader('Python.h', '<>'):
706 print "Error: can't find Python.h header in", py_includes
707 Exit(1)
708
709 for lib in py_libs:
710 if not conf.CheckLib(lib):
711 print "Error: can't find library %s required by python" % lib
712 Exit(1)
713
714 # On Solaris you need to use libsocket for socket ops
715 if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
716 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
717 print "Can't find library with socket calls (e.g. accept())"
718 Exit(1)
719
720 # Check for zlib. If the check passes, libz will be automatically
721 # added to the LIBS environment variable.
722 if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
723 print 'Error: did not find needed zlib compression library '\
724 'and/or zlib.h header file.'
725 print ' Please install zlib and try again.'
726 Exit(1)
727
728 # Check for librt.
729 have_posix_clock = \
730 conf.CheckLibWithHeader(None, 'time.h', 'C',
731 'clock_nanosleep(0,0,NULL,NULL);') or \
732 conf.CheckLibWithHeader('rt', 'time.h', 'C',
733 'clock_nanosleep(0,0,NULL,NULL);')
734
735 if not have_posix_clock:
736 print "Can't find library for POSIX clocks."
737
738 # Check for <fenv.h> (C99 FP environment control)
739 have_fenv = conf.CheckHeader('fenv.h', '<>')
740 if not have_fenv:
741 print "Warning: Header file <fenv.h> not found."
742 print " This host has no IEEE FP rounding mode control."
743
744 ######################################################################
745 #
746 # Finish the configuration
747 #
748 main = conf.Finish()
749
750 ######################################################################
751 #
752 # Collect all non-global variables
753 #
754
755 # Define the universe of supported ISAs
756 all_isa_list = [ ]
757 Export('all_isa_list')
758
759 class CpuModel(object):
760 '''The CpuModel class encapsulates everything the ISA parser needs to
761 know about a particular CPU model.'''
762
763 # Dict of available CPU model objects. Accessible as CpuModel.dict.
764 dict = {}
765 list = []
766 defaults = []
767
768 # Constructor. Automatically adds models to CpuModel.dict.
769 def __init__(self, name, filename, includes, strings, default=False):
770 self.name = name # name of model
771 self.filename = filename # filename for output exec code
772 self.includes = includes # include files needed in exec file
773 # The 'strings' dict holds all the per-CPU symbols we can
774 # substitute into templates etc.
775 self.strings = strings
776
777 # This cpu is enabled by default
778 self.default = default
779
780 # Add self to dict
781 if name in CpuModel.dict:
782 raise AttributeError, "CpuModel '%s' already registered" % name
783 CpuModel.dict[name] = self
784 CpuModel.list.append(name)
785
786 Export('CpuModel')
787
788 # Sticky variables get saved in the variables file so they persist from
789 # one invocation to the next (unless overridden, in which case the new
790 # value becomes sticky).
791 sticky_vars = Variables(args=ARGUMENTS)
792 Export('sticky_vars')
793
794 # Sticky variables that should be exported
795 export_vars = []
796 Export('export_vars')
797
798 # Walk the tree and execute all SConsopts scripts that wil add to the
799 # above variables
800 if not GetOption('verbose'):
801 print "Reading SConsopts"
802 for bdir in [ base_dir ] + extras_dir_list:
803 if not isdir(bdir):
804 print "Error: directory '%s' does not exist" % bdir
805 Exit(1)
806 for root, dirs, files in os.walk(bdir):
807 if 'SConsopts' in files:
808 if GetOption('verbose'):
809 print "Reading", joinpath(root, 'SConsopts')
810 SConscript(joinpath(root, 'SConsopts'))
811
812 all_isa_list.sort()
813
814 sticky_vars.AddVariables(
815 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
816 BoolVariable('FULL_SYSTEM', 'Full-system support', False),
817 ListVariable('CPU_MODELS', 'CPU models',
818 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
819 sorted(CpuModel.list)),
820 BoolVariable('NO_FAST_ALLOC', 'Disable fast object allocator', False),
821 BoolVariable('FORCE_FAST_ALLOC',
822 'Enable fast object allocator, even for m5.debug', False),
823 BoolVariable('FAST_ALLOC_STATS', 'Enable fast object allocator statistics',
824 False),
825 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
826 False),
827 BoolVariable('SS_COMPATIBLE_FP',
828 'Make floating-point results compatible with SimpleScalar',
829 False),
830 BoolVariable('USE_SSE2',
831 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
832 False),
833 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
834 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
835 BoolVariable('USE_CHECKER', 'Use checker for detailed CPU models', False),
836 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
837 )
838
839 # These variables get exported to #defines in config/*.hh (see src/SConscript).
840 export_vars += ['FULL_SYSTEM', 'USE_FENV',
841 'NO_FAST_ALLOC', 'FORCE_FAST_ALLOC', 'FAST_ALLOC_STATS',
842 'SS_COMPATIBLE_FP', 'USE_CHECKER', 'TARGET_ISA', 'CP_ANNOTATE',
843 'USE_POSIX_CLOCK' ]
844
845 ###################################################
846 #
847 # Define a SCons builder for configuration flag headers.
848 #
849 ###################################################
850
851 # This function generates a config header file that #defines the
852 # variable symbol to the current variable setting (0 or 1). The source
853 # operands are the name of the variable and a Value node containing the
854 # value of the variable.
855 def build_config_file(target, source, env):
856 (variable, value) = [s.get_contents() for s in source]
857 f = file(str(target[0]), 'w')
858 print >> f, '#define', variable, value
859 f.close()
860 return None
861
862 # Combine the two functions into a scons Action object.
863 config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
864
865 # The emitter munges the source & target node lists to reflect what
866 # we're really doing.
867 def config_emitter(target, source, env):
868 # extract variable name from Builder arg
869 variable = str(target[0])
870 # True target is config header file
871 target = joinpath('config', variable.lower() + '.hh')
872 val = env[variable]
873 if isinstance(val, bool):
874 # Force value to 0/1
875 val = int(val)
876 elif isinstance(val, str):
877 val = '"' + val + '"'
878
879 # Sources are variable name & value (packaged in SCons Value nodes)
880 return ([target], [Value(variable), Value(val)])
881
882 config_builder = Builder(emitter = config_emitter, action = config_action)
883
884 main.Append(BUILDERS = { 'ConfigFile' : config_builder })
885
886 # libelf build is shared across all configs in the build root.
887 main.SConscript('ext/libelf/SConscript',
888 variant_dir = joinpath(build_root, 'libelf'))
889
890 # gzstream build is shared across all configs in the build root.
891 main.SConscript('ext/gzstream/SConscript',
892 variant_dir = joinpath(build_root, 'gzstream'))
893
894 ###################################################
895 #
896 # This function is used to set up a directory with switching headers
897 #
898 ###################################################
899
900 main['ALL_ISA_LIST'] = all_isa_list
901 def make_switching_dir(dname, switch_headers, env):
902 # Generate the header. target[0] is the full path of the output
903 # header to generate. 'source' is a dummy variable, since we get the
904 # list of ISAs from env['ALL_ISA_LIST'].
905 def gen_switch_hdr(target, source, env):
906 fname = str(target[0])
907 f = open(fname, 'w')
908 isa = env['TARGET_ISA'].lower()
909 print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
910 f.close()
911
912 # Build SCons Action object. 'varlist' specifies env vars that this
913 # action depends on; when env['ALL_ISA_LIST'] changes these actions
914 # should get re-executed.
915 switch_hdr_action = MakeAction(gen_switch_hdr,
916 Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
917
918 # Instantiate actions for each header
919 for hdr in switch_headers:
920 env.Command(hdr, [], switch_hdr_action)
921 Export('make_switching_dir')
922
923 ###################################################
924 #
925 # Define build environments for selected configurations.
926 #
927 ###################################################
928
929 for variant_path in variant_paths:
930 print "Building in", variant_path
931
932 # Make a copy of the build-root environment to use for this config.
933 env = main.Clone()
934 env['BUILDDIR'] = variant_path
935
936 # variant_dir is the tail component of build path, and is used to
937 # determine the build parameters (e.g., 'ALPHA_SE')
938 (build_root, variant_dir) = splitpath(variant_path)
939
940 # Set env variables according to the build directory config.
941 sticky_vars.files = []
942 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
943 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
944 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
945 current_vars_file = joinpath(build_root, 'variables', variant_dir)
946 if isfile(current_vars_file):
947 sticky_vars.files.append(current_vars_file)
948 print "Using saved variables file %s" % current_vars_file
949 else:
950 # Build dir-specific variables file doesn't exist.
951
952 # Make sure the directory is there so we can create it later
953 opt_dir = dirname(current_vars_file)
954 if not isdir(opt_dir):
955 mkdir(opt_dir)
956
957 # Get default build variables from source tree. Variables are
958 # normally determined by name of $VARIANT_DIR, but can be
959 # overridden by '--default=' arg on command line.
960 default = GetOption('default')
961 opts_dir = joinpath(main.root.abspath, 'build_opts')
962 if default:
963 default_vars_files = [joinpath(build_root, 'variables', default),
964 joinpath(opts_dir, default)]
965 else:
966 default_vars_files = [joinpath(opts_dir, variant_dir)]
967 existing_files = filter(isfile, default_vars_files)
968 if existing_files:
969 default_vars_file = existing_files[0]
970 sticky_vars.files.append(default_vars_file)
971 print "Variables file %s not found,\n using defaults in %s" \
972 % (current_vars_file, default_vars_file)
973 else:
974 print "Error: cannot find variables file %s or " \
975 "default file(s) %s" \
976 % (current_vars_file, ' or '.join(default_vars_files))
977 Exit(1)
978
979 # Apply current variable settings to env
980 sticky_vars.Update(env)
981
982 help_texts["local_vars"] += \
983 "Build variables for %s:\n" % variant_dir \
984 + sticky_vars.GenerateHelpText(env)
985
986 # Process variable settings.
987
988 if not have_fenv and env['USE_FENV']:
989 print "Warning: <fenv.h> not available; " \
990 "forcing USE_FENV to False in", variant_dir + "."
991 env['USE_FENV'] = False
992
993 if not env['USE_FENV']:
994 print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
995 print " FP results may deviate slightly from other platforms."
996
997 if env['EFENCE']:
998 env.Append(LIBS=['efence'])
999
1000 # Save sticky variable settings back to current variables file
1001 sticky_vars.Save(current_vars_file, env)
1002
1003 if env['USE_SSE2']:
1004 env.Append(CCFLAGS=['-msse2'])
1005
1006 # The src/SConscript file sets up the build rules in 'env' according
1007 # to the configured variables. It returns a list of environments,
1008 # one for each variant build (debug, opt, etc.)
1009 envList = SConscript('src/SConscript', variant_dir = variant_path,
1010 exports = 'env')
1011
1012 # Set up the regression tests for each build.
1013 for e in envList:
1014 SConscript('tests/SConscript',
1015 variant_dir = joinpath(variant_path, 'tests', e.Label),
1016 exports = { 'env' : e }, duplicate = False)
1017
1018 # base help text
1019 Help('''
1020 Usage: scons [scons options] [build variables] [target(s)]
1021
1022 Extra scons options:
1023 %(options)s
1024
1025 Global build variables:
1026 %(global_vars)s
1027
1028 %(local_vars)s
1029 ''' % help_texts)