SConstruct revision 10457
1955SN/A# -*- mode:python -*-
2955SN/A
39812Sandreas.hansson@arm.com# Copyright (c) 2013 ARM Limited
49812Sandreas.hansson@arm.com# All rights reserved.
59812Sandreas.hansson@arm.com#
69812Sandreas.hansson@arm.com# The license below extends only to copyright in the software and shall
79812Sandreas.hansson@arm.com# not be construed as granting a license to any other intellectual
89812Sandreas.hansson@arm.com# property including but not limited to intellectual property relating
99812Sandreas.hansson@arm.com# to a hardware implementation of the functionality of the software
109812Sandreas.hansson@arm.com# licensed hereunder.  You may use the software subject to the license
119812Sandreas.hansson@arm.com# terms below provided that you ensure that this notice is replicated
129812Sandreas.hansson@arm.com# unmodified and in its entirety in all distributions of the software,
139812Sandreas.hansson@arm.com# modified or unmodified, in source code or in binary form.
149812Sandreas.hansson@arm.com#
157816Ssteve.reinhardt@amd.com# Copyright (c) 2011 Advanced Micro Devices, Inc.
165871Snate@binkert.org# Copyright (c) 2009 The Hewlett-Packard Development Company
171762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
18955SN/A# All rights reserved.
19955SN/A#
20955SN/A# Redistribution and use in source and binary forms, with or without
21955SN/A# modification, are permitted provided that the following conditions are
22955SN/A# met: redistributions of source code must retain the above copyright
23955SN/A# notice, this list of conditions and the following disclaimer;
24955SN/A# redistributions in binary form must reproduce the above copyright
25955SN/A# notice, this list of conditions and the following disclaimer in the
26955SN/A# documentation and/or other materials provided with the distribution;
27955SN/A# neither the name of the copyright holders nor the names of its
28955SN/A# contributors may be used to endorse or promote products derived from
29955SN/A# this software without specific prior written permission.
30955SN/A#
31955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422665Ssaidi@eecs.umich.edu#
432665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
445863Snate@binkert.org#          Nathan Binkert
45955SN/A
46955SN/A###################################################
47955SN/A#
48955SN/A# SCons top-level build description (SConstruct) file.
49955SN/A#
508878Ssteve.reinhardt@amd.com# While in this directory ('gem5'), just type 'scons' to build the default
512632Sstever@eecs.umich.edu# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
528878Ssteve.reinhardt@amd.com# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for
532632Sstever@eecs.umich.edu# the optimized full-system version).
54955SN/A#
558878Ssteve.reinhardt@amd.com# You can build gem5 in a different directory as long as there is a
562632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path.  The build system
572761Sstever@eecs.umich.edu# expects that all configs under the same build directory are being
582632Sstever@eecs.umich.edu# built for the same host system.
592632Sstever@eecs.umich.edu#
602632Sstever@eecs.umich.edu# Examples:
612761Sstever@eecs.umich.edu#
622761Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
632761Sstever@eecs.umich.edu#   scons to search up the directory tree for this SConstruct file.
648878Ssteve.reinhardt@amd.com#   % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug
658878Ssteve.reinhardt@amd.com#   % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug
662761Sstever@eecs.umich.edu#
672761Sstever@eecs.umich.edu#   The following two commands are equivalent and demonstrate building
682761Sstever@eecs.umich.edu#   in a directory outside of the source tree.  The '-C' option tells
692761Sstever@eecs.umich.edu#   scons to chdir to the specified directory to find this SConstruct
702761Sstever@eecs.umich.edu#   file.
718878Ssteve.reinhardt@amd.com#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
728878Ssteve.reinhardt@amd.com#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
732632Sstever@eecs.umich.edu#
742632Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options.  If you're in this
758878Ssteve.reinhardt@amd.com# 'gem5' directory (or use -u or -C to tell scons where to find this
768878Ssteve.reinhardt@amd.com# file), you can use 'scons -h' to print all the gem5-specific build
772632Sstever@eecs.umich.edu# options as well.
78955SN/A#
79955SN/A###################################################
80955SN/A
815863Snate@binkert.org# Check for recent-enough Python and SCons versions.
825863Snate@binkert.orgtry:
835863Snate@binkert.org    # Really old versions of scons only take two options for the
845863Snate@binkert.org    # function, so check once without the revision and once with the
855863Snate@binkert.org    # revision, the first instance will fail for stuff other than
865863Snate@binkert.org    # 0.98, and the second will fail for 0.98.0
875863Snate@binkert.org    EnsureSConsVersion(0, 98)
885863Snate@binkert.org    EnsureSConsVersion(0, 98, 1)
895863Snate@binkert.orgexcept SystemExit, e:
905863Snate@binkert.org    print """
915863Snate@binkert.orgFor more details, see:
928878Ssteve.reinhardt@amd.com    http://gem5.org/Dependencies
935863Snate@binkert.org"""
945863Snate@binkert.org    raise
955863Snate@binkert.org
969812Sandreas.hansson@arm.com# We ensure the python version early because because python-config
979812Sandreas.hansson@arm.com# requires python 2.5
985863Snate@binkert.orgtry:
999812Sandreas.hansson@arm.com    EnsurePythonVersion(2, 5)
1005863Snate@binkert.orgexcept SystemExit, e:
1015863Snate@binkert.org    print """
1025863Snate@binkert.orgYou can use a non-default installation of the Python interpreter by
1039812Sandreas.hansson@arm.comrearranging your PATH so that scons finds the non-default 'python' and
1049812Sandreas.hansson@arm.com'python-config' first.
1055863Snate@binkert.org
1065863Snate@binkert.orgFor more details, see:
1078878Ssteve.reinhardt@amd.com    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
1085863Snate@binkert.org"""
1095863Snate@binkert.org    raise
1105863Snate@binkert.org
1116654Snate@binkert.org# Global Python includes
112955SN/Aimport itertools
1135396Ssaidi@eecs.umich.eduimport os
1145863Snate@binkert.orgimport re
1155863Snate@binkert.orgimport subprocess
1164202Sbinkertn@umich.eduimport sys
1175863Snate@binkert.org
1185863Snate@binkert.orgfrom os import mkdir, environ
1195863Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath
1205863Snate@binkert.orgfrom os.path import exists,  isdir, isfile
121955SN/Afrom os.path import join as joinpath, split as splitpath
1226654Snate@binkert.org
1235273Sstever@gmail.com# SCons includes
1245871Snate@binkert.orgimport SCons
1255273Sstever@gmail.comimport SCons.Node
1266655Snate@binkert.org
1278878Ssteve.reinhardt@amd.comextra_python_paths = [
1286655Snate@binkert.org    Dir('src/python').srcnode().abspath, # gem5 includes
1296655Snate@binkert.org    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1309219Spower.jg@gmail.com    ]
1316655Snate@binkert.org
1325871Snate@binkert.orgsys.path[1:1] = extra_python_paths
1336654Snate@binkert.org
1348947Sandreas.hansson@arm.comfrom m5.util import compareVersions, readCommand
1355396Ssaidi@eecs.umich.edufrom m5.util.terminal import get_termcap
1368120Sgblack@eecs.umich.edu
1378120Sgblack@eecs.umich.eduhelp_texts = {
1388120Sgblack@eecs.umich.edu    "options" : "",
1398120Sgblack@eecs.umich.edu    "global_vars" : "",
1408120Sgblack@eecs.umich.edu    "local_vars" : ""
1418120Sgblack@eecs.umich.edu}
1428120Sgblack@eecs.umich.edu
1438120Sgblack@eecs.umich.eduExport("help_texts")
1448879Ssteve.reinhardt@amd.com
1458879Ssteve.reinhardt@amd.com
1468879Ssteve.reinhardt@amd.com# There's a bug in scons in that (1) by default, the help texts from
1478879Ssteve.reinhardt@amd.com# AddOption() are supposed to be displayed when you type 'scons -h'
1488879Ssteve.reinhardt@amd.com# and (2) you can override the help displayed by 'scons -h' using the
1498879Ssteve.reinhardt@amd.com# Help() function, but these two features are incompatible: once
1508879Ssteve.reinhardt@amd.com# you've overridden the help text using Help(), there's no way to get
1518879Ssteve.reinhardt@amd.com# at the help texts from AddOptions.  See:
1528879Ssteve.reinhardt@amd.com#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1538879Ssteve.reinhardt@amd.com#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1548879Ssteve.reinhardt@amd.com# This hack lets us extract the help text from AddOptions and
1558879Ssteve.reinhardt@amd.com# re-inject it via Help().  Ideally someday this bug will be fixed and
1568879Ssteve.reinhardt@amd.com# we can just use AddOption directly.
1578120Sgblack@eecs.umich.edudef AddLocalOption(*args, **kwargs):
1588120Sgblack@eecs.umich.edu    col_width = 30
1598120Sgblack@eecs.umich.edu
1608120Sgblack@eecs.umich.edu    help = "  " + ", ".join(args)
1618120Sgblack@eecs.umich.edu    if "help" in kwargs:
1628120Sgblack@eecs.umich.edu        length = len(help)
1638120Sgblack@eecs.umich.edu        if length >= col_width:
1648120Sgblack@eecs.umich.edu            help += "\n" + " " * col_width
1658120Sgblack@eecs.umich.edu        else:
1668120Sgblack@eecs.umich.edu            help += " " * (col_width - length)
1678120Sgblack@eecs.umich.edu        help += kwargs["help"]
1688120Sgblack@eecs.umich.edu    help_texts["options"] += help + "\n"
1698120Sgblack@eecs.umich.edu
1708120Sgblack@eecs.umich.edu    AddOption(*args, **kwargs)
1718879Ssteve.reinhardt@amd.com
1728879Ssteve.reinhardt@amd.comAddLocalOption('--colors', dest='use_colors', action='store_true',
1738879Ssteve.reinhardt@amd.com               help="Add color to abbreviated scons output")
1748879Ssteve.reinhardt@amd.comAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1758879Ssteve.reinhardt@amd.com               help="Don't add color to abbreviated scons output")
1768879Ssteve.reinhardt@amd.comAddLocalOption('--default', dest='default', type='string', action='store',
1778879Ssteve.reinhardt@amd.com               help='Override which build_opts file to use for defaults')
1788879Ssteve.reinhardt@amd.comAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1799227Sandreas.hansson@arm.com               help='Disable style checking hooks')
1809227Sandreas.hansson@arm.comAddLocalOption('--no-lto', dest='no_lto', action='store_true',
1818879Ssteve.reinhardt@amd.com               help='Disable Link-Time Optimization for fast')
1828879Ssteve.reinhardt@amd.comAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1838879Ssteve.reinhardt@amd.com               help='Update test reference outputs')
1848879Ssteve.reinhardt@amd.comAddLocalOption('--verbose', dest='verbose', action='store_true',
1858120Sgblack@eecs.umich.edu               help='Print full tool command lines')
1868947Sandreas.hansson@arm.comAddLocalOption('--without-python', dest='without_python',
1877816Ssteve.reinhardt@amd.com               action='store_true',
1885871Snate@binkert.org               help='Build without Python configuration support')
1895871Snate@binkert.orgAddLocalOption('--without-tcmalloc', dest='without_tcmalloc',
1906121Snate@binkert.org               action='store_true',
1915871Snate@binkert.org               help='Disable linking against tcmalloc')
1925871Snate@binkert.orgAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true',
1939119Sandreas.hansson@arm.com               help='Build with Undefined Behavior Sanitizer if available')
1949396Sandreas.hansson@arm.com
1959396Sandreas.hansson@arm.comtermcap = get_termcap(GetOption('use_colors'))
196955SN/A
1979416SAndreas.Sandberg@ARM.com########################################################################
1989416SAndreas.Sandberg@ARM.com#
1999416SAndreas.Sandberg@ARM.com# Set up the main build environment.
2009416SAndreas.Sandberg@ARM.com#
2019416SAndreas.Sandberg@ARM.com########################################################################
2029416SAndreas.Sandberg@ARM.com
2039416SAndreas.Sandberg@ARM.com# export TERM so that clang reports errors in color
2045871Snate@binkert.orguse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
2055871Snate@binkert.org                 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC',
2069416SAndreas.Sandberg@ARM.com                 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ])
2079416SAndreas.Sandberg@ARM.com
2085871Snate@binkert.orguse_prefixes = [
209955SN/A    "M5",           # M5 configuration (e.g., path to kernels)
2106121Snate@binkert.org    "DISTCC_",      # distcc (distributed compiler wrapper) configuration
2118881Smarc.orr@gmail.com    "CCACHE_",      # ccache (caching compiler wrapper) configuration
2126121Snate@binkert.org    "CCC_",         # clang static analyzer configuration
2136121Snate@binkert.org    ]
2141533SN/A
2159239Sandreas.hansson@arm.comuse_env = {}
2169239Sandreas.hansson@arm.comfor key,val in os.environ.iteritems():
2179239Sandreas.hansson@arm.com    if key in use_vars or \
2189239Sandreas.hansson@arm.com            any([key.startswith(prefix) for prefix in use_prefixes]):
2199239Sandreas.hansson@arm.com        use_env[key] = val
2209239Sandreas.hansson@arm.com
2219239Sandreas.hansson@arm.commain = Environment(ENV=use_env)
2229239Sandreas.hansson@arm.commain.Decider('MD5-timestamp')
2239239Sandreas.hansson@arm.commain.root = Dir(".")         # The current directory (where this file lives).
2249239Sandreas.hansson@arm.commain.srcdir = Dir("src")     # The source directory
2259239Sandreas.hansson@arm.com
2269239Sandreas.hansson@arm.commain_dict_keys = main.Dictionary().keys()
2276655Snate@binkert.org
2286655Snate@binkert.org# Check that we have a C/C++ compiler
2296655Snate@binkert.orgif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
2306655Snate@binkert.org    print "No C++ compiler installed (package g++ on Ubuntu and RedHat)"
2315871Snate@binkert.org    Exit(1)
2325871Snate@binkert.org
2335863Snate@binkert.org# Check that swig is present
2345871Snate@binkert.orgif not 'SWIG' in main_dict_keys:
2358878Ssteve.reinhardt@amd.com    print "swig is not installed (package swig on Ubuntu and RedHat)"
2365871Snate@binkert.org    Exit(1)
2375871Snate@binkert.org
2385871Snate@binkert.org# add useful python code PYTHONPATH so it can be used by subprocesses
2395863Snate@binkert.org# as well
2406121Snate@binkert.orgmain.AppendENVPath('PYTHONPATH', extra_python_paths)
2415863Snate@binkert.org
2425871Snate@binkert.org########################################################################
2438336Ssteve.reinhardt@amd.com#
2448336Ssteve.reinhardt@amd.com# Mercurial Stuff.
2458336Ssteve.reinhardt@amd.com#
2468336Ssteve.reinhardt@amd.com# If the gem5 directory is a mercurial repository, we should do some
2474678Snate@binkert.org# extra things.
2488336Ssteve.reinhardt@amd.com#
2498336Ssteve.reinhardt@amd.com########################################################################
2508336Ssteve.reinhardt@amd.com
2514678Snate@binkert.orghgdir = main.root.Dir(".hg")
2524678Snate@binkert.org
2534678Snate@binkert.orgmercurial_style_message = """
2544678Snate@binkert.orgYou're missing the gem5 style hook, which automatically checks your code
2557827Snate@binkert.orgagainst the gem5 style rules on hg commit and qrefresh commands.  This
2567827Snate@binkert.orgscript will now install the hook in your .hg/hgrc file.
2578336Ssteve.reinhardt@amd.comPress enter to continue, or ctrl-c to abort: """
2584678Snate@binkert.org
2598336Ssteve.reinhardt@amd.commercurial_style_hook = """
2608336Ssteve.reinhardt@amd.com# The following lines were automatically added by gem5/SConstruct
2618336Ssteve.reinhardt@amd.com# to provide the gem5 style-checking hooks
2628336Ssteve.reinhardt@amd.com[extensions]
2638336Ssteve.reinhardt@amd.comstyle = %s/util/style.py
2648336Ssteve.reinhardt@amd.com
2655871Snate@binkert.org[hooks]
2665871Snate@binkert.orgpretxncommit.style = python:style.check_style
2678336Ssteve.reinhardt@amd.compre-qrefresh.style = python:style.check_style
2688336Ssteve.reinhardt@amd.com# End of SConstruct additions
2698336Ssteve.reinhardt@amd.com
2708336Ssteve.reinhardt@amd.com""" % (main.root.abspath)
2718336Ssteve.reinhardt@amd.com
2725871Snate@binkert.orgmercurial_lib_not_found = """
2738336Ssteve.reinhardt@amd.comMercurial libraries cannot be found, ignoring style hook.  If
2748336Ssteve.reinhardt@amd.comyou are a gem5 developer, please fix this and run the style
2758336Ssteve.reinhardt@amd.comhook. It is important.
2768336Ssteve.reinhardt@amd.com"""
2778336Ssteve.reinhardt@amd.com
2784678Snate@binkert.org# Check for style hook and prompt for installation if it's not there.
2795871Snate@binkert.org# Skip this if --ignore-style was specified, there's no .hg dir to
2804678Snate@binkert.org# install a hook in, or there's no interactive terminal to prompt.
2818336Ssteve.reinhardt@amd.comif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
2828336Ssteve.reinhardt@amd.com    style_hook = True
2838336Ssteve.reinhardt@amd.com    try:
2848336Ssteve.reinhardt@amd.com        from mercurial import ui
2858336Ssteve.reinhardt@amd.com        ui = ui.ui()
2868336Ssteve.reinhardt@amd.com        ui.readconfig(hgdir.File('hgrc').abspath)
2878336Ssteve.reinhardt@amd.com        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
2888336Ssteve.reinhardt@amd.com                     ui.config('hooks', 'pre-qrefresh.style', None)
2898336Ssteve.reinhardt@amd.com    except ImportError:
2908336Ssteve.reinhardt@amd.com        print mercurial_lib_not_found
2918336Ssteve.reinhardt@amd.com
2928336Ssteve.reinhardt@amd.com    if not style_hook:
2938336Ssteve.reinhardt@amd.com        print mercurial_style_message,
2948336Ssteve.reinhardt@amd.com        # continue unless user does ctrl-c/ctrl-d etc.
2958336Ssteve.reinhardt@amd.com        try:
2968336Ssteve.reinhardt@amd.com            raw_input()
2978336Ssteve.reinhardt@amd.com        except:
2985871Snate@binkert.org            print "Input exception, exiting scons.\n"
2996121Snate@binkert.org            sys.exit(1)
300955SN/A        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
301955SN/A        print "Adding style hook to", hgrc_path, "\n"
3022632Sstever@eecs.umich.edu        try:
3032632Sstever@eecs.umich.edu            hgrc = open(hgrc_path, 'a')
304955SN/A            hgrc.write(mercurial_style_hook)
305955SN/A            hgrc.close()
306955SN/A        except:
307955SN/A            print "Error updating", hgrc_path
3088878Ssteve.reinhardt@amd.com            sys.exit(1)
309955SN/A
3102632Sstever@eecs.umich.edu
3112632Sstever@eecs.umich.edu###################################################
3122632Sstever@eecs.umich.edu#
3132632Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
3142632Sstever@eecs.umich.edu# the target(s).
3152632Sstever@eecs.umich.edu#
3162632Sstever@eecs.umich.edu###################################################
3178268Ssteve.reinhardt@amd.com
3188268Ssteve.reinhardt@amd.com# Find default configuration & binary.
3198268Ssteve.reinhardt@amd.comDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
3208268Ssteve.reinhardt@amd.com
3218268Ssteve.reinhardt@amd.com# helper function: find last occurrence of element in list
3228268Ssteve.reinhardt@amd.comdef rfind(l, elt, offs = -1):
3238268Ssteve.reinhardt@amd.com    for i in range(len(l)+offs, 0, -1):
3242632Sstever@eecs.umich.edu        if l[i] == elt:
3252632Sstever@eecs.umich.edu            return i
3262632Sstever@eecs.umich.edu    raise ValueError, "element not found"
3272632Sstever@eecs.umich.edu
3288268Ssteve.reinhardt@amd.com# Take a list of paths (or SCons Nodes) and return a list with all
3292632Sstever@eecs.umich.edu# paths made absolute and ~-expanded.  Paths will be interpreted
3308268Ssteve.reinhardt@amd.com# relative to the launch directory unless a different root is provided
3318268Ssteve.reinhardt@amd.comdef makePathListAbsolute(path_list, root=GetLaunchDir()):
3328268Ssteve.reinhardt@amd.com    return [abspath(joinpath(root, expanduser(str(p))))
3338268Ssteve.reinhardt@amd.com            for p in path_list]
3343718Sstever@eecs.umich.edu
3352634Sstever@eecs.umich.edu# Each target must have 'build' in the interior of the path; the
3362634Sstever@eecs.umich.edu# directory below this will determine the build parameters.  For
3375863Snate@binkert.org# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
3382638Sstever@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it
3398268Ssteve.reinhardt@amd.com# follow 'build' in the build path.
3402632Sstever@eecs.umich.edu
3412632Sstever@eecs.umich.edu# The funky assignment to "[:]" is needed to replace the list contents
3422632Sstever@eecs.umich.edu# in place rather than reassign the symbol to a new list, which
3432632Sstever@eecs.umich.edu# doesn't work (obviously!).
3442632Sstever@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
3451858SN/A
3463716Sstever@eecs.umich.edu# Generate a list of the unique build roots and configs that the
3472638Sstever@eecs.umich.edu# collected targets reference.
3482638Sstever@eecs.umich.eduvariant_paths = []
3492638Sstever@eecs.umich.edubuild_root = None
3502638Sstever@eecs.umich.edufor t in BUILD_TARGETS:
3512638Sstever@eecs.umich.edu    path_dirs = t.split('/')
3522638Sstever@eecs.umich.edu    try:
3532638Sstever@eecs.umich.edu        build_top = rfind(path_dirs, 'build', -2)
3545863Snate@binkert.org    except:
3555863Snate@binkert.org        print "Error: no non-leaf 'build' dir found on target path", t
3565863Snate@binkert.org        Exit(1)
357955SN/A    this_build_root = joinpath('/',*path_dirs[:build_top+1])
3585341Sstever@gmail.com    if not build_root:
3595341Sstever@gmail.com        build_root = this_build_root
3605863Snate@binkert.org    else:
3617756SAli.Saidi@ARM.com        if this_build_root != build_root:
3625341Sstever@gmail.com            print "Error: build targets not under same build root\n"\
3636121Snate@binkert.org                  "  %s\n  %s" % (build_root, this_build_root)
3644494Ssaidi@eecs.umich.edu            Exit(1)
3656121Snate@binkert.org    variant_path = joinpath('/',*path_dirs[:build_top+2])
3661105SN/A    if variant_path not in variant_paths:
3672667Sstever@eecs.umich.edu        variant_paths.append(variant_path)
3682667Sstever@eecs.umich.edu
3692667Sstever@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there)
3702667Sstever@eecs.umich.eduif not isdir(build_root):
3716121Snate@binkert.org    mkdir(build_root)
3722667Sstever@eecs.umich.edumain['BUILDROOT'] = build_root
3735341Sstever@gmail.com
3745863Snate@binkert.orgExport('main')
3755341Sstever@gmail.com
3765341Sstever@gmail.commain.SConsignFile(joinpath(build_root, "sconsign"))
3775341Sstever@gmail.com
3788120Sgblack@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up
3795341Sstever@gmail.com# when you use emacs to edit a file in the target dir, as emacs moves
3808120Sgblack@eecs.umich.edu# file to file~ then copies to file, breaking the link.  Symbolic
3815341Sstever@gmail.com# (soft) links work better.
3828120Sgblack@eecs.umich.edumain.SetOption('duplicate', 'soft-copy')
3836121Snate@binkert.org
3846121Snate@binkert.org#
3858980Ssteve.reinhardt@amd.com# Set up global sticky variables... these are common to an entire build
3869396Sandreas.hansson@arm.com# tree (not specific to a particular build like ALPHA_SE)
3875397Ssaidi@eecs.umich.edu#
3885397Ssaidi@eecs.umich.edu
3897727SAli.Saidi@ARM.comglobal_vars_file = joinpath(build_root, 'variables.global')
3908268Ssteve.reinhardt@amd.com
3916168Snate@binkert.orgglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
3925341Sstever@gmail.com
3938120Sgblack@eecs.umich.eduglobal_vars.AddVariables(
3948120Sgblack@eecs.umich.edu    ('CC', 'C compiler', environ.get('CC', main['CC'])),
3958120Sgblack@eecs.umich.edu    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
3966814Sgblack@eecs.umich.edu    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
3975863Snate@binkert.org    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
3988120Sgblack@eecs.umich.edu    ('BATCH', 'Use batch pool for build and tests', False),
3995341Sstever@gmail.com    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
4005863Snate@binkert.org    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
4018268Ssteve.reinhardt@amd.com    ('EXTRAS', 'Add extra directories to the compilation', '')
4026121Snate@binkert.org    )
4036121Snate@binkert.org
4048268Ssteve.reinhardt@amd.com# Update main environment with values from ARGUMENTS & global_vars_file
4055742Snate@binkert.orgglobal_vars.Update(main)
4065742Snate@binkert.orghelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
4075341Sstever@gmail.com
4085742Snate@binkert.org# Save sticky variable settings back to current variables file
4095742Snate@binkert.orgglobal_vars.Save(global_vars_file, main)
4105341Sstever@gmail.com
4116017Snate@binkert.org# Parse EXTRAS variable to build list of all directories where we're
4126121Snate@binkert.org# look for sources etc.  This list is exported as extras_dir_list.
4136017Snate@binkert.orgbase_dir = main.srcdir.abspath
4147816Ssteve.reinhardt@amd.comif main['EXTRAS']:
4157756SAli.Saidi@ARM.com    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
4167756SAli.Saidi@ARM.comelse:
4177756SAli.Saidi@ARM.com    extras_dir_list = []
4187756SAli.Saidi@ARM.com
4197756SAli.Saidi@ARM.comExport('base_dir')
4207756SAli.Saidi@ARM.comExport('extras_dir_list')
4217756SAli.Saidi@ARM.com
4227756SAli.Saidi@ARM.com# the ext directory should be on the #includes path
4237816Ssteve.reinhardt@amd.commain.Append(CPPPATH=[Dir('ext')])
4247816Ssteve.reinhardt@amd.com
4257816Ssteve.reinhardt@amd.comdef strip_build_path(path, env):
4267816Ssteve.reinhardt@amd.com    path = str(path)
4277816Ssteve.reinhardt@amd.com    variant_base = env['BUILDROOT'] + os.path.sep
4287816Ssteve.reinhardt@amd.com    if path.startswith(variant_base):
4297816Ssteve.reinhardt@amd.com        path = path[len(variant_base):]
4307816Ssteve.reinhardt@amd.com    elif path.startswith('build/'):
4317816Ssteve.reinhardt@amd.com        path = path[6:]
4327816Ssteve.reinhardt@amd.com    return path
4337756SAli.Saidi@ARM.com
4347816Ssteve.reinhardt@amd.com# Generate a string of the form:
4357816Ssteve.reinhardt@amd.com#   common/path/prefix/src1, src2 -> tgt1, tgt2
4367816Ssteve.reinhardt@amd.com# to print while building.
4377816Ssteve.reinhardt@amd.comclass Transform(object):
4387816Ssteve.reinhardt@amd.com    # all specific color settings should be here and nowhere else
4397816Ssteve.reinhardt@amd.com    tool_color = termcap.Normal
4407816Ssteve.reinhardt@amd.com    pfx_color = termcap.Yellow
4417816Ssteve.reinhardt@amd.com    srcs_color = termcap.Yellow + termcap.Bold
4427816Ssteve.reinhardt@amd.com    arrow_color = termcap.Blue + termcap.Bold
4437816Ssteve.reinhardt@amd.com    tgts_color = termcap.Yellow + termcap.Bold
4447816Ssteve.reinhardt@amd.com
4457816Ssteve.reinhardt@amd.com    def __init__(self, tool, max_sources=99):
4467816Ssteve.reinhardt@amd.com        self.format = self.tool_color + (" [%8s] " % tool) \
4477816Ssteve.reinhardt@amd.com                      + self.pfx_color + "%s" \
4487816Ssteve.reinhardt@amd.com                      + self.srcs_color + "%s" \
4497816Ssteve.reinhardt@amd.com                      + self.arrow_color + " -> " \
4507816Ssteve.reinhardt@amd.com                      + self.tgts_color + "%s" \
4517816Ssteve.reinhardt@amd.com                      + termcap.Normal
4527816Ssteve.reinhardt@amd.com        self.max_sources = max_sources
4537816Ssteve.reinhardt@amd.com
4547816Ssteve.reinhardt@amd.com    def __call__(self, target, source, env, for_signature=None):
4557816Ssteve.reinhardt@amd.com        # truncate source list according to max_sources param
4567816Ssteve.reinhardt@amd.com        source = source[0:self.max_sources]
4577816Ssteve.reinhardt@amd.com        def strip(f):
4587816Ssteve.reinhardt@amd.com            return strip_build_path(str(f), env)
4597816Ssteve.reinhardt@amd.com        if len(source) > 0:
4607816Ssteve.reinhardt@amd.com            srcs = map(strip, source)
4617816Ssteve.reinhardt@amd.com        else:
4627816Ssteve.reinhardt@amd.com            srcs = ['']
4637816Ssteve.reinhardt@amd.com        tgts = map(strip, target)
4647816Ssteve.reinhardt@amd.com        # surprisingly, os.path.commonprefix is a dumb char-by-char string
4657816Ssteve.reinhardt@amd.com        # operation that has nothing to do with paths.
4667816Ssteve.reinhardt@amd.com        com_pfx = os.path.commonprefix(srcs + tgts)
4677816Ssteve.reinhardt@amd.com        com_pfx_len = len(com_pfx)
4687816Ssteve.reinhardt@amd.com        if com_pfx:
4697816Ssteve.reinhardt@amd.com            # do some cleanup and sanity checking on common prefix
4707816Ssteve.reinhardt@amd.com            if com_pfx[-1] == ".":
4717816Ssteve.reinhardt@amd.com                # prefix matches all but file extension: ok
4727816Ssteve.reinhardt@amd.com                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
4737816Ssteve.reinhardt@amd.com                com_pfx = com_pfx[0:-1]
4747816Ssteve.reinhardt@amd.com            elif com_pfx[-1] == "/":
4757816Ssteve.reinhardt@amd.com                # common prefix is directory path: OK
4767816Ssteve.reinhardt@amd.com                pass
4777816Ssteve.reinhardt@amd.com            else:
4787816Ssteve.reinhardt@amd.com                src0_len = len(srcs[0])
4797816Ssteve.reinhardt@amd.com                tgt0_len = len(tgts[0])
4807816Ssteve.reinhardt@amd.com                if src0_len == com_pfx_len:
4817816Ssteve.reinhardt@amd.com                    # source is a substring of target, OK
4827816Ssteve.reinhardt@amd.com                    pass
4837816Ssteve.reinhardt@amd.com                elif tgt0_len == com_pfx_len:
4847816Ssteve.reinhardt@amd.com                    # target is a substring of source, need to back up to
4857816Ssteve.reinhardt@amd.com                    # avoid empty string on RHS of arrow
4867816Ssteve.reinhardt@amd.com                    sep_idx = com_pfx.rfind(".")
4877816Ssteve.reinhardt@amd.com                    if sep_idx != -1:
4887816Ssteve.reinhardt@amd.com                        com_pfx = com_pfx[0:sep_idx]
4897816Ssteve.reinhardt@amd.com                    else:
4907816Ssteve.reinhardt@amd.com                        com_pfx = ''
4917816Ssteve.reinhardt@amd.com                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
4927816Ssteve.reinhardt@amd.com                    # still splitting at file extension: ok
4937816Ssteve.reinhardt@amd.com                    pass
4947816Ssteve.reinhardt@amd.com                else:
4958947Sandreas.hansson@arm.com                    # probably a fluke; ignore it
4968947Sandreas.hansson@arm.com                    com_pfx = ''
4977756SAli.Saidi@ARM.com        # recalculate length in case com_pfx was modified
4988120Sgblack@eecs.umich.edu        com_pfx_len = len(com_pfx)
4997756SAli.Saidi@ARM.com        def fmt(files):
5007756SAli.Saidi@ARM.com            f = map(lambda s: s[com_pfx_len:], files)
5017756SAli.Saidi@ARM.com            return ', '.join(f)
5027756SAli.Saidi@ARM.com        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
5037816Ssteve.reinhardt@amd.com
5047816Ssteve.reinhardt@amd.comExport('Transform')
5057816Ssteve.reinhardt@amd.com
5067816Ssteve.reinhardt@amd.com# enable the regression script to use the termcap
5077816Ssteve.reinhardt@amd.commain['TERMCAP'] = termcap
5087816Ssteve.reinhardt@amd.com
5097816Ssteve.reinhardt@amd.comif GetOption('verbose'):
5107816Ssteve.reinhardt@amd.com    def MakeAction(action, string, *args, **kwargs):
5117816Ssteve.reinhardt@amd.com        return Action(action, *args, **kwargs)
5127816Ssteve.reinhardt@amd.comelse:
5137756SAli.Saidi@ARM.com    MakeAction = Action
5147756SAli.Saidi@ARM.com    main['CCCOMSTR']        = Transform("CC")
5159227Sandreas.hansson@arm.com    main['CXXCOMSTR']       = Transform("CXX")
5169227Sandreas.hansson@arm.com    main['ASCOMSTR']        = Transform("AS")
5179227Sandreas.hansson@arm.com    main['SWIGCOMSTR']      = Transform("SWIG")
5189227Sandreas.hansson@arm.com    main['ARCOMSTR']        = Transform("AR", 0)
5199590Sandreas@sandberg.pp.se    main['LINKCOMSTR']      = Transform("LINK", 0)
5209590Sandreas@sandberg.pp.se    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
5219590Sandreas@sandberg.pp.se    main['M4COMSTR']        = Transform("M4")
5229590Sandreas@sandberg.pp.se    main['SHCCCOMSTR']      = Transform("SHCC")
5239590Sandreas@sandberg.pp.se    main['SHCXXCOMSTR']     = Transform("SHCXX")
5249590Sandreas@sandberg.pp.seExport('MakeAction')
5256654Snate@binkert.org
5266654Snate@binkert.org# Initialize the Link-Time Optimization (LTO) flags
5275871Snate@binkert.orgmain['LTO_CCFLAGS'] = []
5286121Snate@binkert.orgmain['LTO_LDFLAGS'] = []
5298946Sandreas.hansson@arm.com
5309419Sandreas.hansson@arm.com# According to the readme, tcmalloc works best if the compiler doesn't
5313940Ssaidi@eecs.umich.edu# assume that we're using the builtin malloc and friends. These flags
5323918Ssaidi@eecs.umich.edu# are compiler-specific, so we need to set them after we detect which
5333918Ssaidi@eecs.umich.edu# compiler we're using.
5341858SN/Amain['TCMALLOC_CCFLAGS'] = []
5359556Sandreas.hansson@arm.com
5369556Sandreas.hansson@arm.comCXX_version = readCommand([main['CXX'],'--version'], exception=False)
5379556Sandreas.hansson@arm.comCXX_V = readCommand([main['CXX'],'-V'], exception=False)
5389556Sandreas.hansson@arm.com
5399556Sandreas.hansson@arm.commain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
5409556Sandreas.hansson@arm.commain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
5419556Sandreas.hansson@arm.comif main['GCC'] + main['CLANG'] > 1:
5429556Sandreas.hansson@arm.com    print 'Error: How can we have two at the same time?'
5439556Sandreas.hansson@arm.com    Exit(1)
5449556Sandreas.hansson@arm.com
5459556Sandreas.hansson@arm.com# Set up default C++ compiler flags
5469556Sandreas.hansson@arm.comif main['GCC'] or main['CLANG']:
5479556Sandreas.hansson@arm.com    # As gcc and clang share many flags, do the common parts here
5489556Sandreas.hansson@arm.com    main.Append(CCFLAGS=['-pipe'])
5499556Sandreas.hansson@arm.com    main.Append(CCFLAGS=['-fno-strict-aliasing'])
5509556Sandreas.hansson@arm.com    # Enable -Wall and then disable the few warnings that we
5519556Sandreas.hansson@arm.com    # consistently violate
5529556Sandreas.hansson@arm.com    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
5539556Sandreas.hansson@arm.com    # We always compile using C++11, but only gcc >= 4.7 and clang 3.1
5549556Sandreas.hansson@arm.com    # actually use that name, so we stick with c++0x
5559556Sandreas.hansson@arm.com    main.Append(CXXFLAGS=['-std=c++0x'])
5569556Sandreas.hansson@arm.com    # Add selected sanity checks from -Wextra
5579556Sandreas.hansson@arm.com    main.Append(CXXFLAGS=['-Wmissing-field-initializers',
5589556Sandreas.hansson@arm.com                          '-Woverloaded-virtual'])
5599556Sandreas.hansson@arm.comelse:
5609556Sandreas.hansson@arm.com    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
5619556Sandreas.hansson@arm.com    print "Don't know what compiler options to use for your compiler."
5629556Sandreas.hansson@arm.com    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
5639556Sandreas.hansson@arm.com    print termcap.Yellow + '       version:' + termcap.Normal,
5649556Sandreas.hansson@arm.com    if not CXX_version:
5659556Sandreas.hansson@arm.com        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
5669556Sandreas.hansson@arm.com               termcap.Normal
5676121Snate@binkert.org    else:
5689420Sandreas.hansson@arm.com        print CXX_version.replace('\n', '<nl>')
5699420Sandreas.hansson@arm.com    print "       If you're trying to use a compiler other than GCC"
5709420Sandreas.hansson@arm.com    print "       or clang, there appears to be something wrong with your"
5719420Sandreas.hansson@arm.com    print "       environment."
5729420Sandreas.hansson@arm.com    print "       "
5739420Sandreas.hansson@arm.com    print "       If you are trying to use a compiler other than those listed"
5749420Sandreas.hansson@arm.com    print "       above you will need to ease fix SConstruct and "
5759420Sandreas.hansson@arm.com    print "       src/SConscript to support that compiler."
5769420Sandreas.hansson@arm.com    Exit(1)
5779420Sandreas.hansson@arm.com
5789420Sandreas.hansson@arm.comif main['GCC']:
5797618SAli.Saidi@arm.com    # Check for a supported version of gcc. >= 4.6 is chosen for its
5807618SAli.Saidi@arm.com    # level of c++11 support. See
5817618SAli.Saidi@arm.com    # http://gcc.gnu.org/projects/cxx0x.html for details. 4.6 is also
5827739Sgblack@eecs.umich.edu    # the first version with proper LTO support.
5839227Sandreas.hansson@arm.com    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
5849227Sandreas.hansson@arm.com    if compareVersions(gcc_version, "4.6") < 0:
5859227Sandreas.hansson@arm.com        print 'Error: gcc version 4.6 or newer required.'
5869227Sandreas.hansson@arm.com        print '       Installed version:', gcc_version
5879227Sandreas.hansson@arm.com        Exit(1)
5889227Sandreas.hansson@arm.com
5899227Sandreas.hansson@arm.com    main['GCC_VERSION'] = gcc_version
5909227Sandreas.hansson@arm.com
5919227Sandreas.hansson@arm.com    # gcc from version 4.8 and above generates "rep; ret" instructions
5929227Sandreas.hansson@arm.com    # to avoid performance penalties on certain AMD chips. Older
5939227Sandreas.hansson@arm.com    # assemblers detect this as an error, "Error: expecting string
5949227Sandreas.hansson@arm.com    # instruction after `rep'"
5959227Sandreas.hansson@arm.com    if compareVersions(gcc_version, "4.8") > 0:
5969227Sandreas.hansson@arm.com        as_version = readCommand([main['AS'], '-v', '/dev/null'],
5979227Sandreas.hansson@arm.com                                 exception=False).split()
5989227Sandreas.hansson@arm.com
5999227Sandreas.hansson@arm.com        if not as_version or compareVersions(as_version[-1], "2.23") < 0:
6009227Sandreas.hansson@arm.com            print termcap.Yellow + termcap.Bold + \
6019590Sandreas@sandberg.pp.se                'Warning: This combination of gcc and binutils have' + \
6029590Sandreas@sandberg.pp.se                ' known incompatibilities.\n' + \
6039590Sandreas@sandberg.pp.se                '         If you encounter build problems, please update ' + \
6048737Skoansin.tan@gmail.com                'binutils to 2.23.' + \
6059420Sandreas.hansson@arm.com                termcap.Normal
6069420Sandreas.hansson@arm.com
6079420Sandreas.hansson@arm.com    # Make sure we warn if the user has requested to compile with the
6088737Skoansin.tan@gmail.com    # Undefined Benahvior Sanitizer and this version of gcc does not
6098737Skoansin.tan@gmail.com    # support it.
6108737Skoansin.tan@gmail.com    if GetOption('with_ubsan') and \
6118737Skoansin.tan@gmail.com            compareVersions(gcc_version, '4.9') < 0:
6128737Skoansin.tan@gmail.com        print termcap.Yellow + termcap.Bold + \
6138737Skoansin.tan@gmail.com            'Warning: UBSan is only supported using gcc 4.9 and later.' + \
6148737Skoansin.tan@gmail.com            termcap.Normal
6158737Skoansin.tan@gmail.com
6168737Skoansin.tan@gmail.com    # Add the appropriate Link-Time Optimization (LTO) flags
6178737Skoansin.tan@gmail.com    # unless LTO is explicitly turned off. Note that these flags
6188737Skoansin.tan@gmail.com    # are only used by the fast target.
6198737Skoansin.tan@gmail.com    if not GetOption('no_lto'):
6209556Sandreas.hansson@arm.com        # Pass the LTO flag when compiling to produce GIMPLE
6219556Sandreas.hansson@arm.com        # output, we merely create the flags here and only append
6229556Sandreas.hansson@arm.com        # them later
6239556Sandreas.hansson@arm.com        main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
6249556Sandreas.hansson@arm.com
6259556Sandreas.hansson@arm.com        # Use the same amount of jobs for LTO as we are running
6269556Sandreas.hansson@arm.com        # scons with
6279556Sandreas.hansson@arm.com        main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
6289556Sandreas.hansson@arm.com
6299556Sandreas.hansson@arm.com    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
6309590Sandreas@sandberg.pp.se                                  '-fno-builtin-realloc', '-fno-builtin-free'])
6319590Sandreas@sandberg.pp.se
6329420Sandreas.hansson@arm.comelif main['CLANG']:
6339420Sandreas.hansson@arm.com    # Check for a supported version of clang, >= 3.0 is needed to
6349420Sandreas.hansson@arm.com    # support similar features as gcc 4.6. See
6359420Sandreas.hansson@arm.com    # http://clang.llvm.org/cxx_status.html for details
6369420Sandreas.hansson@arm.com    clang_version_re = re.compile(".* version (\d+\.\d+)")
6379420Sandreas.hansson@arm.com    clang_version_match = clang_version_re.search(CXX_version)
6389420Sandreas.hansson@arm.com    if (clang_version_match):
6399420Sandreas.hansson@arm.com        clang_version = clang_version_match.groups()[0]
6409420Sandreas.hansson@arm.com        if compareVersions(clang_version, "3.0") < 0:
6419420Sandreas.hansson@arm.com            print 'Error: clang version 3.0 or newer required.'
6428946Sandreas.hansson@arm.com            print '       Installed version:', clang_version
6433918Ssaidi@eecs.umich.edu            Exit(1)
6449068SAli.Saidi@ARM.com    else:
6459068SAli.Saidi@ARM.com        print 'Error: Unable to determine clang version.'
6469068SAli.Saidi@ARM.com        Exit(1)
6479068SAli.Saidi@ARM.com
6489068SAli.Saidi@ARM.com    # clang has a few additional warnings that we disable,
6499068SAli.Saidi@ARM.com    # tautological comparisons are allowed due to unsigned integers
6509068SAli.Saidi@ARM.com    # being compared to constants that happen to be 0, and extraneous
6519068SAli.Saidi@ARM.com    # parantheses are allowed due to Ruby's printing of the AST,
6529068SAli.Saidi@ARM.com    # finally self assignments are allowed as the generated CPU code
6539419Sandreas.hansson@arm.com    # is relying on this
6549068SAli.Saidi@ARM.com    main.Append(CCFLAGS=['-Wno-tautological-compare',
6559068SAli.Saidi@ARM.com                         '-Wno-parentheses',
6569068SAli.Saidi@ARM.com                         '-Wno-self-assign',
6579068SAli.Saidi@ARM.com                         # Some versions of libstdc++ (4.8?) seem to
6589068SAli.Saidi@ARM.com                         # use struct hash and class hash
6599068SAli.Saidi@ARM.com                         # interchangeably.
6603918Ssaidi@eecs.umich.edu                         '-Wno-mismatched-tags',
6613918Ssaidi@eecs.umich.edu                         ])
6626157Snate@binkert.org
6636157Snate@binkert.org    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
6646157Snate@binkert.org
6656157Snate@binkert.org    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
6665397Ssaidi@eecs.umich.edu    # opposed to libstdc++, as the later is dated.
6675397Ssaidi@eecs.umich.edu    if sys.platform == "darwin":
6686121Snate@binkert.org        main.Append(CXXFLAGS=['-stdlib=libc++'])
6696121Snate@binkert.org        main.Append(LIBS=['c++'])
6706121Snate@binkert.org
6716121Snate@binkert.orgelse:
6726121Snate@binkert.org    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
6736121Snate@binkert.org    print "Don't know what compiler options to use for your compiler."
6745397Ssaidi@eecs.umich.edu    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
6751851SN/A    print termcap.Yellow + '       version:' + termcap.Normal,
6761851SN/A    if not CXX_version:
6777739Sgblack@eecs.umich.edu        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
678955SN/A               termcap.Normal
6799396Sandreas.hansson@arm.com    else:
6809396Sandreas.hansson@arm.com        print CXX_version.replace('\n', '<nl>')
6819396Sandreas.hansson@arm.com    print "       If you're trying to use a compiler other than GCC"
6829396Sandreas.hansson@arm.com    print "       or clang, there appears to be something wrong with your"
6839396Sandreas.hansson@arm.com    print "       environment."
6849396Sandreas.hansson@arm.com    print "       "
6859396Sandreas.hansson@arm.com    print "       If you are trying to use a compiler other than those listed"
6869396Sandreas.hansson@arm.com    print "       above you will need to ease fix SConstruct and "
6879396Sandreas.hansson@arm.com    print "       src/SConscript to support that compiler."
6889396Sandreas.hansson@arm.com    Exit(1)
6899396Sandreas.hansson@arm.com
6909396Sandreas.hansson@arm.com# Set up common yacc/bison flags (needed for Ruby)
6919396Sandreas.hansson@arm.commain['YACCFLAGS'] = '-d'
6929396Sandreas.hansson@arm.commain['YACCHXXFILESUFFIX'] = '.hh'
6939396Sandreas.hansson@arm.com
6949396Sandreas.hansson@arm.com# Do this after we save setting back, or else we'll tack on an
6959477Sandreas.hansson@arm.com# extra 'qdo' every time we run scons.
6969477Sandreas.hansson@arm.comif main['BATCH']:
6979477Sandreas.hansson@arm.com    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
6989477Sandreas.hansson@arm.com    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
6999477Sandreas.hansson@arm.com    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
7009477Sandreas.hansson@arm.com    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
7019477Sandreas.hansson@arm.com    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
7029477Sandreas.hansson@arm.com
7039477Sandreas.hansson@arm.comif sys.platform == 'cygwin':
7049477Sandreas.hansson@arm.com    # cygwin has some header file issues...
7059477Sandreas.hansson@arm.com    main.Append(CCFLAGS=["-Wno-uninitialized"])
7069477Sandreas.hansson@arm.com
7079477Sandreas.hansson@arm.com# Check for the protobuf compiler
7089477Sandreas.hansson@arm.comprotoc_version = readCommand([main['PROTOC'], '--version'],
7099477Sandreas.hansson@arm.com                             exception='').split()
7109477Sandreas.hansson@arm.com
7119477Sandreas.hansson@arm.com# First two words should be "libprotoc x.y.z"
7129477Sandreas.hansson@arm.comif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
7139477Sandreas.hansson@arm.com    print termcap.Yellow + termcap.Bold + \
7149477Sandreas.hansson@arm.com        'Warning: Protocol buffer compiler (protoc) not found.\n' + \
7159477Sandreas.hansson@arm.com        '         Please install protobuf-compiler for tracing support.' + \
7169477Sandreas.hansson@arm.com        termcap.Normal
7179396Sandreas.hansson@arm.com    main['PROTOC'] = False
7183053Sstever@eecs.umich.eduelse:
7196121Snate@binkert.org    # Based on the availability of the compress stream wrappers,
7203053Sstever@eecs.umich.edu    # require 2.1.0
7213053Sstever@eecs.umich.edu    min_protoc_version = '2.1.0'
7223053Sstever@eecs.umich.edu    if compareVersions(protoc_version[1], min_protoc_version) < 0:
7233053Sstever@eecs.umich.edu        print termcap.Yellow + termcap.Bold + \
7243053Sstever@eecs.umich.edu            'Warning: protoc version', min_protoc_version, \
7259072Sandreas.hansson@arm.com            'or newer required.\n' + \
7263053Sstever@eecs.umich.edu            '         Installed version:', protoc_version[1], \
7274742Sstever@eecs.umich.edu            termcap.Normal
7284742Sstever@eecs.umich.edu        main['PROTOC'] = False
7293053Sstever@eecs.umich.edu    else:
7303053Sstever@eecs.umich.edu        # Attempt to determine the appropriate include path and
7313053Sstever@eecs.umich.edu        # library path using pkg-config, that means we also need to
7328960Ssteve.reinhardt@amd.com        # check for pkg-config. Note that it is possible to use
7336654Snate@binkert.org        # protobuf without the involvement of pkg-config. Later on we
7343053Sstever@eecs.umich.edu        # check go a library config check and at that point the test
7353053Sstever@eecs.umich.edu        # will fail if libprotobuf cannot be found.
7363053Sstever@eecs.umich.edu        if readCommand(['pkg-config', '--version'], exception=''):
7373053Sstever@eecs.umich.edu            try:
7389740SAli.Saidi@ARM.com                # Attempt to establish what linking flags to add for protobuf
7399585Sandreas@sandberg.pp.se                # using pkg-config
7409740SAli.Saidi@ARM.com                main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
7419585Sandreas@sandberg.pp.se            except:
7429585Sandreas@sandberg.pp.se                print termcap.Yellow + termcap.Bold + \
7439585Sandreas@sandberg.pp.se                    'Warning: pkg-config could not get protobuf flags.' + \
7449585Sandreas@sandberg.pp.se                    termcap.Normal
7459585Sandreas@sandberg.pp.se
7469585Sandreas@sandberg.pp.se# Check for SWIG
7472667Sstever@eecs.umich.eduif not main.has_key('SWIG'):
7484554Sbinkertn@umich.edu    print 'Error: SWIG utility not found.'
7496121Snate@binkert.org    print '       Please install (see http://www.swig.org) and retry.'
7502667Sstever@eecs.umich.edu    Exit(1)
7514554Sbinkertn@umich.edu
7524554Sbinkertn@umich.edu# Check for appropriate SWIG version
7534554Sbinkertn@umich.eduswig_version = readCommand([main['SWIG'], '-version'], exception='').split()
7546121Snate@binkert.org# First 3 words should be "SWIG Version x.y.z"
7554554Sbinkertn@umich.eduif len(swig_version) < 3 or \
7564554Sbinkertn@umich.edu        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
7574554Sbinkertn@umich.edu    print 'Error determining SWIG version.'
7584781Snate@binkert.org    Exit(1)
7594554Sbinkertn@umich.edu
7604554Sbinkertn@umich.edumin_swig_version = '2.0.4'
7612667Sstever@eecs.umich.eduif compareVersions(swig_version[2], min_swig_version) < 0:
7624554Sbinkertn@umich.edu    print 'Error: SWIG version', min_swig_version, 'or newer required.'
7634554Sbinkertn@umich.edu    print '       Installed version:', swig_version[2]
7644554Sbinkertn@umich.edu    Exit(1)
7654554Sbinkertn@umich.edu
7662667Sstever@eecs.umich.edu# Check for known incompatibilities. The standard library shipped with
7674554Sbinkertn@umich.edu# gcc >= 4.9 does not play well with swig versions prior to 3.0
7682667Sstever@eecs.umich.eduif main['GCC'] and compareVersions(gcc_version, '4.9') >= 0 and \
7694554Sbinkertn@umich.edu        compareVersions(swig_version[2], '3.0') < 0:
7706121Snate@binkert.org    print termcap.Yellow + termcap.Bold + \
7712667Sstever@eecs.umich.edu        'Warning: This combination of gcc and swig have' + \
7725522Snate@binkert.org        ' known incompatibilities.\n' + \
7735522Snate@binkert.org        '         If you encounter build problems, please update ' + \
7745522Snate@binkert.org        'swig to 3.0 or later.' + \
7755522Snate@binkert.org        termcap.Normal
7765522Snate@binkert.org
7775522Snate@binkert.org# Set up SWIG flags & scanner
7785522Snate@binkert.orgswig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
7795522Snate@binkert.orgmain.Append(SWIGFLAGS=swig_flags)
7805522Snate@binkert.org
7815522Snate@binkert.org# Check for 'timeout' from GNU coreutils.  If present, regressions
7825522Snate@binkert.org# will be run with a time limit.
7835522Snate@binkert.orgTIMEOUT_version = readCommand(['timeout', '--version'], exception=False)
7845522Snate@binkert.orgmain['TIMEOUT'] = TIMEOUT_version and TIMEOUT_version.find('timeout') == 0
7855522Snate@binkert.org
7865522Snate@binkert.org# filter out all existing swig scanners, they mess up the dependency
7875522Snate@binkert.org# stuff for some reason
7885522Snate@binkert.orgscanners = []
7895522Snate@binkert.orgfor scanner in main['SCANNERS']:
7905522Snate@binkert.org    skeys = scanner.skeys
7915522Snate@binkert.org    if skeys == '.i':
7925522Snate@binkert.org        continue
7935522Snate@binkert.org
7945522Snate@binkert.org    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
7955522Snate@binkert.org        continue
7965522Snate@binkert.org
7975522Snate@binkert.org    scanners.append(scanner)
7982638Sstever@eecs.umich.edu
7992638Sstever@eecs.umich.edu# add the new swig scanner that we like better
8006121Snate@binkert.orgfrom SCons.Scanner import ClassicCPP as CPPScanner
8013716Sstever@eecs.umich.eduswig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
8025522Snate@binkert.orgscanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
8039420Sandreas.hansson@arm.com
8045522Snate@binkert.org# replace the scanners list that has what we want
8055522Snate@binkert.orgmain['SCANNERS'] = scanners
8065522Snate@binkert.org
8075522Snate@binkert.org# Add a custom Check function to the Configure context so that we can
8081858SN/A# figure out if the compiler adds leading underscores to global
8095227Ssaidi@eecs.umich.edu# variables.  This is needed for the autogenerated asm files that we
8105227Ssaidi@eecs.umich.edu# use for embedding the python code.
8115227Ssaidi@eecs.umich.edudef CheckLeading(context):
8125227Ssaidi@eecs.umich.edu    context.Message("Checking for leading underscore in global variables...")
8136654Snate@binkert.org    # 1) Define a global variable called x from asm so the C compiler
8146654Snate@binkert.org    #    won't change the symbol at all.
8157769SAli.Saidi@ARM.com    # 2) Declare that variable.
8167769SAli.Saidi@ARM.com    # 3) Use the variable
8177769SAli.Saidi@ARM.com    #
8187769SAli.Saidi@ARM.com    # If the compiler prepends an underscore, this will successfully
8195227Ssaidi@eecs.umich.edu    # link because the external symbol 'x' will be called '_x' which
8205227Ssaidi@eecs.umich.edu    # was defined by the asm statement.  If the compiler does not
8215227Ssaidi@eecs.umich.edu    # prepend an underscore, this will not successfully link because
8225204Sstever@gmail.com    # '_x' will have been defined by assembly, while the C portion of
8235204Sstever@gmail.com    # the code will be trying to use 'x'
8245204Sstever@gmail.com    ret = context.TryLink('''
8255204Sstever@gmail.com        asm(".globl _x; _x: .byte 0");
8265204Sstever@gmail.com        extern int x;
8275204Sstever@gmail.com        int main() { return x; }
8285204Sstever@gmail.com        ''', extension=".c")
8295204Sstever@gmail.com    context.env.Append(LEADING_UNDERSCORE=ret)
8305204Sstever@gmail.com    context.Result(ret)
8315204Sstever@gmail.com    return ret
8325204Sstever@gmail.com
8335204Sstever@gmail.com# Add a custom Check function to test for structure members.
8345204Sstever@gmail.comdef CheckMember(context, include, decl, member, include_quotes="<>"):
8355204Sstever@gmail.com    context.Message("Checking for member %s in %s..." %
8365204Sstever@gmail.com                    (member, decl))
8375204Sstever@gmail.com    text = """
8385204Sstever@gmail.com#include %(header)s
8396121Snate@binkert.orgint main(){
8405204Sstever@gmail.com  %(decl)s test;
8417727SAli.Saidi@ARM.com  (void)test.%(member)s;
8427727SAli.Saidi@ARM.com  return 0;
8437727SAli.Saidi@ARM.com};
8447727SAli.Saidi@ARM.com""" % { "header" : include_quotes[0] + include + include_quotes[1],
8457727SAli.Saidi@ARM.com        "decl" : decl,
8469812Sandreas.hansson@arm.com        "member" : member,
8479812Sandreas.hansson@arm.com        }
8489812Sandreas.hansson@arm.com
8499812Sandreas.hansson@arm.com    ret = context.TryCompile(text, extension=".cc")
8509812Sandreas.hansson@arm.com    context.Result(ret)
8519812Sandreas.hansson@arm.com    return ret
8529812Sandreas.hansson@arm.com
8539812Sandreas.hansson@arm.com# Platform-specific configuration.  Note again that we assume that all
8549812Sandreas.hansson@arm.com# builds under a given build root run on the same host platform.
8559812Sandreas.hansson@arm.comconf = Configure(main,
8569812Sandreas.hansson@arm.com                 conf_dir = joinpath(build_root, '.scons_config'),
8579812Sandreas.hansson@arm.com                 log_file = joinpath(build_root, 'scons_config.log'),
8589812Sandreas.hansson@arm.com                 custom_tests = {
8599812Sandreas.hansson@arm.com        'CheckLeading' : CheckLeading,
8609812Sandreas.hansson@arm.com        'CheckMember' : CheckMember,
8619812Sandreas.hansson@arm.com        })
8629812Sandreas.hansson@arm.com
8639812Sandreas.hansson@arm.com# Check for leading underscores.  Don't really need to worry either
8649812Sandreas.hansson@arm.com# way so don't need to check the return code.
8659812Sandreas.hansson@arm.comconf.CheckLeading()
8669812Sandreas.hansson@arm.com
8679812Sandreas.hansson@arm.com# Check if we should compile a 64 bit binary on Mac OS X/Darwin
8689812Sandreas.hansson@arm.comtry:
8699812Sandreas.hansson@arm.com    import platform
8707727SAli.Saidi@ARM.com    uname = platform.uname()
8715863Snate@binkert.org    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
8723118Sstever@eecs.umich.edu        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
8735863Snate@binkert.org            main.Append(CCFLAGS=['-arch', 'x86_64'])
8749239Sandreas.hansson@arm.com            main.Append(CFLAGS=['-arch', 'x86_64'])
8753118Sstever@eecs.umich.edu            main.Append(LINKFLAGS=['-arch', 'x86_64'])
8763118Sstever@eecs.umich.edu            main.Append(ASFLAGS=['-arch', 'x86_64'])
8775863Snate@binkert.orgexcept:
8785863Snate@binkert.org    pass
8795863Snate@binkert.org
8805863Snate@binkert.org# Recent versions of scons substitute a "Null" object for Configure()
8813118Sstever@eecs.umich.edu# when configuration isn't necessary, e.g., if the "--help" option is
8823483Ssaidi@eecs.umich.edu# present.  Unfortuantely this Null object always returns false,
8833494Ssaidi@eecs.umich.edu# breaking all our configuration checks.  We replace it with our own
8843494Ssaidi@eecs.umich.edu# more optimistic null object that returns True instead.
8853483Ssaidi@eecs.umich.eduif not conf:
8863483Ssaidi@eecs.umich.edu    def NullCheck(*args, **kwargs):
8873483Ssaidi@eecs.umich.edu        return True
8883053Sstever@eecs.umich.edu
8893053Sstever@eecs.umich.edu    class NullConf:
8903918Ssaidi@eecs.umich.edu        def __init__(self, env):
8913053Sstever@eecs.umich.edu            self.env = env
8923053Sstever@eecs.umich.edu        def Finish(self):
8933053Sstever@eecs.umich.edu            return self.env
8943053Sstever@eecs.umich.edu        def __getattr__(self, mname):
8953053Sstever@eecs.umich.edu            return NullCheck
8969396Sandreas.hansson@arm.com
8979396Sandreas.hansson@arm.com    conf = NullConf(main)
8989396Sandreas.hansson@arm.com
8999396Sandreas.hansson@arm.com# Cache build files in the supplied directory.
9009396Sandreas.hansson@arm.comif main['M5_BUILD_CACHE']:
9019396Sandreas.hansson@arm.com    print 'Using build cache located at', main['M5_BUILD_CACHE']
9029396Sandreas.hansson@arm.com    CacheDir(main['M5_BUILD_CACHE'])
9039396Sandreas.hansson@arm.com
9049396Sandreas.hansson@arm.comif not GetOption('without_python'):
9059477Sandreas.hansson@arm.com    # Find Python include and library directories for embedding the
9069396Sandreas.hansson@arm.com    # interpreter. We rely on python-config to resolve the appropriate
9079477Sandreas.hansson@arm.com    # includes and linker flags. ParseConfig does not seem to understand
9089477Sandreas.hansson@arm.com    # the more exotic linker flags such as -Xlinker and -export-dynamic so
9099477Sandreas.hansson@arm.com    # we add them explicitly below. If you want to link in an alternate
9109477Sandreas.hansson@arm.com    # version of python, see above for instructions on how to invoke
9119396Sandreas.hansson@arm.com    # scons with the appropriate PATH set.
9127840Snate@binkert.org    #
9137865Sgblack@eecs.umich.edu    # First we check if python2-config exists, else we use python-config
9147865Sgblack@eecs.umich.edu    python_config = readCommand(['which', 'python2-config'],
9157865Sgblack@eecs.umich.edu                                exception='').strip()
9167865Sgblack@eecs.umich.edu    if not os.path.exists(python_config):
9177865Sgblack@eecs.umich.edu        python_config = readCommand(['which', 'python-config'],
9187840Snate@binkert.org                                    exception='').strip()
9199591Sandreas@sandberg.pp.se    py_includes = readCommand([python_config, '--includes'],
9209591Sandreas@sandberg.pp.se                              exception='').split()
9219591Sandreas@sandberg.pp.se    # Strip the -I from the include folders before adding them to the
9229590Sandreas@sandberg.pp.se    # CPPPATH
9239590Sandreas@sandberg.pp.se    main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes))
9249045SAli.Saidi@ARM.com
9259045SAli.Saidi@ARM.com    # Read the linker flags and split them into libraries and other link
9269071Sandreas.hansson@arm.com    # flags. The libraries are added later through the call the CheckLib.
9279071Sandreas.hansson@arm.com    py_ld_flags = readCommand([python_config, '--ldflags'],
9289045SAli.Saidi@ARM.com        exception='').split()
9297840Snate@binkert.org    py_libs = []
9307840Snate@binkert.org    for lib in py_ld_flags:
9317840Snate@binkert.org         if not lib.startswith('-l'):
9321858SN/A             main.Append(LINKFLAGS=[lib])
9331858SN/A         else:
9341858SN/A             lib = lib[2:]
9351858SN/A             if lib not in py_libs:
9361858SN/A                 py_libs.append(lib)
9371858SN/A
9389651SAndreas.Sandberg@ARM.com    # verify that this stuff works
9399651SAndreas.Sandberg@ARM.com    if not conf.CheckHeader('Python.h', '<>'):
9409651SAndreas.Sandberg@ARM.com        print "Error: can't find Python.h header in", py_includes
9419651SAndreas.Sandberg@ARM.com        print "Install Python headers (package python-dev on Ubuntu and RedHat)"
9429651SAndreas.Sandberg@ARM.com        Exit(1)
9439651SAndreas.Sandberg@ARM.com
9449651SAndreas.Sandberg@ARM.com    for lib in py_libs:
9459651SAndreas.Sandberg@ARM.com        if not conf.CheckLib(lib):
9469651SAndreas.Sandberg@ARM.com            print "Error: can't find library %s required by python" % lib
9479657Sandreas.sandberg@arm.com            Exit(1)
9489651SAndreas.Sandberg@ARM.com
9499651SAndreas.Sandberg@ARM.com# On Solaris you need to use libsocket for socket ops
9509651SAndreas.Sandberg@ARM.comif not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
9519651SAndreas.Sandberg@ARM.com   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
9529651SAndreas.Sandberg@ARM.com       print "Can't find library with socket calls (e.g. accept())"
9539651SAndreas.Sandberg@ARM.com       Exit(1)
9549651SAndreas.Sandberg@ARM.com
9559651SAndreas.Sandberg@ARM.com# Check for zlib.  If the check passes, libz will be automatically
9569651SAndreas.Sandberg@ARM.com# added to the LIBS environment variable.
9579651SAndreas.Sandberg@ARM.comif not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
9589651SAndreas.Sandberg@ARM.com    print 'Error: did not find needed zlib compression library '\
9595863Snate@binkert.org          'and/or zlib.h header file.'
9605863Snate@binkert.org    print '       Please install zlib and try again.'
9615863Snate@binkert.org    Exit(1)
9625863Snate@binkert.org
9636121Snate@binkert.org# If we have the protobuf compiler, also make sure we have the
9641858SN/A# development libraries. If the check passes, libprotobuf will be
9655863Snate@binkert.org# automatically added to the LIBS environment variable. After
9665863Snate@binkert.org# this, we can use the HAVE_PROTOBUF flag to determine if we have
9675863Snate@binkert.org# got both protoc and libprotobuf available.
9685863Snate@binkert.orgmain['HAVE_PROTOBUF'] = main['PROTOC'] and \
9695863Snate@binkert.org    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
9702139SN/A                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
9714202Sbinkertn@umich.edu
9724202Sbinkertn@umich.edu# If we have the compiler but not the library, print another warning.
9732139SN/Aif main['PROTOC'] and not main['HAVE_PROTOBUF']:
9746994Snate@binkert.org    print termcap.Yellow + termcap.Bold + \
9756994Snate@binkert.org        'Warning: did not find protocol buffer library and/or headers.\n' + \
9766994Snate@binkert.org    '       Please install libprotobuf-dev for tracing support.' + \
9776994Snate@binkert.org    termcap.Normal
9786994Snate@binkert.org
9796994Snate@binkert.org# Check for librt.
9806994Snate@binkert.orghave_posix_clock = \
9816994Snate@binkert.org    conf.CheckLibWithHeader(None, 'time.h', 'C',
9826994Snate@binkert.org                            'clock_nanosleep(0,0,NULL,NULL);') or \
9836994Snate@binkert.org    conf.CheckLibWithHeader('rt', 'time.h', 'C',
9846994Snate@binkert.org                            'clock_nanosleep(0,0,NULL,NULL);')
9856994Snate@binkert.org
9866994Snate@binkert.orghave_posix_timers = \
9876994Snate@binkert.org    conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
9886994Snate@binkert.org                            'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
9896994Snate@binkert.org
9906994Snate@binkert.orgif not GetOption('without_tcmalloc'):
9916994Snate@binkert.org    if conf.CheckLib('tcmalloc'):
9926994Snate@binkert.org        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
9936994Snate@binkert.org    elif conf.CheckLib('tcmalloc_minimal'):
9946994Snate@binkert.org        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
9956994Snate@binkert.org    else:
9966994Snate@binkert.org        print termcap.Yellow + termcap.Bold + \
9976994Snate@binkert.org              "You can get a 12% performance improvement by "\
9986994Snate@binkert.org              "installing tcmalloc (libgoogle-perftools-dev package "\
9996994Snate@binkert.org              "on Ubuntu or RedHat)." + termcap.Normal
10006994Snate@binkert.org
10016994Snate@binkert.orgif not have_posix_clock:
10022155SN/A    print "Can't find library for POSIX clocks."
10035863Snate@binkert.org
10041869SN/A# Check for <fenv.h> (C99 FP environment control)
10051869SN/Ahave_fenv = conf.CheckHeader('fenv.h', '<>')
10065863Snate@binkert.orgif not have_fenv:
10075863Snate@binkert.org    print "Warning: Header file <fenv.h> not found."
10084202Sbinkertn@umich.edu    print "         This host has no IEEE FP rounding mode control."
10096108Snate@binkert.org
10106108Snate@binkert.org# Check if we should enable KVM-based hardware virtualization. The API
10116108Snate@binkert.org# we rely on exists since version 2.6.36 of the kernel, but somehow
10126108Snate@binkert.org# the KVM_API_VERSION does not reflect the change. We test for one of
10139219Spower.jg@gmail.com# the types as a fall back.
10149219Spower.jg@gmail.comhave_kvm = conf.CheckHeader('linux/kvm.h', '<>') and \
10159219Spower.jg@gmail.com    conf.CheckTypeSize('struct kvm_xsave', '#include <linux/kvm.h>') != 0
10169219Spower.jg@gmail.comif not have_kvm:
10179219Spower.jg@gmail.com    print "Info: Compatible header file <linux/kvm.h> not found, " \
10189219Spower.jg@gmail.com        "disabling KVM support."
10199219Spower.jg@gmail.com
10209219Spower.jg@gmail.com# Check if the requested target ISA is compatible with the host
10214202Sbinkertn@umich.edudef is_isa_kvm_compatible(isa):
10225863Snate@binkert.org    isa_comp_table = {
10238474Sgblack@eecs.umich.edu        "arm" : ( "armv7l" ),
10248474Sgblack@eecs.umich.edu        "x86" : ( "x86_64" ),
10255742Snate@binkert.org        }
10268268Ssteve.reinhardt@amd.com    try:
10278268Ssteve.reinhardt@amd.com        import platform
10288268Ssteve.reinhardt@amd.com        host_isa = platform.machine()
10295742Snate@binkert.org    except:
10305341Sstever@gmail.com        print "Warning: Failed to determine host ISA."
10318474Sgblack@eecs.umich.edu        return False
10328474Sgblack@eecs.umich.edu
10335342Sstever@gmail.com    return host_isa in isa_comp_table.get(isa, [])
10344202Sbinkertn@umich.edu
10354202Sbinkertn@umich.edu
10364202Sbinkertn@umich.edu# Check if the exclude_host attribute is available. We want this to
10375863Snate@binkert.org# get accurate instruction counts in KVM.
10385863Snate@binkert.orgmain['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
10396994Snate@binkert.org    'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
10406994Snate@binkert.org
10416994Snate@binkert.org
10425863Snate@binkert.org######################################################################
10435863Snate@binkert.org#
10445863Snate@binkert.org# Finish the configuration
10455863Snate@binkert.org#
10465863Snate@binkert.orgmain = conf.Finish()
10475863Snate@binkert.org
10485863Snate@binkert.org######################################################################
10495863Snate@binkert.org#
10507840Snate@binkert.org# Collect all non-global variables
10515863Snate@binkert.org#
10525952Ssaidi@eecs.umich.edu
10539651SAndreas.Sandberg@ARM.com# Define the universe of supported ISAs
10549219Spower.jg@gmail.comall_isa_list = [ ]
10559219Spower.jg@gmail.comExport('all_isa_list')
10561869SN/A
10571858SN/Aclass CpuModel(object):
10585863Snate@binkert.org    '''The CpuModel class encapsulates everything the ISA parser needs to
10599420Sandreas.hansson@arm.com    know about a particular CPU model.'''
10609420Sandreas.hansson@arm.com
10611858SN/A    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
1062955SN/A    dict = {}
1063955SN/A
10641869SN/A    # Constructor.  Automatically adds models to CpuModel.dict.
10651869SN/A    def __init__(self, name, default=False):
10661869SN/A        self.name = name           # name of model
10671869SN/A
10681869SN/A        # This cpu is enabled by default
10695863Snate@binkert.org        self.default = default
10705863Snate@binkert.org
10715863Snate@binkert.org        # Add self to dict
10721869SN/A        if name in CpuModel.dict:
10735863Snate@binkert.org            raise AttributeError, "CpuModel '%s' already registered" % name
10741869SN/A        CpuModel.dict[name] = self
10755863Snate@binkert.org
10761869SN/AExport('CpuModel')
10771869SN/A
10781869SN/A# Sticky variables get saved in the variables file so they persist from
10791869SN/A# one invocation to the next (unless overridden, in which case the new
10808483Sgblack@eecs.umich.edu# value becomes sticky).
10811869SN/Asticky_vars = Variables(args=ARGUMENTS)
10821869SN/AExport('sticky_vars')
10831869SN/A
10841869SN/A# Sticky variables that should be exported
10855863Snate@binkert.orgexport_vars = []
10865863Snate@binkert.orgExport('export_vars')
10871869SN/A
10885863Snate@binkert.org# For Ruby
10895863Snate@binkert.orgall_protocols = []
10903356Sbinkertn@umich.eduExport('all_protocols')
10913356Sbinkertn@umich.eduprotocol_dirs = []
10923356Sbinkertn@umich.eduExport('protocol_dirs')
10933356Sbinkertn@umich.eduslicc_includes = []
10943356Sbinkertn@umich.eduExport('slicc_includes')
10954781Snate@binkert.org
10965863Snate@binkert.org# Walk the tree and execute all SConsopts scripts that wil add to the
10975863Snate@binkert.org# above variables
10981869SN/Aif GetOption('verbose'):
10991869SN/A    print "Reading SConsopts"
11001869SN/Afor bdir in [ base_dir ] + extras_dir_list:
11016121Snate@binkert.org    if not isdir(bdir):
11021869SN/A        print "Error: directory '%s' does not exist" % bdir
11032638Sstever@eecs.umich.edu        Exit(1)
11046121Snate@binkert.org    for root, dirs, files in os.walk(bdir):
11056121Snate@binkert.org        if 'SConsopts' in files:
11062638Sstever@eecs.umich.edu            if GetOption('verbose'):
11075749Scws3k@cs.virginia.edu                print "Reading", joinpath(root, 'SConsopts')
11086121Snate@binkert.org            SConscript(joinpath(root, 'SConsopts'))
11096121Snate@binkert.org
11105749Scws3k@cs.virginia.eduall_isa_list.sort()
11119537Satgutier@umich.edu
11129537Satgutier@umich.edusticky_vars.AddVariables(
11139537Satgutier@umich.edu    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
11149537Satgutier@umich.edu    ListVariable('CPU_MODELS', 'CPU models',
11151869SN/A                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
11161869SN/A                 sorted(CpuModel.dict.keys())),
11173546Sgblack@eecs.umich.edu    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
11183546Sgblack@eecs.umich.edu                 False),
11193546Sgblack@eecs.umich.edu    BoolVariable('SS_COMPATIBLE_FP',
11203546Sgblack@eecs.umich.edu                 'Make floating-point results compatible with SimpleScalar',
11216121Snate@binkert.org                 False),
11225863Snate@binkert.org    BoolVariable('USE_SSE2',
11233546Sgblack@eecs.umich.edu                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
11243546Sgblack@eecs.umich.edu                 False),
11253546Sgblack@eecs.umich.edu    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
11263546Sgblack@eecs.umich.edu    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
11274781Snate@binkert.org    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
11284781Snate@binkert.org    BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm),
11296658Snate@binkert.org    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
11306658Snate@binkert.org                  all_protocols),
11314781Snate@binkert.org    )
11323546Sgblack@eecs.umich.edu
11333546Sgblack@eecs.umich.edu# These variables get exported to #defines in config/*.hh (see src/SConscript).
11343546Sgblack@eecs.umich.eduexport_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE',
11353546Sgblack@eecs.umich.edu                'USE_POSIX_CLOCK', 'PROTOCOL', 'HAVE_PROTOBUF',
11367756SAli.Saidi@ARM.com                'HAVE_PERF_ATTR_EXCLUDE_HOST']
11377816Ssteve.reinhardt@amd.com
11383546Sgblack@eecs.umich.edu###################################################
11393546Sgblack@eecs.umich.edu#
11403546Sgblack@eecs.umich.edu# Define a SCons builder for configuration flag headers.
11413546Sgblack@eecs.umich.edu#
11424202Sbinkertn@umich.edu###################################################
11433546Sgblack@eecs.umich.edu
11443546Sgblack@eecs.umich.edu# This function generates a config header file that #defines the
11453546Sgblack@eecs.umich.edu# variable symbol to the current variable setting (0 or 1).  The source
1146955SN/A# operands are the name of the variable and a Value node containing the
1147955SN/A# value of the variable.
1148955SN/Adef build_config_file(target, source, env):
1149955SN/A    (variable, value) = [s.get_contents() for s in source]
11505863Snate@binkert.org    f = file(str(target[0]), 'w')
11515863Snate@binkert.org    print >> f, '#define', variable, value
11525343Sstever@gmail.com    f.close()
11535343Sstever@gmail.com    return None
11546121Snate@binkert.org
11555863Snate@binkert.org# Combine the two functions into a scons Action object.
11564773Snate@binkert.orgconfig_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
11575863Snate@binkert.org
11582632Sstever@eecs.umich.edu# The emitter munges the source & target node lists to reflect what
11595863Snate@binkert.org# we're really doing.
11602023SN/Adef config_emitter(target, source, env):
11615863Snate@binkert.org    # extract variable name from Builder arg
11625863Snate@binkert.org    variable = str(target[0])
11635863Snate@binkert.org    # True target is config header file
11645863Snate@binkert.org    target = joinpath('config', variable.lower() + '.hh')
11655863Snate@binkert.org    val = env[variable]
11665863Snate@binkert.org    if isinstance(val, bool):
11675863Snate@binkert.org        # Force value to 0/1
11685863Snate@binkert.org        val = int(val)
11695863Snate@binkert.org    elif isinstance(val, str):
11702632Sstever@eecs.umich.edu        val = '"' + val + '"'
11715863Snate@binkert.org
11722023SN/A    # Sources are variable name & value (packaged in SCons Value nodes)
11732632Sstever@eecs.umich.edu    return ([target], [Value(variable), Value(val)])
11745863Snate@binkert.org
11755342Sstever@gmail.comconfig_builder = Builder(emitter = config_emitter, action = config_action)
11765863Snate@binkert.org
11772632Sstever@eecs.umich.edumain.Append(BUILDERS = { 'ConfigFile' : config_builder })
11785863Snate@binkert.org
11795863Snate@binkert.org# libelf build is shared across all configs in the build root.
11808267Ssteve.reinhardt@amd.commain.SConscript('ext/libelf/SConscript',
11818120Sgblack@eecs.umich.edu                variant_dir = joinpath(build_root, 'libelf'))
11828267Ssteve.reinhardt@amd.com
11838267Ssteve.reinhardt@amd.com# gzstream build is shared across all configs in the build root.
11848267Ssteve.reinhardt@amd.commain.SConscript('ext/gzstream/SConscript',
11858267Ssteve.reinhardt@amd.com                variant_dir = joinpath(build_root, 'gzstream'))
11868267Ssteve.reinhardt@amd.com
11878267Ssteve.reinhardt@amd.com# libfdt build is shared across all configs in the build root.
11888267Ssteve.reinhardt@amd.commain.SConscript('ext/libfdt/SConscript',
11898267Ssteve.reinhardt@amd.com                variant_dir = joinpath(build_root, 'libfdt'))
11908267Ssteve.reinhardt@amd.com
11915863Snate@binkert.org# fputils build is shared across all configs in the build root.
11925863Snate@binkert.orgmain.SConscript('ext/fputils/SConscript',
11935863Snate@binkert.org                variant_dir = joinpath(build_root, 'fputils'))
11942632Sstever@eecs.umich.edu
11958267Ssteve.reinhardt@amd.com# DRAMSim2 build is shared across all configs in the build root.
11968267Ssteve.reinhardt@amd.commain.SConscript('ext/dramsim2/SConscript',
11978267Ssteve.reinhardt@amd.com                variant_dir = joinpath(build_root, 'dramsim2'))
11982632Sstever@eecs.umich.edu
11991888SN/A# DRAMPower build is shared across all configs in the build root.
12005863Snate@binkert.orgmain.SConscript('ext/drampower/SConscript',
12015863Snate@binkert.org                variant_dir = joinpath(build_root, 'drampower'))
12021858SN/A
12038120Sgblack@eecs.umich.edu###################################################
12048120Sgblack@eecs.umich.edu#
12057756SAli.Saidi@ARM.com# This function is used to set up a directory with switching headers
12062598SN/A#
12075863Snate@binkert.org###################################################
12081858SN/A
12091858SN/Amain['ALL_ISA_LIST'] = all_isa_list
12101858SN/Aall_isa_deps = {}
12115863Snate@binkert.orgdef make_switching_dir(dname, switch_headers, env):
12121858SN/A    # Generate the header.  target[0] is the full path of the output
12131858SN/A    # header to generate.  'source' is a dummy variable, since we get the
12141858SN/A    # list of ISAs from env['ALL_ISA_LIST'].
12155863Snate@binkert.org    def gen_switch_hdr(target, source, env):
12161871SN/A        fname = str(target[0])
12171858SN/A        isa = env['TARGET_ISA'].lower()
12181858SN/A        try:
12191858SN/A            f = open(fname, 'w')
12201858SN/A            print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
12219651SAndreas.Sandberg@ARM.com            f.close()
12229651SAndreas.Sandberg@ARM.com        except IOError:
12239651SAndreas.Sandberg@ARM.com            print "Failed to create %s" % fname
12249651SAndreas.Sandberg@ARM.com            raise
12259651SAndreas.Sandberg@ARM.com
12269651SAndreas.Sandberg@ARM.com    # Build SCons Action object. 'varlist' specifies env vars that this
12279651SAndreas.Sandberg@ARM.com    # action depends on; when env['ALL_ISA_LIST'] changes these actions
12289651SAndreas.Sandberg@ARM.com    # should get re-executed.
12299651SAndreas.Sandberg@ARM.com    switch_hdr_action = MakeAction(gen_switch_hdr,
12305863Snate@binkert.org                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
12315863Snate@binkert.org
12321869SN/A    # Instantiate actions for each header
12331965SN/A    for hdr in switch_headers:
12347739Sgblack@eecs.umich.edu        env.Command(hdr, [], switch_hdr_action)
12351965SN/A
12362761Sstever@eecs.umich.edu    isa_target = Dir('.').up().name.lower().replace('_', '-')
12375863Snate@binkert.org    env['PHONY_BASE'] = '#'+isa_target
12381869SN/A    all_isa_deps[isa_target] = None
12395863Snate@binkert.org
12402667Sstever@eecs.umich.eduExport('make_switching_dir')
12411869SN/A
12421869SN/A# all-isas -> all-deps -> all-environs -> all_targets
12432929Sktlim@umich.edumain.Alias('#all-isas', [])
12442929Sktlim@umich.edumain.Alias('#all-deps', '#all-isas')
12455863Snate@binkert.org
12462929Sktlim@umich.edu# Dummy target to ensure all environments are created before telling
1247955SN/A# SCons what to actually make (the command line arguments).  We attach
12488120Sgblack@eecs.umich.edu# them to the dependence graph after the environments are complete.
12498120Sgblack@eecs.umich.eduORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work.
12508120Sgblack@eecs.umich.edudef environsComplete(target, source, env):
12518120Sgblack@eecs.umich.edu    for t in ORIG_BUILD_TARGETS:
12528120Sgblack@eecs.umich.edu        main.Depends('#all-targets', t)
12538120Sgblack@eecs.umich.edu
12548120Sgblack@eecs.umich.edu# Each build/* switching_dir attaches its *-environs target to #all-environs.
12558120Sgblack@eecs.umich.edumain.Append(BUILDERS = {'CompleteEnvirons' :
12568120Sgblack@eecs.umich.edu                        Builder(action=MakeAction(environsComplete, None))})
12578120Sgblack@eecs.umich.edumain.CompleteEnvirons('#all-environs', [])
12588120Sgblack@eecs.umich.edu
12598120Sgblack@eecs.umich.edudef doNothing(**ignored): pass
1260main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))})
1261
1262# The final target to which all the original targets ultimately get attached.
1263main.Dummy('#all-targets', '#all-environs')
1264BUILD_TARGETS[:] = ['#all-targets']
1265
1266###################################################
1267#
1268# Define build environments for selected configurations.
1269#
1270###################################################
1271
1272for variant_path in variant_paths:
1273    if not GetOption('silent'):
1274        print "Building in", variant_path
1275
1276    # Make a copy of the build-root environment to use for this config.
1277    env = main.Clone()
1278    env['BUILDDIR'] = variant_path
1279
1280    # variant_dir is the tail component of build path, and is used to
1281    # determine the build parameters (e.g., 'ALPHA_SE')
1282    (build_root, variant_dir) = splitpath(variant_path)
1283
1284    # Set env variables according to the build directory config.
1285    sticky_vars.files = []
1286    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1287    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1288    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1289    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1290    if isfile(current_vars_file):
1291        sticky_vars.files.append(current_vars_file)
1292        if not GetOption('silent'):
1293            print "Using saved variables file %s" % current_vars_file
1294    else:
1295        # Build dir-specific variables file doesn't exist.
1296
1297        # Make sure the directory is there so we can create it later
1298        opt_dir = dirname(current_vars_file)
1299        if not isdir(opt_dir):
1300            mkdir(opt_dir)
1301
1302        # Get default build variables from source tree.  Variables are
1303        # normally determined by name of $VARIANT_DIR, but can be
1304        # overridden by '--default=' arg on command line.
1305        default = GetOption('default')
1306        opts_dir = joinpath(main.root.abspath, 'build_opts')
1307        if default:
1308            default_vars_files = [joinpath(build_root, 'variables', default),
1309                                  joinpath(opts_dir, default)]
1310        else:
1311            default_vars_files = [joinpath(opts_dir, variant_dir)]
1312        existing_files = filter(isfile, default_vars_files)
1313        if existing_files:
1314            default_vars_file = existing_files[0]
1315            sticky_vars.files.append(default_vars_file)
1316            print "Variables file %s not found,\n  using defaults in %s" \
1317                  % (current_vars_file, default_vars_file)
1318        else:
1319            print "Error: cannot find variables file %s or " \
1320                  "default file(s) %s" \
1321                  % (current_vars_file, ' or '.join(default_vars_files))
1322            Exit(1)
1323
1324    # Apply current variable settings to env
1325    sticky_vars.Update(env)
1326
1327    help_texts["local_vars"] += \
1328        "Build variables for %s:\n" % variant_dir \
1329                 + sticky_vars.GenerateHelpText(env)
1330
1331    # Process variable settings.
1332
1333    if not have_fenv and env['USE_FENV']:
1334        print "Warning: <fenv.h> not available; " \
1335              "forcing USE_FENV to False in", variant_dir + "."
1336        env['USE_FENV'] = False
1337
1338    if not env['USE_FENV']:
1339        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1340        print "         FP results may deviate slightly from other platforms."
1341
1342    if env['EFENCE']:
1343        env.Append(LIBS=['efence'])
1344
1345    if env['USE_KVM']:
1346        if not have_kvm:
1347            print "Warning: Can not enable KVM, host seems to lack KVM support"
1348            env['USE_KVM'] = False
1349        elif not have_posix_timers:
1350            print "Warning: Can not enable KVM, host seems to lack support " \
1351                "for POSIX timers"
1352            env['USE_KVM'] = False
1353        elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1354            print "Info: KVM support disabled due to unsupported host and " \
1355                "target ISA combination"
1356            env['USE_KVM'] = False
1357
1358    # Warn about missing optional functionality
1359    if env['USE_KVM']:
1360        if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1361            print "Warning: perf_event headers lack support for the " \
1362                "exclude_host attribute. KVM instruction counts will " \
1363                "be inaccurate."
1364
1365    # Save sticky variable settings back to current variables file
1366    sticky_vars.Save(current_vars_file, env)
1367
1368    if env['USE_SSE2']:
1369        env.Append(CCFLAGS=['-msse2'])
1370
1371    # The src/SConscript file sets up the build rules in 'env' according
1372    # to the configured variables.  It returns a list of environments,
1373    # one for each variant build (debug, opt, etc.)
1374    SConscript('src/SConscript', variant_dir = variant_path, exports = 'env')
1375
1376def pairwise(iterable):
1377    "s -> (s0,s1), (s1,s2), (s2, s3), ..."
1378    a, b = itertools.tee(iterable)
1379    b.next()
1380    return itertools.izip(a, b)
1381
1382# Create false dependencies so SCons will parse ISAs, establish
1383# dependencies, and setup the build Environments serially. Either
1384# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j
1385# greater than 1. It appears to be standard race condition stuff; it
1386# doesn't always fail, but usually, and the behaviors are different.
1387# Every time I tried to remove this, builds would fail in some
1388# creative new way. So, don't do that. You'll want to, though, because
1389# tests/SConscript takes a long time to make its Environments.
1390for t1, t2 in pairwise(sorted(all_isa_deps.iterkeys())):
1391    main.Depends('#%s-deps'     % t2, '#%s-deps'     % t1)
1392    main.Depends('#%s-environs' % t2, '#%s-environs' % t1)
1393
1394# base help text
1395Help('''
1396Usage: scons [scons options] [build variables] [target(s)]
1397
1398Extra scons options:
1399%(options)s
1400
1401Global build variables:
1402%(global_vars)s
1403
1404%(local_vars)s
1405''' % help_texts)
1406