SConstruct revision 10878
1# -*- mode:python -*-
2
3# Copyright (c) 2013, 2015 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating
9# to a hardware implementation of the functionality of the software
10# licensed hereunder.  You may use the software subject to the license
11# terms below provided that you ensure that this notice is replicated
12# unmodified and in its entirety in all distributions of the software,
13# modified or unmodified, in source code or in binary form.
14#
15# Copyright (c) 2011 Advanced Micro Devices, Inc.
16# Copyright (c) 2009 The Hewlett-Packard Development Company
17# Copyright (c) 2004-2005 The Regents of The University of Michigan
18# All rights reserved.
19#
20# Redistribution and use in source and binary forms, with or without
21# modification, are permitted provided that the following conditions are
22# met: redistributions of source code must retain the above copyright
23# notice, this list of conditions and the following disclaimer;
24# redistributions in binary form must reproduce the above copyright
25# notice, this list of conditions and the following disclaimer in the
26# documentation and/or other materials provided with the distribution;
27# neither the name of the copyright holders nor the names of its
28# contributors may be used to endorse or promote products derived from
29# this software without specific prior written permission.
30#
31# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42#
43# Authors: Steve Reinhardt
44#          Nathan Binkert
45
46###################################################
47#
48# SCons top-level build description (SConstruct) file.
49#
50# While in this directory ('gem5'), just type 'scons' to build the default
51# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
52# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for
53# the optimized full-system version).
54#
55# You can build gem5 in a different directory as long as there is a
56# 'build/<CONFIG>' somewhere along the target path.  The build system
57# expects that all configs under the same build directory are being
58# built for the same host system.
59#
60# Examples:
61#
62#   The following two commands are equivalent.  The '-u' option tells
63#   scons to search up the directory tree for this SConstruct file.
64#   % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug
65#   % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug
66#
67#   The following two commands are equivalent and demonstrate building
68#   in a directory outside of the source tree.  The '-C' option tells
69#   scons to chdir to the specified directory to find this SConstruct
70#   file.
71#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
72#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
73#
74# You can use 'scons -H' to print scons options.  If you're in this
75# 'gem5' directory (or use -u or -C to tell scons where to find this
76# file), you can use 'scons -h' to print all the gem5-specific build
77# options as well.
78#
79###################################################
80
81# Check for recent-enough Python and SCons versions.
82try:
83    # Really old versions of scons only take two options for the
84    # function, so check once without the revision and once with the
85    # revision, the first instance will fail for stuff other than
86    # 0.98, and the second will fail for 0.98.0
87    EnsureSConsVersion(0, 98)
88    EnsureSConsVersion(0, 98, 1)
89except SystemExit, e:
90    print """
91For more details, see:
92    http://gem5.org/Dependencies
93"""
94    raise
95
96# We ensure the python version early because because python-config
97# requires python 2.5
98try:
99    EnsurePythonVersion(2, 5)
100except SystemExit, e:
101    print """
102You can use a non-default installation of the Python interpreter by
103rearranging your PATH so that scons finds the non-default 'python' and
104'python-config' first.
105
106For more details, see:
107    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
108"""
109    raise
110
111# Global Python includes
112import itertools
113import os
114import re
115import subprocess
116import sys
117
118from os import mkdir, environ
119from os.path import abspath, basename, dirname, expanduser, normpath
120from os.path import exists,  isdir, isfile
121from os.path import join as joinpath, split as splitpath
122
123# SCons includes
124import SCons
125import SCons.Node
126
127extra_python_paths = [
128    Dir('src/python').srcnode().abspath, # gem5 includes
129    Dir('ext/ply').srcnode().abspath, # ply is used by several files
130    ]
131
132sys.path[1:1] = extra_python_paths
133
134from m5.util import compareVersions, readCommand
135from m5.util.terminal import get_termcap
136
137help_texts = {
138    "options" : "",
139    "global_vars" : "",
140    "local_vars" : ""
141}
142
143Export("help_texts")
144
145
146# There's a bug in scons in that (1) by default, the help texts from
147# AddOption() are supposed to be displayed when you type 'scons -h'
148# and (2) you can override the help displayed by 'scons -h' using the
149# Help() function, but these two features are incompatible: once
150# you've overridden the help text using Help(), there's no way to get
151# at the help texts from AddOptions.  See:
152#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
153#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
154# This hack lets us extract the help text from AddOptions and
155# re-inject it via Help().  Ideally someday this bug will be fixed and
156# we can just use AddOption directly.
157def AddLocalOption(*args, **kwargs):
158    col_width = 30
159
160    help = "  " + ", ".join(args)
161    if "help" in kwargs:
162        length = len(help)
163        if length >= col_width:
164            help += "\n" + " " * col_width
165        else:
166            help += " " * (col_width - length)
167        help += kwargs["help"]
168    help_texts["options"] += help + "\n"
169
170    AddOption(*args, **kwargs)
171
172AddLocalOption('--colors', dest='use_colors', action='store_true',
173               help="Add color to abbreviated scons output")
174AddLocalOption('--no-colors', dest='use_colors', action='store_false',
175               help="Don't add color to abbreviated scons output")
176AddLocalOption('--with-cxx-config', dest='with_cxx_config',
177               action='store_true',
178               help="Build with support for C++-based configuration")
179AddLocalOption('--default', dest='default', type='string', action='store',
180               help='Override which build_opts file to use for defaults')
181AddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
182               help='Disable style checking hooks')
183AddLocalOption('--no-lto', dest='no_lto', action='store_true',
184               help='Disable Link-Time Optimization for fast')
185AddLocalOption('--update-ref', dest='update_ref', action='store_true',
186               help='Update test reference outputs')
187AddLocalOption('--verbose', dest='verbose', action='store_true',
188               help='Print full tool command lines')
189AddLocalOption('--without-python', dest='without_python',
190               action='store_true',
191               help='Build without Python configuration support')
192AddLocalOption('--without-tcmalloc', dest='without_tcmalloc',
193               action='store_true',
194               help='Disable linking against tcmalloc')
195AddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true',
196               help='Build with Undefined Behavior Sanitizer if available')
197
198termcap = get_termcap(GetOption('use_colors'))
199
200########################################################################
201#
202# Set up the main build environment.
203#
204########################################################################
205
206# export TERM so that clang reports errors in color
207use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
208                 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC',
209                 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ])
210
211use_prefixes = [
212    "M5",           # M5 configuration (e.g., path to kernels)
213    "DISTCC_",      # distcc (distributed compiler wrapper) configuration
214    "CCACHE_",      # ccache (caching compiler wrapper) configuration
215    "CCC_",         # clang static analyzer configuration
216    ]
217
218use_env = {}
219for key,val in sorted(os.environ.iteritems()):
220    if key in use_vars or \
221            any([key.startswith(prefix) for prefix in use_prefixes]):
222        use_env[key] = val
223
224# Tell scons to avoid implicit command dependencies to avoid issues
225# with the param wrappes being compiled twice (see
226# http://scons.tigris.org/issues/show_bug.cgi?id=2811)
227main = Environment(ENV=use_env, IMPLICIT_COMMAND_DEPENDENCIES=0)
228main.Decider('MD5-timestamp')
229main.root = Dir(".")         # The current directory (where this file lives).
230main.srcdir = Dir("src")     # The source directory
231
232main_dict_keys = main.Dictionary().keys()
233
234# Check that we have a C/C++ compiler
235if not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
236    print "No C++ compiler installed (package g++ on Ubuntu and RedHat)"
237    Exit(1)
238
239# Check that swig is present
240if not 'SWIG' in main_dict_keys:
241    print "swig is not installed (package swig on Ubuntu and RedHat)"
242    Exit(1)
243
244# add useful python code PYTHONPATH so it can be used by subprocesses
245# as well
246main.AppendENVPath('PYTHONPATH', extra_python_paths)
247
248########################################################################
249#
250# Mercurial Stuff.
251#
252# If the gem5 directory is a mercurial repository, we should do some
253# extra things.
254#
255########################################################################
256
257hgdir = main.root.Dir(".hg")
258
259mercurial_style_message = """
260You're missing the gem5 style hook, which automatically checks your code
261against the gem5 style rules on hg commit and qrefresh commands.  This
262script will now install the hook in your .hg/hgrc file.
263Press enter to continue, or ctrl-c to abort: """
264
265mercurial_style_hook = """
266# The following lines were automatically added by gem5/SConstruct
267# to provide the gem5 style-checking hooks
268[extensions]
269style = %s/util/style.py
270
271[hooks]
272pretxncommit.style = python:style.check_style
273pre-qrefresh.style = python:style.check_style
274# End of SConstruct additions
275
276""" % (main.root.abspath)
277
278mercurial_lib_not_found = """
279Mercurial libraries cannot be found, ignoring style hook.  If
280you are a gem5 developer, please fix this and run the style
281hook. It is important.
282"""
283
284# Check for style hook and prompt for installation if it's not there.
285# Skip this if --ignore-style was specified, there's no .hg dir to
286# install a hook in, or there's no interactive terminal to prompt.
287if not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
288    style_hook = True
289    try:
290        from mercurial import ui
291        ui = ui.ui()
292        ui.readconfig(hgdir.File('hgrc').abspath)
293        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
294                     ui.config('hooks', 'pre-qrefresh.style', None)
295    except ImportError:
296        print mercurial_lib_not_found
297
298    if not style_hook:
299        print mercurial_style_message,
300        # continue unless user does ctrl-c/ctrl-d etc.
301        try:
302            raw_input()
303        except:
304            print "Input exception, exiting scons.\n"
305            sys.exit(1)
306        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
307        print "Adding style hook to", hgrc_path, "\n"
308        try:
309            hgrc = open(hgrc_path, 'a')
310            hgrc.write(mercurial_style_hook)
311            hgrc.close()
312        except:
313            print "Error updating", hgrc_path
314            sys.exit(1)
315
316
317###################################################
318#
319# Figure out which configurations to set up based on the path(s) of
320# the target(s).
321#
322###################################################
323
324# Find default configuration & binary.
325Default(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
326
327# helper function: find last occurrence of element in list
328def rfind(l, elt, offs = -1):
329    for i in range(len(l)+offs, 0, -1):
330        if l[i] == elt:
331            return i
332    raise ValueError, "element not found"
333
334# Take a list of paths (or SCons Nodes) and return a list with all
335# paths made absolute and ~-expanded.  Paths will be interpreted
336# relative to the launch directory unless a different root is provided
337def makePathListAbsolute(path_list, root=GetLaunchDir()):
338    return [abspath(joinpath(root, expanduser(str(p))))
339            for p in path_list]
340
341# Each target must have 'build' in the interior of the path; the
342# directory below this will determine the build parameters.  For
343# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
344# recognize that ALPHA_SE specifies the configuration because it
345# follow 'build' in the build path.
346
347# The funky assignment to "[:]" is needed to replace the list contents
348# in place rather than reassign the symbol to a new list, which
349# doesn't work (obviously!).
350BUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
351
352# Generate a list of the unique build roots and configs that the
353# collected targets reference.
354variant_paths = []
355build_root = None
356for t in BUILD_TARGETS:
357    path_dirs = t.split('/')
358    try:
359        build_top = rfind(path_dirs, 'build', -2)
360    except:
361        print "Error: no non-leaf 'build' dir found on target path", t
362        Exit(1)
363    this_build_root = joinpath('/',*path_dirs[:build_top+1])
364    if not build_root:
365        build_root = this_build_root
366    else:
367        if this_build_root != build_root:
368            print "Error: build targets not under same build root\n"\
369                  "  %s\n  %s" % (build_root, this_build_root)
370            Exit(1)
371    variant_path = joinpath('/',*path_dirs[:build_top+2])
372    if variant_path not in variant_paths:
373        variant_paths.append(variant_path)
374
375# Make sure build_root exists (might not if this is the first build there)
376if not isdir(build_root):
377    mkdir(build_root)
378main['BUILDROOT'] = build_root
379
380Export('main')
381
382main.SConsignFile(joinpath(build_root, "sconsign"))
383
384# Default duplicate option is to use hard links, but this messes up
385# when you use emacs to edit a file in the target dir, as emacs moves
386# file to file~ then copies to file, breaking the link.  Symbolic
387# (soft) links work better.
388main.SetOption('duplicate', 'soft-copy')
389
390#
391# Set up global sticky variables... these are common to an entire build
392# tree (not specific to a particular build like ALPHA_SE)
393#
394
395global_vars_file = joinpath(build_root, 'variables.global')
396
397global_vars = Variables(global_vars_file, args=ARGUMENTS)
398
399global_vars.AddVariables(
400    ('CC', 'C compiler', environ.get('CC', main['CC'])),
401    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
402    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
403    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
404    ('BATCH', 'Use batch pool for build and tests', False),
405    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
406    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
407    ('EXTRAS', 'Add extra directories to the compilation', '')
408    )
409
410# Update main environment with values from ARGUMENTS & global_vars_file
411global_vars.Update(main)
412help_texts["global_vars"] += global_vars.GenerateHelpText(main)
413
414# Save sticky variable settings back to current variables file
415global_vars.Save(global_vars_file, main)
416
417# Parse EXTRAS variable to build list of all directories where we're
418# look for sources etc.  This list is exported as extras_dir_list.
419base_dir = main.srcdir.abspath
420if main['EXTRAS']:
421    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
422else:
423    extras_dir_list = []
424
425Export('base_dir')
426Export('extras_dir_list')
427
428# the ext directory should be on the #includes path
429main.Append(CPPPATH=[Dir('ext')])
430
431def strip_build_path(path, env):
432    path = str(path)
433    variant_base = env['BUILDROOT'] + os.path.sep
434    if path.startswith(variant_base):
435        path = path[len(variant_base):]
436    elif path.startswith('build/'):
437        path = path[6:]
438    return path
439
440# Generate a string of the form:
441#   common/path/prefix/src1, src2 -> tgt1, tgt2
442# to print while building.
443class Transform(object):
444    # all specific color settings should be here and nowhere else
445    tool_color = termcap.Normal
446    pfx_color = termcap.Yellow
447    srcs_color = termcap.Yellow + termcap.Bold
448    arrow_color = termcap.Blue + termcap.Bold
449    tgts_color = termcap.Yellow + termcap.Bold
450
451    def __init__(self, tool, max_sources=99):
452        self.format = self.tool_color + (" [%8s] " % tool) \
453                      + self.pfx_color + "%s" \
454                      + self.srcs_color + "%s" \
455                      + self.arrow_color + " -> " \
456                      + self.tgts_color + "%s" \
457                      + termcap.Normal
458        self.max_sources = max_sources
459
460    def __call__(self, target, source, env, for_signature=None):
461        # truncate source list according to max_sources param
462        source = source[0:self.max_sources]
463        def strip(f):
464            return strip_build_path(str(f), env)
465        if len(source) > 0:
466            srcs = map(strip, source)
467        else:
468            srcs = ['']
469        tgts = map(strip, target)
470        # surprisingly, os.path.commonprefix is a dumb char-by-char string
471        # operation that has nothing to do with paths.
472        com_pfx = os.path.commonprefix(srcs + tgts)
473        com_pfx_len = len(com_pfx)
474        if com_pfx:
475            # do some cleanup and sanity checking on common prefix
476            if com_pfx[-1] == ".":
477                # prefix matches all but file extension: ok
478                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
479                com_pfx = com_pfx[0:-1]
480            elif com_pfx[-1] == "/":
481                # common prefix is directory path: OK
482                pass
483            else:
484                src0_len = len(srcs[0])
485                tgt0_len = len(tgts[0])
486                if src0_len == com_pfx_len:
487                    # source is a substring of target, OK
488                    pass
489                elif tgt0_len == com_pfx_len:
490                    # target is a substring of source, need to back up to
491                    # avoid empty string on RHS of arrow
492                    sep_idx = com_pfx.rfind(".")
493                    if sep_idx != -1:
494                        com_pfx = com_pfx[0:sep_idx]
495                    else:
496                        com_pfx = ''
497                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
498                    # still splitting at file extension: ok
499                    pass
500                else:
501                    # probably a fluke; ignore it
502                    com_pfx = ''
503        # recalculate length in case com_pfx was modified
504        com_pfx_len = len(com_pfx)
505        def fmt(files):
506            f = map(lambda s: s[com_pfx_len:], files)
507            return ', '.join(f)
508        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
509
510Export('Transform')
511
512# enable the regression script to use the termcap
513main['TERMCAP'] = termcap
514
515if GetOption('verbose'):
516    def MakeAction(action, string, *args, **kwargs):
517        return Action(action, *args, **kwargs)
518else:
519    MakeAction = Action
520    main['CCCOMSTR']        = Transform("CC")
521    main['CXXCOMSTR']       = Transform("CXX")
522    main['ASCOMSTR']        = Transform("AS")
523    main['SWIGCOMSTR']      = Transform("SWIG")
524    main['ARCOMSTR']        = Transform("AR", 0)
525    main['LINKCOMSTR']      = Transform("LINK", 0)
526    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
527    main['M4COMSTR']        = Transform("M4")
528    main['SHCCCOMSTR']      = Transform("SHCC")
529    main['SHCXXCOMSTR']     = Transform("SHCXX")
530Export('MakeAction')
531
532# Initialize the Link-Time Optimization (LTO) flags
533main['LTO_CCFLAGS'] = []
534main['LTO_LDFLAGS'] = []
535
536# According to the readme, tcmalloc works best if the compiler doesn't
537# assume that we're using the builtin malloc and friends. These flags
538# are compiler-specific, so we need to set them after we detect which
539# compiler we're using.
540main['TCMALLOC_CCFLAGS'] = []
541
542CXX_version = readCommand([main['CXX'],'--version'], exception=False)
543CXX_V = readCommand([main['CXX'],'-V'], exception=False)
544
545main['GCC'] = CXX_version and CXX_version.find('g++') >= 0
546main['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
547if main['GCC'] + main['CLANG'] > 1:
548    print 'Error: How can we have two at the same time?'
549    Exit(1)
550
551# Set up default C++ compiler flags
552if main['GCC'] or main['CLANG']:
553    # As gcc and clang share many flags, do the common parts here
554    main.Append(CCFLAGS=['-pipe'])
555    main.Append(CCFLAGS=['-fno-strict-aliasing'])
556    # Enable -Wall and then disable the few warnings that we
557    # consistently violate
558    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
559    # We always compile using C++11
560    main.Append(CXXFLAGS=['-std=c++11'])
561    # Add selected sanity checks from -Wextra
562    main.Append(CXXFLAGS=['-Wmissing-field-initializers',
563                          '-Woverloaded-virtual'])
564else:
565    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
566    print "Don't know what compiler options to use for your compiler."
567    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
568    print termcap.Yellow + '       version:' + termcap.Normal,
569    if not CXX_version:
570        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
571               termcap.Normal
572    else:
573        print CXX_version.replace('\n', '<nl>')
574    print "       If you're trying to use a compiler other than GCC"
575    print "       or clang, there appears to be something wrong with your"
576    print "       environment."
577    print "       "
578    print "       If you are trying to use a compiler other than those listed"
579    print "       above you will need to ease fix SConstruct and "
580    print "       src/SConscript to support that compiler."
581    Exit(1)
582
583if main['GCC']:
584    # Check for a supported version of gcc. >= 4.7 is chosen for its
585    # level of c++11 support. See
586    # http://gcc.gnu.org/projects/cxx0x.html for details.
587    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
588    if compareVersions(gcc_version, "4.7") < 0:
589        print 'Error: gcc version 4.7 or newer required.'
590        print '       Installed version:', gcc_version
591        Exit(1)
592
593    main['GCC_VERSION'] = gcc_version
594
595    # gcc from version 4.8 and above generates "rep; ret" instructions
596    # to avoid performance penalties on certain AMD chips. Older
597    # assemblers detect this as an error, "Error: expecting string
598    # instruction after `rep'"
599    if compareVersions(gcc_version, "4.8") > 0:
600        as_version_raw = readCommand([main['AS'], '-v', '/dev/null'],
601                                     exception=False).split()
602
603        # version strings may contain extra distro-specific
604        # qualifiers, so play it safe and keep only what comes before
605        # the first hyphen
606        as_version = as_version_raw[-1].split('-')[0] if as_version_raw \
607            else None
608
609        if not as_version or compareVersions(as_version, "2.23") < 0:
610            print termcap.Yellow + termcap.Bold + \
611                'Warning: This combination of gcc and binutils have' + \
612                ' known incompatibilities.\n' + \
613                '         If you encounter build problems, please update ' + \
614                'binutils to 2.23.' + \
615                termcap.Normal
616
617    # Make sure we warn if the user has requested to compile with the
618    # Undefined Benahvior Sanitizer and this version of gcc does not
619    # support it.
620    if GetOption('with_ubsan') and \
621            compareVersions(gcc_version, '4.9') < 0:
622        print termcap.Yellow + termcap.Bold + \
623            'Warning: UBSan is only supported using gcc 4.9 and later.' + \
624            termcap.Normal
625
626    # Add the appropriate Link-Time Optimization (LTO) flags
627    # unless LTO is explicitly turned off. Note that these flags
628    # are only used by the fast target.
629    if not GetOption('no_lto'):
630        # Pass the LTO flag when compiling to produce GIMPLE
631        # output, we merely create the flags here and only append
632        # them later
633        main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
634
635        # Use the same amount of jobs for LTO as we are running
636        # scons with
637        main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
638
639    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
640                                  '-fno-builtin-realloc', '-fno-builtin-free'])
641
642elif main['CLANG']:
643    # Check for a supported version of clang, >= 3.1 is needed to
644    # support similar features as gcc 4.7. See
645    # http://clang.llvm.org/cxx_status.html for details
646    clang_version_re = re.compile(".* version (\d+\.\d+)")
647    clang_version_match = clang_version_re.search(CXX_version)
648    if (clang_version_match):
649        clang_version = clang_version_match.groups()[0]
650        if compareVersions(clang_version, "3.1") < 0:
651            print 'Error: clang version 3.1 or newer required.'
652            print '       Installed version:', clang_version
653            Exit(1)
654    else:
655        print 'Error: Unable to determine clang version.'
656        Exit(1)
657
658    # clang has a few additional warnings that we disable,
659    # tautological comparisons are allowed due to unsigned integers
660    # being compared to constants that happen to be 0, and extraneous
661    # parantheses are allowed due to Ruby's printing of the AST,
662    # finally self assignments are allowed as the generated CPU code
663    # is relying on this
664    main.Append(CCFLAGS=['-Wno-tautological-compare',
665                         '-Wno-parentheses',
666                         '-Wno-self-assign',
667                         # Some versions of libstdc++ (4.8?) seem to
668                         # use struct hash and class hash
669                         # interchangeably.
670                         '-Wno-mismatched-tags',
671                         ])
672
673    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
674
675    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
676    # opposed to libstdc++, as the later is dated.
677    if sys.platform == "darwin":
678        main.Append(CXXFLAGS=['-stdlib=libc++'])
679        main.Append(LIBS=['c++'])
680
681else:
682    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
683    print "Don't know what compiler options to use for your compiler."
684    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
685    print termcap.Yellow + '       version:' + termcap.Normal,
686    if not CXX_version:
687        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
688               termcap.Normal
689    else:
690        print CXX_version.replace('\n', '<nl>')
691    print "       If you're trying to use a compiler other than GCC"
692    print "       or clang, there appears to be something wrong with your"
693    print "       environment."
694    print "       "
695    print "       If you are trying to use a compiler other than those listed"
696    print "       above you will need to ease fix SConstruct and "
697    print "       src/SConscript to support that compiler."
698    Exit(1)
699
700# Set up common yacc/bison flags (needed for Ruby)
701main['YACCFLAGS'] = '-d'
702main['YACCHXXFILESUFFIX'] = '.hh'
703
704# Do this after we save setting back, or else we'll tack on an
705# extra 'qdo' every time we run scons.
706if main['BATCH']:
707    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
708    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
709    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
710    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
711    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
712
713if sys.platform == 'cygwin':
714    # cygwin has some header file issues...
715    main.Append(CCFLAGS=["-Wno-uninitialized"])
716
717# Check for the protobuf compiler
718protoc_version = readCommand([main['PROTOC'], '--version'],
719                             exception='').split()
720
721# First two words should be "libprotoc x.y.z"
722if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
723    print termcap.Yellow + termcap.Bold + \
724        'Warning: Protocol buffer compiler (protoc) not found.\n' + \
725        '         Please install protobuf-compiler for tracing support.' + \
726        termcap.Normal
727    main['PROTOC'] = False
728else:
729    # Based on the availability of the compress stream wrappers,
730    # require 2.1.0
731    min_protoc_version = '2.1.0'
732    if compareVersions(protoc_version[1], min_protoc_version) < 0:
733        print termcap.Yellow + termcap.Bold + \
734            'Warning: protoc version', min_protoc_version, \
735            'or newer required.\n' + \
736            '         Installed version:', protoc_version[1], \
737            termcap.Normal
738        main['PROTOC'] = False
739    else:
740        # Attempt to determine the appropriate include path and
741        # library path using pkg-config, that means we also need to
742        # check for pkg-config. Note that it is possible to use
743        # protobuf without the involvement of pkg-config. Later on we
744        # check go a library config check and at that point the test
745        # will fail if libprotobuf cannot be found.
746        if readCommand(['pkg-config', '--version'], exception=''):
747            try:
748                # Attempt to establish what linking flags to add for protobuf
749                # using pkg-config
750                main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
751            except:
752                print termcap.Yellow + termcap.Bold + \
753                    'Warning: pkg-config could not get protobuf flags.' + \
754                    termcap.Normal
755
756# Check for SWIG
757if not main.has_key('SWIG'):
758    print 'Error: SWIG utility not found.'
759    print '       Please install (see http://www.swig.org) and retry.'
760    Exit(1)
761
762# Check for appropriate SWIG version
763swig_version = readCommand([main['SWIG'], '-version'], exception='').split()
764# First 3 words should be "SWIG Version x.y.z"
765if len(swig_version) < 3 or \
766        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
767    print 'Error determining SWIG version.'
768    Exit(1)
769
770min_swig_version = '2.0.4'
771if compareVersions(swig_version[2], min_swig_version) < 0:
772    print 'Error: SWIG version', min_swig_version, 'or newer required.'
773    print '       Installed version:', swig_version[2]
774    Exit(1)
775
776# Check for known incompatibilities. The standard library shipped with
777# gcc >= 4.9 does not play well with swig versions prior to 3.0
778if main['GCC'] and compareVersions(gcc_version, '4.9') >= 0 and \
779        compareVersions(swig_version[2], '3.0') < 0:
780    print termcap.Yellow + termcap.Bold + \
781        'Warning: This combination of gcc and swig have' + \
782        ' known incompatibilities.\n' + \
783        '         If you encounter build problems, please update ' + \
784        'swig to 3.0 or later.' + \
785        termcap.Normal
786
787# Set up SWIG flags & scanner
788swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
789main.Append(SWIGFLAGS=swig_flags)
790
791# Check for 'timeout' from GNU coreutils. If present, regressions will
792# be run with a time limit. We require version 8.13 since we rely on
793# support for the '--foreground' option.
794timeout_lines = readCommand(['timeout', '--version'],
795                            exception='').splitlines()
796# Get the first line and tokenize it
797timeout_version = timeout_lines[0].split() if timeout_lines else []
798main['TIMEOUT'] =  timeout_version and \
799    compareVersions(timeout_version[-1], '8.13') >= 0
800
801# filter out all existing swig scanners, they mess up the dependency
802# stuff for some reason
803scanners = []
804for scanner in main['SCANNERS']:
805    skeys = scanner.skeys
806    if skeys == '.i':
807        continue
808
809    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
810        continue
811
812    scanners.append(scanner)
813
814# add the new swig scanner that we like better
815from SCons.Scanner import ClassicCPP as CPPScanner
816swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
817scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
818
819# replace the scanners list that has what we want
820main['SCANNERS'] = scanners
821
822# Add a custom Check function to the Configure context so that we can
823# figure out if the compiler adds leading underscores to global
824# variables.  This is needed for the autogenerated asm files that we
825# use for embedding the python code.
826def CheckLeading(context):
827    context.Message("Checking for leading underscore in global variables...")
828    # 1) Define a global variable called x from asm so the C compiler
829    #    won't change the symbol at all.
830    # 2) Declare that variable.
831    # 3) Use the variable
832    #
833    # If the compiler prepends an underscore, this will successfully
834    # link because the external symbol 'x' will be called '_x' which
835    # was defined by the asm statement.  If the compiler does not
836    # prepend an underscore, this will not successfully link because
837    # '_x' will have been defined by assembly, while the C portion of
838    # the code will be trying to use 'x'
839    ret = context.TryLink('''
840        asm(".globl _x; _x: .byte 0");
841        extern int x;
842        int main() { return x; }
843        ''', extension=".c")
844    context.env.Append(LEADING_UNDERSCORE=ret)
845    context.Result(ret)
846    return ret
847
848# Add a custom Check function to test for structure members.
849def CheckMember(context, include, decl, member, include_quotes="<>"):
850    context.Message("Checking for member %s in %s..." %
851                    (member, decl))
852    text = """
853#include %(header)s
854int main(){
855  %(decl)s test;
856  (void)test.%(member)s;
857  return 0;
858};
859""" % { "header" : include_quotes[0] + include + include_quotes[1],
860        "decl" : decl,
861        "member" : member,
862        }
863
864    ret = context.TryCompile(text, extension=".cc")
865    context.Result(ret)
866    return ret
867
868# Platform-specific configuration.  Note again that we assume that all
869# builds under a given build root run on the same host platform.
870conf = Configure(main,
871                 conf_dir = joinpath(build_root, '.scons_config'),
872                 log_file = joinpath(build_root, 'scons_config.log'),
873                 custom_tests = {
874        'CheckLeading' : CheckLeading,
875        'CheckMember' : CheckMember,
876        })
877
878# Check for leading underscores.  Don't really need to worry either
879# way so don't need to check the return code.
880conf.CheckLeading()
881
882# Check if we should compile a 64 bit binary on Mac OS X/Darwin
883try:
884    import platform
885    uname = platform.uname()
886    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
887        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
888            main.Append(CCFLAGS=['-arch', 'x86_64'])
889            main.Append(CFLAGS=['-arch', 'x86_64'])
890            main.Append(LINKFLAGS=['-arch', 'x86_64'])
891            main.Append(ASFLAGS=['-arch', 'x86_64'])
892except:
893    pass
894
895# Recent versions of scons substitute a "Null" object for Configure()
896# when configuration isn't necessary, e.g., if the "--help" option is
897# present.  Unfortuantely this Null object always returns false,
898# breaking all our configuration checks.  We replace it with our own
899# more optimistic null object that returns True instead.
900if not conf:
901    def NullCheck(*args, **kwargs):
902        return True
903
904    class NullConf:
905        def __init__(self, env):
906            self.env = env
907        def Finish(self):
908            return self.env
909        def __getattr__(self, mname):
910            return NullCheck
911
912    conf = NullConf(main)
913
914# Cache build files in the supplied directory.
915if main['M5_BUILD_CACHE']:
916    print 'Using build cache located at', main['M5_BUILD_CACHE']
917    CacheDir(main['M5_BUILD_CACHE'])
918
919if not GetOption('without_python'):
920    # Find Python include and library directories for embedding the
921    # interpreter. We rely on python-config to resolve the appropriate
922    # includes and linker flags. ParseConfig does not seem to understand
923    # the more exotic linker flags such as -Xlinker and -export-dynamic so
924    # we add them explicitly below. If you want to link in an alternate
925    # version of python, see above for instructions on how to invoke
926    # scons with the appropriate PATH set.
927    #
928    # First we check if python2-config exists, else we use python-config
929    python_config = readCommand(['which', 'python2-config'],
930                                exception='').strip()
931    if not os.path.exists(python_config):
932        python_config = readCommand(['which', 'python-config'],
933                                    exception='').strip()
934    py_includes = readCommand([python_config, '--includes'],
935                              exception='').split()
936    # Strip the -I from the include folders before adding them to the
937    # CPPPATH
938    main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes))
939
940    # Read the linker flags and split them into libraries and other link
941    # flags. The libraries are added later through the call the CheckLib.
942    py_ld_flags = readCommand([python_config, '--ldflags'],
943        exception='').split()
944    py_libs = []
945    for lib in py_ld_flags:
946         if not lib.startswith('-l'):
947             main.Append(LINKFLAGS=[lib])
948         else:
949             lib = lib[2:]
950             if lib not in py_libs:
951                 py_libs.append(lib)
952
953    # verify that this stuff works
954    if not conf.CheckHeader('Python.h', '<>'):
955        print "Error: can't find Python.h header in", py_includes
956        print "Install Python headers (package python-dev on Ubuntu and RedHat)"
957        Exit(1)
958
959    for lib in py_libs:
960        if not conf.CheckLib(lib):
961            print "Error: can't find library %s required by python" % lib
962            Exit(1)
963
964# On Solaris you need to use libsocket for socket ops
965if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
966   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
967       print "Can't find library with socket calls (e.g. accept())"
968       Exit(1)
969
970# Check for zlib.  If the check passes, libz will be automatically
971# added to the LIBS environment variable.
972if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
973    print 'Error: did not find needed zlib compression library '\
974          'and/or zlib.h header file.'
975    print '       Please install zlib and try again.'
976    Exit(1)
977
978# If we have the protobuf compiler, also make sure we have the
979# development libraries. If the check passes, libprotobuf will be
980# automatically added to the LIBS environment variable. After
981# this, we can use the HAVE_PROTOBUF flag to determine if we have
982# got both protoc and libprotobuf available.
983main['HAVE_PROTOBUF'] = main['PROTOC'] and \
984    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
985                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
986
987# If we have the compiler but not the library, print another warning.
988if main['PROTOC'] and not main['HAVE_PROTOBUF']:
989    print termcap.Yellow + termcap.Bold + \
990        'Warning: did not find protocol buffer library and/or headers.\n' + \
991    '       Please install libprotobuf-dev for tracing support.' + \
992    termcap.Normal
993
994# Check for librt.
995have_posix_clock = \
996    conf.CheckLibWithHeader(None, 'time.h', 'C',
997                            'clock_nanosleep(0,0,NULL,NULL);') or \
998    conf.CheckLibWithHeader('rt', 'time.h', 'C',
999                            'clock_nanosleep(0,0,NULL,NULL);')
1000
1001have_posix_timers = \
1002    conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
1003                            'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
1004
1005if not GetOption('without_tcmalloc'):
1006    if conf.CheckLib('tcmalloc'):
1007        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
1008    elif conf.CheckLib('tcmalloc_minimal'):
1009        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
1010    else:
1011        print termcap.Yellow + termcap.Bold + \
1012              "You can get a 12% performance improvement by "\
1013              "installing tcmalloc (libgoogle-perftools-dev package "\
1014              "on Ubuntu or RedHat)." + termcap.Normal
1015
1016if not have_posix_clock:
1017    print "Can't find library for POSIX clocks."
1018
1019# Check for <fenv.h> (C99 FP environment control)
1020have_fenv = conf.CheckHeader('fenv.h', '<>')
1021if not have_fenv:
1022    print "Warning: Header file <fenv.h> not found."
1023    print "         This host has no IEEE FP rounding mode control."
1024
1025# Check if we should enable KVM-based hardware virtualization. The API
1026# we rely on exists since version 2.6.36 of the kernel, but somehow
1027# the KVM_API_VERSION does not reflect the change. We test for one of
1028# the types as a fall back.
1029have_kvm = conf.CheckHeader('linux/kvm.h', '<>')
1030if not have_kvm:
1031    print "Info: Compatible header file <linux/kvm.h> not found, " \
1032        "disabling KVM support."
1033
1034# x86 needs support for xsave. We test for the structure here since we
1035# won't be able to run new tests by the time we know which ISA we're
1036# targeting.
1037have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave',
1038                                    '#include <linux/kvm.h>') != 0
1039
1040# Check if the requested target ISA is compatible with the host
1041def is_isa_kvm_compatible(isa):
1042    try:
1043        import platform
1044        host_isa = platform.machine()
1045    except:
1046        print "Warning: Failed to determine host ISA."
1047        return False
1048
1049    if not have_posix_timers:
1050        print "Warning: Can not enable KVM, host seems to lack support " \
1051            "for POSIX timers"
1052        return False
1053
1054    if isa == "arm":
1055        return host_isa in ( "armv7l", "aarch64" )
1056    elif isa == "x86":
1057        if host_isa != "x86_64":
1058            return False
1059
1060        if not have_kvm_xsave:
1061            print "KVM on x86 requires xsave support in kernel headers."
1062            return False
1063
1064        return True
1065    else:
1066        return False
1067
1068
1069# Check if the exclude_host attribute is available. We want this to
1070# get accurate instruction counts in KVM.
1071main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
1072    'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
1073
1074
1075######################################################################
1076#
1077# Finish the configuration
1078#
1079main = conf.Finish()
1080
1081######################################################################
1082#
1083# Collect all non-global variables
1084#
1085
1086# Define the universe of supported ISAs
1087all_isa_list = [ ]
1088Export('all_isa_list')
1089
1090class CpuModel(object):
1091    '''The CpuModel class encapsulates everything the ISA parser needs to
1092    know about a particular CPU model.'''
1093
1094    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
1095    dict = {}
1096
1097    # Constructor.  Automatically adds models to CpuModel.dict.
1098    def __init__(self, name, default=False):
1099        self.name = name           # name of model
1100
1101        # This cpu is enabled by default
1102        self.default = default
1103
1104        # Add self to dict
1105        if name in CpuModel.dict:
1106            raise AttributeError, "CpuModel '%s' already registered" % name
1107        CpuModel.dict[name] = self
1108
1109Export('CpuModel')
1110
1111# Sticky variables get saved in the variables file so they persist from
1112# one invocation to the next (unless overridden, in which case the new
1113# value becomes sticky).
1114sticky_vars = Variables(args=ARGUMENTS)
1115Export('sticky_vars')
1116
1117# Sticky variables that should be exported
1118export_vars = []
1119Export('export_vars')
1120
1121# For Ruby
1122all_protocols = []
1123Export('all_protocols')
1124protocol_dirs = []
1125Export('protocol_dirs')
1126slicc_includes = []
1127Export('slicc_includes')
1128
1129# Walk the tree and execute all SConsopts scripts that wil add to the
1130# above variables
1131if GetOption('verbose'):
1132    print "Reading SConsopts"
1133for bdir in [ base_dir ] + extras_dir_list:
1134    if not isdir(bdir):
1135        print "Error: directory '%s' does not exist" % bdir
1136        Exit(1)
1137    for root, dirs, files in os.walk(bdir):
1138        if 'SConsopts' in files:
1139            if GetOption('verbose'):
1140                print "Reading", joinpath(root, 'SConsopts')
1141            SConscript(joinpath(root, 'SConsopts'))
1142
1143all_isa_list.sort()
1144
1145sticky_vars.AddVariables(
1146    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
1147    ListVariable('CPU_MODELS', 'CPU models',
1148                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
1149                 sorted(CpuModel.dict.keys())),
1150    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
1151                 False),
1152    BoolVariable('SS_COMPATIBLE_FP',
1153                 'Make floating-point results compatible with SimpleScalar',
1154                 False),
1155    BoolVariable('USE_SSE2',
1156                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
1157                 False),
1158    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
1159    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
1160    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
1161    BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm),
1162    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
1163                  all_protocols),
1164    )
1165
1166# These variables get exported to #defines in config/*.hh (see src/SConscript).
1167export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE',
1168                'USE_POSIX_CLOCK', 'USE_KVM', 'PROTOCOL', 'HAVE_PROTOBUF',
1169                'HAVE_PERF_ATTR_EXCLUDE_HOST']
1170
1171###################################################
1172#
1173# Define a SCons builder for configuration flag headers.
1174#
1175###################################################
1176
1177# This function generates a config header file that #defines the
1178# variable symbol to the current variable setting (0 or 1).  The source
1179# operands are the name of the variable and a Value node containing the
1180# value of the variable.
1181def build_config_file(target, source, env):
1182    (variable, value) = [s.get_contents() for s in source]
1183    f = file(str(target[0]), 'w')
1184    print >> f, '#define', variable, value
1185    f.close()
1186    return None
1187
1188# Combine the two functions into a scons Action object.
1189config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
1190
1191# The emitter munges the source & target node lists to reflect what
1192# we're really doing.
1193def config_emitter(target, source, env):
1194    # extract variable name from Builder arg
1195    variable = str(target[0])
1196    # True target is config header file
1197    target = joinpath('config', variable.lower() + '.hh')
1198    val = env[variable]
1199    if isinstance(val, bool):
1200        # Force value to 0/1
1201        val = int(val)
1202    elif isinstance(val, str):
1203        val = '"' + val + '"'
1204
1205    # Sources are variable name & value (packaged in SCons Value nodes)
1206    return ([target], [Value(variable), Value(val)])
1207
1208config_builder = Builder(emitter = config_emitter, action = config_action)
1209
1210main.Append(BUILDERS = { 'ConfigFile' : config_builder })
1211
1212# libelf build is shared across all configs in the build root.
1213main.SConscript('ext/libelf/SConscript',
1214                variant_dir = joinpath(build_root, 'libelf'))
1215
1216# gzstream build is shared across all configs in the build root.
1217main.SConscript('ext/gzstream/SConscript',
1218                variant_dir = joinpath(build_root, 'gzstream'))
1219
1220# libfdt build is shared across all configs in the build root.
1221main.SConscript('ext/libfdt/SConscript',
1222                variant_dir = joinpath(build_root, 'libfdt'))
1223
1224# fputils build is shared across all configs in the build root.
1225main.SConscript('ext/fputils/SConscript',
1226                variant_dir = joinpath(build_root, 'fputils'))
1227
1228# DRAMSim2 build is shared across all configs in the build root.
1229main.SConscript('ext/dramsim2/SConscript',
1230                variant_dir = joinpath(build_root, 'dramsim2'))
1231
1232# DRAMPower build is shared across all configs in the build root.
1233main.SConscript('ext/drampower/SConscript',
1234                variant_dir = joinpath(build_root, 'drampower'))
1235
1236###################################################
1237#
1238# This function is used to set up a directory with switching headers
1239#
1240###################################################
1241
1242main['ALL_ISA_LIST'] = all_isa_list
1243all_isa_deps = {}
1244def make_switching_dir(dname, switch_headers, env):
1245    # Generate the header.  target[0] is the full path of the output
1246    # header to generate.  'source' is a dummy variable, since we get the
1247    # list of ISAs from env['ALL_ISA_LIST'].
1248    def gen_switch_hdr(target, source, env):
1249        fname = str(target[0])
1250        isa = env['TARGET_ISA'].lower()
1251        try:
1252            f = open(fname, 'w')
1253            print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
1254            f.close()
1255        except IOError:
1256            print "Failed to create %s" % fname
1257            raise
1258
1259    # Build SCons Action object. 'varlist' specifies env vars that this
1260    # action depends on; when env['ALL_ISA_LIST'] changes these actions
1261    # should get re-executed.
1262    switch_hdr_action = MakeAction(gen_switch_hdr,
1263                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
1264
1265    # Instantiate actions for each header
1266    for hdr in switch_headers:
1267        env.Command(hdr, [], switch_hdr_action)
1268
1269    isa_target = Dir('.').up().name.lower().replace('_', '-')
1270    env['PHONY_BASE'] = '#'+isa_target
1271    all_isa_deps[isa_target] = None
1272
1273Export('make_switching_dir')
1274
1275# all-isas -> all-deps -> all-environs -> all_targets
1276main.Alias('#all-isas', [])
1277main.Alias('#all-deps', '#all-isas')
1278
1279# Dummy target to ensure all environments are created before telling
1280# SCons what to actually make (the command line arguments).  We attach
1281# them to the dependence graph after the environments are complete.
1282ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work.
1283def environsComplete(target, source, env):
1284    for t in ORIG_BUILD_TARGETS:
1285        main.Depends('#all-targets', t)
1286
1287# Each build/* switching_dir attaches its *-environs target to #all-environs.
1288main.Append(BUILDERS = {'CompleteEnvirons' :
1289                        Builder(action=MakeAction(environsComplete, None))})
1290main.CompleteEnvirons('#all-environs', [])
1291
1292def doNothing(**ignored): pass
1293main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))})
1294
1295# The final target to which all the original targets ultimately get attached.
1296main.Dummy('#all-targets', '#all-environs')
1297BUILD_TARGETS[:] = ['#all-targets']
1298
1299###################################################
1300#
1301# Define build environments for selected configurations.
1302#
1303###################################################
1304
1305for variant_path in variant_paths:
1306    if not GetOption('silent'):
1307        print "Building in", variant_path
1308
1309    # Make a copy of the build-root environment to use for this config.
1310    env = main.Clone()
1311    env['BUILDDIR'] = variant_path
1312
1313    # variant_dir is the tail component of build path, and is used to
1314    # determine the build parameters (e.g., 'ALPHA_SE')
1315    (build_root, variant_dir) = splitpath(variant_path)
1316
1317    # Set env variables according to the build directory config.
1318    sticky_vars.files = []
1319    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1320    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1321    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1322    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1323    if isfile(current_vars_file):
1324        sticky_vars.files.append(current_vars_file)
1325        if not GetOption('silent'):
1326            print "Using saved variables file %s" % current_vars_file
1327    else:
1328        # Build dir-specific variables file doesn't exist.
1329
1330        # Make sure the directory is there so we can create it later
1331        opt_dir = dirname(current_vars_file)
1332        if not isdir(opt_dir):
1333            mkdir(opt_dir)
1334
1335        # Get default build variables from source tree.  Variables are
1336        # normally determined by name of $VARIANT_DIR, but can be
1337        # overridden by '--default=' arg on command line.
1338        default = GetOption('default')
1339        opts_dir = joinpath(main.root.abspath, 'build_opts')
1340        if default:
1341            default_vars_files = [joinpath(build_root, 'variables', default),
1342                                  joinpath(opts_dir, default)]
1343        else:
1344            default_vars_files = [joinpath(opts_dir, variant_dir)]
1345        existing_files = filter(isfile, default_vars_files)
1346        if existing_files:
1347            default_vars_file = existing_files[0]
1348            sticky_vars.files.append(default_vars_file)
1349            print "Variables file %s not found,\n  using defaults in %s" \
1350                  % (current_vars_file, default_vars_file)
1351        else:
1352            print "Error: cannot find variables file %s or " \
1353                  "default file(s) %s" \
1354                  % (current_vars_file, ' or '.join(default_vars_files))
1355            Exit(1)
1356
1357    # Apply current variable settings to env
1358    sticky_vars.Update(env)
1359
1360    help_texts["local_vars"] += \
1361        "Build variables for %s:\n" % variant_dir \
1362                 + sticky_vars.GenerateHelpText(env)
1363
1364    # Process variable settings.
1365
1366    if not have_fenv and env['USE_FENV']:
1367        print "Warning: <fenv.h> not available; " \
1368              "forcing USE_FENV to False in", variant_dir + "."
1369        env['USE_FENV'] = False
1370
1371    if not env['USE_FENV']:
1372        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1373        print "         FP results may deviate slightly from other platforms."
1374
1375    if env['EFENCE']:
1376        env.Append(LIBS=['efence'])
1377
1378    if env['USE_KVM']:
1379        if not have_kvm:
1380            print "Warning: Can not enable KVM, host seems to lack KVM support"
1381            env['USE_KVM'] = False
1382        elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1383            print "Info: KVM support disabled due to unsupported host and " \
1384                "target ISA combination"
1385            env['USE_KVM'] = False
1386
1387    # Warn about missing optional functionality
1388    if env['USE_KVM']:
1389        if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1390            print "Warning: perf_event headers lack support for the " \
1391                "exclude_host attribute. KVM instruction counts will " \
1392                "be inaccurate."
1393
1394    # Save sticky variable settings back to current variables file
1395    sticky_vars.Save(current_vars_file, env)
1396
1397    if env['USE_SSE2']:
1398        env.Append(CCFLAGS=['-msse2'])
1399
1400    # The src/SConscript file sets up the build rules in 'env' according
1401    # to the configured variables.  It returns a list of environments,
1402    # one for each variant build (debug, opt, etc.)
1403    SConscript('src/SConscript', variant_dir = variant_path, exports = 'env')
1404
1405def pairwise(iterable):
1406    "s -> (s0,s1), (s1,s2), (s2, s3), ..."
1407    a, b = itertools.tee(iterable)
1408    b.next()
1409    return itertools.izip(a, b)
1410
1411# Create false dependencies so SCons will parse ISAs, establish
1412# dependencies, and setup the build Environments serially. Either
1413# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j
1414# greater than 1. It appears to be standard race condition stuff; it
1415# doesn't always fail, but usually, and the behaviors are different.
1416# Every time I tried to remove this, builds would fail in some
1417# creative new way. So, don't do that. You'll want to, though, because
1418# tests/SConscript takes a long time to make its Environments.
1419for t1, t2 in pairwise(sorted(all_isa_deps.iterkeys())):
1420    main.Depends('#%s-deps'     % t2, '#%s-deps'     % t1)
1421    main.Depends('#%s-environs' % t2, '#%s-environs' % t1)
1422
1423# base help text
1424Help('''
1425Usage: scons [scons options] [build variables] [target(s)]
1426
1427Extra scons options:
1428%(options)s
1429
1430Global build variables:
1431%(global_vars)s
1432
1433%(local_vars)s
1434''' % help_texts)
1435