SConstruct revision 10584
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2013 ARM Limited
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# The license below extends only to copyright in the software and shall
7955SN/A# not be construed as granting a license to any other intellectual
8955SN/A# property including but not limited to intellectual property relating
9955SN/A# to a hardware implementation of the functionality of the software
10955SN/A# licensed hereunder.  You may use the software subject to the license
11955SN/A# terms below provided that you ensure that this notice is replicated
12955SN/A# unmodified and in its entirety in all distributions of the software,
13955SN/A# modified or unmodified, in source code or in binary form.
14955SN/A#
15955SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc.
16955SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company
17955SN/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
282665Ssaidi@eecs.umich.edu# contributors may be used to endorse or promote products derived from
292665Ssaidi@eecs.umich.edu# 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
352632Sstever@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
362632Sstever@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
372632Sstever@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
382632Sstever@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
402632Sstever@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
412632Sstever@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422761Sstever@eecs.umich.edu#
432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt
442632Sstever@eecs.umich.edu#          Nathan Binkert
452632Sstever@eecs.umich.edu
462761Sstever@eecs.umich.edu###################################################
472761Sstever@eecs.umich.edu#
482761Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file.
492632Sstever@eecs.umich.edu#
502632Sstever@eecs.umich.edu# While in this directory ('gem5'), just type 'scons' to build the default
512761Sstever@eecs.umich.edu# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
522761Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for
532761Sstever@eecs.umich.edu# the optimized full-system version).
542761Sstever@eecs.umich.edu#
552761Sstever@eecs.umich.edu# 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
572632Sstever@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:
612632Sstever@eecs.umich.edu#
622632Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
63955SN/A#   scons to search up the directory tree for this SConstruct file.
64955SN/A#   % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug
65955SN/A#   % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug
66955SN/A#
67955SN/A#   The following two commands are equivalent and demonstrate building
68955SN/A#   in a directory outside of the source tree.  The '-C' option tells
693918Ssaidi@eecs.umich.edu#   scons to chdir to the specified directory to find this SConstruct
703716Sstever@eecs.umich.edu#   file.
71955SN/A#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
722656Sstever@eecs.umich.edu#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
732656Sstever@eecs.umich.edu#
742656Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options.  If you're in this
752656Sstever@eecs.umich.edu# 'gem5' directory (or use -u or -C to tell scons where to find this
762656Sstever@eecs.umich.edu# file), you can use 'scons -h' to print all the gem5-specific build
772656Sstever@eecs.umich.edu# options as well.
782656Sstever@eecs.umich.edu#
792653Sstever@eecs.umich.edu###################################################
802653Sstever@eecs.umich.edu
812653Sstever@eecs.umich.edu# Check for recent-enough Python and SCons versions.
822653Sstever@eecs.umich.edutry:
832653Sstever@eecs.umich.edu    # Really old versions of scons only take two options for the
842653Sstever@eecs.umich.edu    # function, so check once without the revision and once with the
852653Sstever@eecs.umich.edu    # revision, the first instance will fail for stuff other than
862653Sstever@eecs.umich.edu    # 0.98, and the second will fail for 0.98.0
872653Sstever@eecs.umich.edu    EnsureSConsVersion(0, 98)
882653Sstever@eecs.umich.edu    EnsureSConsVersion(0, 98, 1)
892653Sstever@eecs.umich.eduexcept SystemExit, e:
901852SN/A    print """
91955SN/AFor more details, see:
92955SN/A    http://gem5.org/Dependencies
93955SN/A"""
943717Sstever@eecs.umich.edu    raise
953716Sstever@eecs.umich.edu
96955SN/A# We ensure the python version early because because python-config
971533SN/A# requires python 2.5
983716Sstever@eecs.umich.edutry:
991533SN/A    EnsurePythonVersion(2, 5)
100955SN/Aexcept SystemExit, e:
101955SN/A    print """
1022632Sstever@eecs.umich.eduYou can use a non-default installation of the Python interpreter by
1032632Sstever@eecs.umich.edurearranging your PATH so that scons finds the non-default 'python' and
104955SN/A'python-config' first.
105955SN/A
106955SN/AFor more details, see:
107955SN/A    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
1082632Sstever@eecs.umich.edu"""
109955SN/A    raise
1102632Sstever@eecs.umich.edu
1112632Sstever@eecs.umich.edu# Global Python includes
1122632Sstever@eecs.umich.eduimport itertools
1132632Sstever@eecs.umich.eduimport os
1142632Sstever@eecs.umich.eduimport re
1152632Sstever@eecs.umich.eduimport subprocess
1162632Sstever@eecs.umich.eduimport sys
1173053Sstever@eecs.umich.edu
1183053Sstever@eecs.umich.edufrom os import mkdir, environ
1193053Sstever@eecs.umich.edufrom os.path import abspath, basename, dirname, expanduser, normpath
1203053Sstever@eecs.umich.edufrom os.path import exists,  isdir, isfile
1213053Sstever@eecs.umich.edufrom os.path import join as joinpath, split as splitpath
1223053Sstever@eecs.umich.edu
1233053Sstever@eecs.umich.edu# SCons includes
1243053Sstever@eecs.umich.eduimport SCons
1253053Sstever@eecs.umich.eduimport SCons.Node
1263053Sstever@eecs.umich.edu
1273053Sstever@eecs.umich.eduextra_python_paths = [
1283053Sstever@eecs.umich.edu    Dir('src/python').srcnode().abspath, # gem5 includes
1293053Sstever@eecs.umich.edu    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1303053Sstever@eecs.umich.edu    ]
1313053Sstever@eecs.umich.edu
1323053Sstever@eecs.umich.edusys.path[1:1] = extra_python_paths
1332632Sstever@eecs.umich.edu
1342632Sstever@eecs.umich.edufrom m5.util import compareVersions, readCommand
1352632Sstever@eecs.umich.edufrom m5.util.terminal import get_termcap
1362632Sstever@eecs.umich.edu
1372632Sstever@eecs.umich.eduhelp_texts = {
1382632Sstever@eecs.umich.edu    "options" : "",
1393718Sstever@eecs.umich.edu    "global_vars" : "",
1403718Sstever@eecs.umich.edu    "local_vars" : ""
1413718Sstever@eecs.umich.edu}
1423718Sstever@eecs.umich.edu
1433718Sstever@eecs.umich.eduExport("help_texts")
1443718Sstever@eecs.umich.edu
1453718Sstever@eecs.umich.edu
1463718Sstever@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from
1473718Sstever@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h'
1483718Sstever@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the
1493718Sstever@eecs.umich.edu# Help() function, but these two features are incompatible: once
1503718Sstever@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get
1513718Sstever@eecs.umich.edu# at the help texts from AddOptions.  See:
1522634Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1532634Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1542632Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and
1552638Sstever@eecs.umich.edu# re-inject it via Help().  Ideally someday this bug will be fixed and
1562632Sstever@eecs.umich.edu# we can just use AddOption directly.
1572632Sstever@eecs.umich.edudef AddLocalOption(*args, **kwargs):
1582632Sstever@eecs.umich.edu    col_width = 30
1592632Sstever@eecs.umich.edu
1602632Sstever@eecs.umich.edu    help = "  " + ", ".join(args)
1612632Sstever@eecs.umich.edu    if "help" in kwargs:
1621858SN/A        length = len(help)
1633716Sstever@eecs.umich.edu        if length >= col_width:
1642638Sstever@eecs.umich.edu            help += "\n" + " " * col_width
1652638Sstever@eecs.umich.edu        else:
1662638Sstever@eecs.umich.edu            help += " " * (col_width - length)
1672638Sstever@eecs.umich.edu        help += kwargs["help"]
1682638Sstever@eecs.umich.edu    help_texts["options"] += help + "\n"
1692638Sstever@eecs.umich.edu
1702638Sstever@eecs.umich.edu    AddOption(*args, **kwargs)
1713716Sstever@eecs.umich.edu
1722634Sstever@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true',
1732634Sstever@eecs.umich.edu               help="Add color to abbreviated scons output")
174955SN/AAddLocalOption('--no-colors', dest='use_colors', action='store_false',
175955SN/A               help="Don't add color to abbreviated scons output")
176955SN/AAddLocalOption('--with-cxx-config', dest='with_cxx_config',
177955SN/A               action='store_true',
178955SN/A               help="Build with support for C++-based configuration")
179955SN/AAddLocalOption('--default', dest='default', type='string', action='store',
180955SN/A               help='Override which build_opts file to use for defaults')
181955SN/AAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1821858SN/A               help='Disable style checking hooks')
1831858SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true',
1842632Sstever@eecs.umich.edu               help='Disable Link-Time Optimization for fast')
185955SN/AAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1863643Ssaidi@eecs.umich.edu               help='Update test reference outputs')
1873643Ssaidi@eecs.umich.eduAddLocalOption('--verbose', dest='verbose', action='store_true',
1883643Ssaidi@eecs.umich.edu               help='Print full tool command lines')
1893643Ssaidi@eecs.umich.eduAddLocalOption('--without-python', dest='without_python',
1903643Ssaidi@eecs.umich.edu               action='store_true',
1913643Ssaidi@eecs.umich.edu               help='Build without Python configuration support')
1923643Ssaidi@eecs.umich.eduAddLocalOption('--without-tcmalloc', dest='without_tcmalloc',
1933643Ssaidi@eecs.umich.edu               action='store_true',
1943716Sstever@eecs.umich.edu               help='Disable linking against tcmalloc')
1951105SN/AAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true',
1962667Sstever@eecs.umich.edu               help='Build with Undefined Behavior Sanitizer if available')
1972667Sstever@eecs.umich.edu
1982667Sstever@eecs.umich.edutermcap = get_termcap(GetOption('use_colors'))
1992667Sstever@eecs.umich.edu
2002667Sstever@eecs.umich.edu########################################################################
2012667Sstever@eecs.umich.edu#
2021869SN/A# Set up the main build environment.
2031869SN/A#
2041869SN/A########################################################################
2051869SN/A
2061869SN/A# export TERM so that clang reports errors in color
2071065SN/Ause_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
2082632Sstever@eecs.umich.edu                 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC',
2092632Sstever@eecs.umich.edu                 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ])
2103918Ssaidi@eecs.umich.edu
2113918Ssaidi@eecs.umich.eduuse_prefixes = [
2123940Ssaidi@eecs.umich.edu    "M5",           # M5 configuration (e.g., path to kernels)
2133918Ssaidi@eecs.umich.edu    "DISTCC_",      # distcc (distributed compiler wrapper) configuration
2143918Ssaidi@eecs.umich.edu    "CCACHE_",      # ccache (caching compiler wrapper) configuration
2153918Ssaidi@eecs.umich.edu    "CCC_",         # clang static analyzer configuration
2163918Ssaidi@eecs.umich.edu    ]
2173918Ssaidi@eecs.umich.edu
2183918Ssaidi@eecs.umich.eduuse_env = {}
2193940Ssaidi@eecs.umich.edufor key,val in sorted(os.environ.iteritems()):
2203940Ssaidi@eecs.umich.edu    if key in use_vars or \
2213940Ssaidi@eecs.umich.edu            any([key.startswith(prefix) for prefix in use_prefixes]):
2223942Ssaidi@eecs.umich.edu        use_env[key] = val
2233940Ssaidi@eecs.umich.edu
2243918Ssaidi@eecs.umich.edumain = Environment(ENV=use_env)
2253918Ssaidi@eecs.umich.edumain.Decider('MD5-timestamp')
226955SN/Amain.root = Dir(".")         # The current directory (where this file lives).
2271858SN/Amain.srcdir = Dir("src")     # The source directory
2283918Ssaidi@eecs.umich.edu
2293918Ssaidi@eecs.umich.edumain_dict_keys = main.Dictionary().keys()
2303918Ssaidi@eecs.umich.edu
2313918Ssaidi@eecs.umich.edu# Check that we have a C/C++ compiler
2323940Ssaidi@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
2333940Ssaidi@eecs.umich.edu    print "No C++ compiler installed (package g++ on Ubuntu and RedHat)"
2343918Ssaidi@eecs.umich.edu    Exit(1)
2353918Ssaidi@eecs.umich.edu
2363918Ssaidi@eecs.umich.edu# Check that swig is present
2373918Ssaidi@eecs.umich.eduif not 'SWIG' in main_dict_keys:
2383918Ssaidi@eecs.umich.edu    print "swig is not installed (package swig on Ubuntu and RedHat)"
2393918Ssaidi@eecs.umich.edu    Exit(1)
2403918Ssaidi@eecs.umich.edu
2413918Ssaidi@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses
2423918Ssaidi@eecs.umich.edu# as well
2433940Ssaidi@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths)
2443918Ssaidi@eecs.umich.edu
2453918Ssaidi@eecs.umich.edu########################################################################
2461851SN/A#
2471851SN/A# Mercurial Stuff.
2481858SN/A#
2492632Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some
250955SN/A# extra things.
2513053Sstever@eecs.umich.edu#
2523053Sstever@eecs.umich.edu########################################################################
2533053Sstever@eecs.umich.edu
2543053Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg")
2553053Sstever@eecs.umich.edu
2563053Sstever@eecs.umich.edumercurial_style_message = """
2573053Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code
2583053Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands.  This
2593053Sstever@eecs.umich.eduscript will now install the hook in your .hg/hgrc file.
2603053Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """
2613053Sstever@eecs.umich.edu
2623053Sstever@eecs.umich.edumercurial_style_hook = """
2633053Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct
2643053Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks
2653053Sstever@eecs.umich.edu[extensions]
2663053Sstever@eecs.umich.edustyle = %s/util/style.py
2673053Sstever@eecs.umich.edu
2683053Sstever@eecs.umich.edu[hooks]
2693053Sstever@eecs.umich.edupretxncommit.style = python:style.check_style
2702667Sstever@eecs.umich.edupre-qrefresh.style = python:style.check_style
2712667Sstever@eecs.umich.edu# End of SConstruct additions
2722667Sstever@eecs.umich.edu
2732667Sstever@eecs.umich.edu""" % (main.root.abspath)
2742667Sstever@eecs.umich.edu
2752667Sstever@eecs.umich.edumercurial_lib_not_found = """
2762667Sstever@eecs.umich.eduMercurial libraries cannot be found, ignoring style hook.  If
2772667Sstever@eecs.umich.eduyou are a gem5 developer, please fix this and run the style
2782667Sstever@eecs.umich.eduhook. It is important.
2792667Sstever@eecs.umich.edu"""
2802667Sstever@eecs.umich.edu
2812667Sstever@eecs.umich.edu# Check for style hook and prompt for installation if it's not there.
2822638Sstever@eecs.umich.edu# Skip this if --ignore-style was specified, there's no .hg dir to
2832638Sstever@eecs.umich.edu# install a hook in, or there's no interactive terminal to prompt.
2842638Sstever@eecs.umich.eduif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
2853716Sstever@eecs.umich.edu    style_hook = True
2863716Sstever@eecs.umich.edu    try:
2871858SN/A        from mercurial import ui
2883118Sstever@eecs.umich.edu        ui = ui.ui()
2893118Sstever@eecs.umich.edu        ui.readconfig(hgdir.File('hgrc').abspath)
2903118Sstever@eecs.umich.edu        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
2913118Sstever@eecs.umich.edu                     ui.config('hooks', 'pre-qrefresh.style', None)
2923118Sstever@eecs.umich.edu    except ImportError:
2933118Sstever@eecs.umich.edu        print mercurial_lib_not_found
2943118Sstever@eecs.umich.edu
2953118Sstever@eecs.umich.edu    if not style_hook:
2963118Sstever@eecs.umich.edu        print mercurial_style_message,
2973118Sstever@eecs.umich.edu        # continue unless user does ctrl-c/ctrl-d etc.
2983118Sstever@eecs.umich.edu        try:
2993716Sstever@eecs.umich.edu            raw_input()
3003118Sstever@eecs.umich.edu        except:
3013118Sstever@eecs.umich.edu            print "Input exception, exiting scons.\n"
3023118Sstever@eecs.umich.edu            sys.exit(1)
3033118Sstever@eecs.umich.edu        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
3043118Sstever@eecs.umich.edu        print "Adding style hook to", hgrc_path, "\n"
3053118Sstever@eecs.umich.edu        try:
3063118Sstever@eecs.umich.edu            hgrc = open(hgrc_path, 'a')
3073118Sstever@eecs.umich.edu            hgrc.write(mercurial_style_hook)
3083118Sstever@eecs.umich.edu            hgrc.close()
3093716Sstever@eecs.umich.edu        except:
3103118Sstever@eecs.umich.edu            print "Error updating", hgrc_path
3113118Sstever@eecs.umich.edu            sys.exit(1)
3123118Sstever@eecs.umich.edu
3133118Sstever@eecs.umich.edu
3143118Sstever@eecs.umich.edu###################################################
3153118Sstever@eecs.umich.edu#
3163118Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
3173118Sstever@eecs.umich.edu# the target(s).
3183118Sstever@eecs.umich.edu#
3193118Sstever@eecs.umich.edu###################################################
3203483Ssaidi@eecs.umich.edu
3213494Ssaidi@eecs.umich.edu# Find default configuration & binary.
3223494Ssaidi@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
3233483Ssaidi@eecs.umich.edu
3243483Ssaidi@eecs.umich.edu# helper function: find last occurrence of element in list
3253483Ssaidi@eecs.umich.edudef rfind(l, elt, offs = -1):
3263053Sstever@eecs.umich.edu    for i in range(len(l)+offs, 0, -1):
3273053Sstever@eecs.umich.edu        if l[i] == elt:
3283918Ssaidi@eecs.umich.edu            return i
3293053Sstever@eecs.umich.edu    raise ValueError, "element not found"
3303053Sstever@eecs.umich.edu
3313053Sstever@eecs.umich.edu# Take a list of paths (or SCons Nodes) and return a list with all
3323053Sstever@eecs.umich.edu# paths made absolute and ~-expanded.  Paths will be interpreted
3333053Sstever@eecs.umich.edu# relative to the launch directory unless a different root is provided
3341858SN/Adef makePathListAbsolute(path_list, root=GetLaunchDir()):
3351858SN/A    return [abspath(joinpath(root, expanduser(str(p))))
3361858SN/A            for p in path_list]
3371858SN/A
3381858SN/A# Each target must have 'build' in the interior of the path; the
3391858SN/A# directory below this will determine the build parameters.  For
3401859SN/A# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
3411858SN/A# recognize that ALPHA_SE specifies the configuration because it
3421858SN/A# follow 'build' in the build path.
3431858SN/A
3441859SN/A# The funky assignment to "[:]" is needed to replace the list contents
3451859SN/A# in place rather than reassign the symbol to a new list, which
3461862SN/A# doesn't work (obviously!).
3473053Sstever@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
3483053Sstever@eecs.umich.edu
3493053Sstever@eecs.umich.edu# Generate a list of the unique build roots and configs that the
3503053Sstever@eecs.umich.edu# collected targets reference.
3511859SN/Avariant_paths = []
3521859SN/Abuild_root = None
3531859SN/Afor t in BUILD_TARGETS:
3541859SN/A    path_dirs = t.split('/')
3551859SN/A    try:
3561859SN/A        build_top = rfind(path_dirs, 'build', -2)
3571859SN/A    except:
3581859SN/A        print "Error: no non-leaf 'build' dir found on target path", t
3591862SN/A        Exit(1)
3601859SN/A    this_build_root = joinpath('/',*path_dirs[:build_top+1])
3611859SN/A    if not build_root:
3621859SN/A        build_root = this_build_root
3631858SN/A    else:
3641858SN/A        if this_build_root != build_root:
3652139SN/A            print "Error: build targets not under same build root\n"\
3662139SN/A                  "  %s\n  %s" % (build_root, this_build_root)
3672139SN/A            Exit(1)
3682155SN/A    variant_path = joinpath('/',*path_dirs[:build_top+2])
3692623SN/A    if variant_path not in variant_paths:
3703583Sbinkertn@umich.edu        variant_paths.append(variant_path)
3713583Sbinkertn@umich.edu
3723717Sstever@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there)
3733583Sbinkertn@umich.eduif not isdir(build_root):
3742155SN/A    mkdir(build_root)
3751869SN/Amain['BUILDROOT'] = build_root
3761869SN/A
3771869SN/AExport('main')
3781869SN/A
3791869SN/Amain.SConsignFile(joinpath(build_root, "sconsign"))
3802139SN/A
3811869SN/A# Default duplicate option is to use hard links, but this messes up
3822508SN/A# when you use emacs to edit a file in the target dir, as emacs moves
3832508SN/A# file to file~ then copies to file, breaking the link.  Symbolic
3842508SN/A# (soft) links work better.
3852508SN/Amain.SetOption('duplicate', 'soft-copy')
3863685Sktlim@umich.edu
3872635Sstever@eecs.umich.edu#
3881869SN/A# Set up global sticky variables... these are common to an entire build
3891869SN/A# tree (not specific to a particular build like ALPHA_SE)
3901869SN/A#
3911869SN/A
3921869SN/Aglobal_vars_file = joinpath(build_root, 'variables.global')
3931869SN/A
3941869SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
3951869SN/A
3961965SN/Aglobal_vars.AddVariables(
3971965SN/A    ('CC', 'C compiler', environ.get('CC', main['CC'])),
3981965SN/A    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
3991869SN/A    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
4001869SN/A    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
4012733Sktlim@umich.edu    ('BATCH', 'Use batch pool for build and tests', False),
4021869SN/A    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
4031884SN/A    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
4041884SN/A    ('EXTRAS', 'Add extra directories to the compilation', '')
4053356Sbinkertn@umich.edu    )
4063356Sbinkertn@umich.edu
4073356Sbinkertn@umich.edu# Update main environment with values from ARGUMENTS & global_vars_file
4083356Sbinkertn@umich.eduglobal_vars.Update(main)
4091869SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
4101858SN/A
4111869SN/A# Save sticky variable settings back to current variables file
4121869SN/Aglobal_vars.Save(global_vars_file, main)
4131869SN/A
4141869SN/A# Parse EXTRAS variable to build list of all directories where we're
4151869SN/A# look for sources etc.  This list is exported as extras_dir_list.
4161858SN/Abase_dir = main.srcdir.abspath
4172761Sstever@eecs.umich.eduif main['EXTRAS']:
4181869SN/A    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
4192733Sktlim@umich.eduelse:
4203584Ssaidi@eecs.umich.edu    extras_dir_list = []
4211869SN/A
4221869SN/AExport('base_dir')
4231869SN/AExport('extras_dir_list')
4241869SN/A
4251869SN/A# the ext directory should be on the #includes path
4261869SN/Amain.Append(CPPPATH=[Dir('ext')])
4271858SN/A
428955SN/Adef strip_build_path(path, env):
429955SN/A    path = str(path)
4301869SN/A    variant_base = env['BUILDROOT'] + os.path.sep
4311869SN/A    if path.startswith(variant_base):
4321869SN/A        path = path[len(variant_base):]
4331869SN/A    elif path.startswith('build/'):
4341869SN/A        path = path[6:]
4351869SN/A    return path
4361869SN/A
4371869SN/A# Generate a string of the form:
4381869SN/A#   common/path/prefix/src1, src2 -> tgt1, tgt2
4391869SN/A# to print while building.
4401869SN/Aclass Transform(object):
4411869SN/A    # all specific color settings should be here and nowhere else
4421869SN/A    tool_color = termcap.Normal
4431869SN/A    pfx_color = termcap.Yellow
4441869SN/A    srcs_color = termcap.Yellow + termcap.Bold
4451869SN/A    arrow_color = termcap.Blue + termcap.Bold
4461869SN/A    tgts_color = termcap.Yellow + termcap.Bold
4471869SN/A
4481869SN/A    def __init__(self, tool, max_sources=99):
4491869SN/A        self.format = self.tool_color + (" [%8s] " % tool) \
4501869SN/A                      + self.pfx_color + "%s" \
4511869SN/A                      + self.srcs_color + "%s" \
4521869SN/A                      + self.arrow_color + " -> " \
4531869SN/A                      + self.tgts_color + "%s" \
4541869SN/A                      + termcap.Normal
4551869SN/A        self.max_sources = max_sources
4561869SN/A
4571869SN/A    def __call__(self, target, source, env, for_signature=None):
4581869SN/A        # truncate source list according to max_sources param
4593716Sstever@eecs.umich.edu        source = source[0:self.max_sources]
4603356Sbinkertn@umich.edu        def strip(f):
4613356Sbinkertn@umich.edu            return strip_build_path(str(f), env)
4623356Sbinkertn@umich.edu        if len(source) > 0:
4633356Sbinkertn@umich.edu            srcs = map(strip, source)
4643356Sbinkertn@umich.edu        else:
4653356Sbinkertn@umich.edu            srcs = ['']
4663356Sbinkertn@umich.edu        tgts = map(strip, target)
4671869SN/A        # surprisingly, os.path.commonprefix is a dumb char-by-char string
4681869SN/A        # operation that has nothing to do with paths.
4691869SN/A        com_pfx = os.path.commonprefix(srcs + tgts)
4701869SN/A        com_pfx_len = len(com_pfx)
4711869SN/A        if com_pfx:
4721869SN/A            # do some cleanup and sanity checking on common prefix
4731869SN/A            if com_pfx[-1] == ".":
4742655Sstever@eecs.umich.edu                # prefix matches all but file extension: ok
4752655Sstever@eecs.umich.edu                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
4762655Sstever@eecs.umich.edu                com_pfx = com_pfx[0:-1]
4772655Sstever@eecs.umich.edu            elif com_pfx[-1] == "/":
4782655Sstever@eecs.umich.edu                # common prefix is directory path: OK
4792655Sstever@eecs.umich.edu                pass
4802655Sstever@eecs.umich.edu            else:
4812655Sstever@eecs.umich.edu                src0_len = len(srcs[0])
4822655Sstever@eecs.umich.edu                tgt0_len = len(tgts[0])
4832655Sstever@eecs.umich.edu                if src0_len == com_pfx_len:
4842655Sstever@eecs.umich.edu                    # source is a substring of target, OK
4852655Sstever@eecs.umich.edu                    pass
4862655Sstever@eecs.umich.edu                elif tgt0_len == com_pfx_len:
4872655Sstever@eecs.umich.edu                    # target is a substring of source, need to back up to
4882655Sstever@eecs.umich.edu                    # avoid empty string on RHS of arrow
4892655Sstever@eecs.umich.edu                    sep_idx = com_pfx.rfind(".")
4902655Sstever@eecs.umich.edu                    if sep_idx != -1:
4912655Sstever@eecs.umich.edu                        com_pfx = com_pfx[0:sep_idx]
4922655Sstever@eecs.umich.edu                    else:
4932655Sstever@eecs.umich.edu                        com_pfx = ''
4942655Sstever@eecs.umich.edu                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
4952655Sstever@eecs.umich.edu                    # still splitting at file extension: ok
4962655Sstever@eecs.umich.edu                    pass
4972655Sstever@eecs.umich.edu                else:
4982655Sstever@eecs.umich.edu                    # probably a fluke; ignore it
4992655Sstever@eecs.umich.edu                    com_pfx = ''
5002634Sstever@eecs.umich.edu        # recalculate length in case com_pfx was modified
5012634Sstever@eecs.umich.edu        com_pfx_len = len(com_pfx)
5022634Sstever@eecs.umich.edu        def fmt(files):
5032634Sstever@eecs.umich.edu            f = map(lambda s: s[com_pfx_len:], files)
5042634Sstever@eecs.umich.edu            return ', '.join(f)
5052634Sstever@eecs.umich.edu        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
5062638Sstever@eecs.umich.edu
5072638Sstever@eecs.umich.eduExport('Transform')
5083716Sstever@eecs.umich.edu
5092638Sstever@eecs.umich.edu# enable the regression script to use the termcap
5102638Sstever@eecs.umich.edumain['TERMCAP'] = termcap
5111869SN/A
5121869SN/Aif GetOption('verbose'):
5133546Sgblack@eecs.umich.edu    def MakeAction(action, string, *args, **kwargs):
5143546Sgblack@eecs.umich.edu        return Action(action, *args, **kwargs)
5153546Sgblack@eecs.umich.eduelse:
5163546Sgblack@eecs.umich.edu    MakeAction = Action
5173546Sgblack@eecs.umich.edu    main['CCCOMSTR']        = Transform("CC")
5183546Sgblack@eecs.umich.edu    main['CXXCOMSTR']       = Transform("CXX")
5193546Sgblack@eecs.umich.edu    main['ASCOMSTR']        = Transform("AS")
5203546Sgblack@eecs.umich.edu    main['SWIGCOMSTR']      = Transform("SWIG")
5213546Sgblack@eecs.umich.edu    main['ARCOMSTR']        = Transform("AR", 0)
5223546Sgblack@eecs.umich.edu    main['LINKCOMSTR']      = Transform("LINK", 0)
5233546Sgblack@eecs.umich.edu    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
5243546Sgblack@eecs.umich.edu    main['M4COMSTR']        = Transform("M4")
5253546Sgblack@eecs.umich.edu    main['SHCCCOMSTR']      = Transform("SHCC")
5263546Sgblack@eecs.umich.edu    main['SHCXXCOMSTR']     = Transform("SHCXX")
5273546Sgblack@eecs.umich.eduExport('MakeAction')
5283546Sgblack@eecs.umich.edu
5293546Sgblack@eecs.umich.edu# Initialize the Link-Time Optimization (LTO) flags
5303546Sgblack@eecs.umich.edumain['LTO_CCFLAGS'] = []
5313546Sgblack@eecs.umich.edumain['LTO_LDFLAGS'] = []
5323546Sgblack@eecs.umich.edu
5333546Sgblack@eecs.umich.edu# According to the readme, tcmalloc works best if the compiler doesn't
5343546Sgblack@eecs.umich.edu# assume that we're using the builtin malloc and friends. These flags
5353546Sgblack@eecs.umich.edu# are compiler-specific, so we need to set them after we detect which
5363546Sgblack@eecs.umich.edu# compiler we're using.
5373546Sgblack@eecs.umich.edumain['TCMALLOC_CCFLAGS'] = []
5383546Sgblack@eecs.umich.edu
5393546Sgblack@eecs.umich.eduCXX_version = readCommand([main['CXX'],'--version'], exception=False)
5403546Sgblack@eecs.umich.eduCXX_V = readCommand([main['CXX'],'-V'], exception=False)
5413546Sgblack@eecs.umich.edu
5423546Sgblack@eecs.umich.edumain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
5433546Sgblack@eecs.umich.edumain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
5443546Sgblack@eecs.umich.eduif main['GCC'] + main['CLANG'] > 1:
5453546Sgblack@eecs.umich.edu    print 'Error: How can we have two at the same time?'
5463546Sgblack@eecs.umich.edu    Exit(1)
5473546Sgblack@eecs.umich.edu
5483546Sgblack@eecs.umich.edu# Set up default C++ compiler flags
5493546Sgblack@eecs.umich.eduif main['GCC'] or main['CLANG']:
5503546Sgblack@eecs.umich.edu    # As gcc and clang share many flags, do the common parts here
5513546Sgblack@eecs.umich.edu    main.Append(CCFLAGS=['-pipe'])
5523546Sgblack@eecs.umich.edu    main.Append(CCFLAGS=['-fno-strict-aliasing'])
553955SN/A    # Enable -Wall and then disable the few warnings that we
554955SN/A    # consistently violate
555955SN/A    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
556955SN/A    # We always compile using C++11, but only gcc >= 4.7 and clang 3.1
5571858SN/A    # actually use that name, so we stick with c++0x
5581858SN/A    main.Append(CXXFLAGS=['-std=c++0x'])
5591858SN/A    # Add selected sanity checks from -Wextra
5602632Sstever@eecs.umich.edu    main.Append(CXXFLAGS=['-Wmissing-field-initializers',
5612632Sstever@eecs.umich.edu                          '-Woverloaded-virtual'])
5622632Sstever@eecs.umich.eduelse:
5632632Sstever@eecs.umich.edu    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
5642632Sstever@eecs.umich.edu    print "Don't know what compiler options to use for your compiler."
5652634Sstever@eecs.umich.edu    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
5662638Sstever@eecs.umich.edu    print termcap.Yellow + '       version:' + termcap.Normal,
5672023SN/A    if not CXX_version:
5682632Sstever@eecs.umich.edu        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
5692632Sstever@eecs.umich.edu               termcap.Normal
5702632Sstever@eecs.umich.edu    else:
5712632Sstever@eecs.umich.edu        print CXX_version.replace('\n', '<nl>')
5722632Sstever@eecs.umich.edu    print "       If you're trying to use a compiler other than GCC"
5733716Sstever@eecs.umich.edu    print "       or clang, there appears to be something wrong with your"
5742632Sstever@eecs.umich.edu    print "       environment."
5752632Sstever@eecs.umich.edu    print "       "
5762632Sstever@eecs.umich.edu    print "       If you are trying to use a compiler other than those listed"
5772632Sstever@eecs.umich.edu    print "       above you will need to ease fix SConstruct and "
5782632Sstever@eecs.umich.edu    print "       src/SConscript to support that compiler."
5792023SN/A    Exit(1)
5802632Sstever@eecs.umich.edu
5812632Sstever@eecs.umich.eduif main['GCC']:
5821889SN/A    # Check for a supported version of gcc. >= 4.6 is chosen for its
5831889SN/A    # level of c++11 support. See
5842632Sstever@eecs.umich.edu    # http://gcc.gnu.org/projects/cxx0x.html for details. 4.6 is also
5852632Sstever@eecs.umich.edu    # the first version with proper LTO support.
5862632Sstever@eecs.umich.edu    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
5872632Sstever@eecs.umich.edu    if compareVersions(gcc_version, "4.6") < 0:
5883716Sstever@eecs.umich.edu        print 'Error: gcc version 4.6 or newer required.'
5893716Sstever@eecs.umich.edu        print '       Installed version:', gcc_version
5902632Sstever@eecs.umich.edu        Exit(1)
5912632Sstever@eecs.umich.edu
5922632Sstever@eecs.umich.edu    main['GCC_VERSION'] = gcc_version
5932632Sstever@eecs.umich.edu
5942632Sstever@eecs.umich.edu    # gcc from version 4.8 and above generates "rep; ret" instructions
5952632Sstever@eecs.umich.edu    # to avoid performance penalties on certain AMD chips. Older
5962632Sstever@eecs.umich.edu    # assemblers detect this as an error, "Error: expecting string
5972632Sstever@eecs.umich.edu    # instruction after `rep'"
5981888SN/A    if compareVersions(gcc_version, "4.8") > 0:
5991888SN/A        as_version = readCommand([main['AS'], '-v', '/dev/null'],
6001869SN/A                                 exception=False).split()
6011869SN/A
6021858SN/A        if not as_version or compareVersions(as_version[-1], "2.23") < 0:
6032598SN/A            print termcap.Yellow + termcap.Bold + \
6042598SN/A                'Warning: This combination of gcc and binutils have' + \
6052598SN/A                ' known incompatibilities.\n' + \
6062598SN/A                '         If you encounter build problems, please update ' + \
6072598SN/A                'binutils to 2.23.' + \
6081858SN/A                termcap.Normal
6091858SN/A
6101858SN/A    # Make sure we warn if the user has requested to compile with the
6111858SN/A    # Undefined Benahvior Sanitizer and this version of gcc does not
6121858SN/A    # support it.
6131858SN/A    if GetOption('with_ubsan') and \
6141858SN/A            compareVersions(gcc_version, '4.9') < 0:
6151858SN/A        print termcap.Yellow + termcap.Bold + \
6161858SN/A            'Warning: UBSan is only supported using gcc 4.9 and later.' + \
6171871SN/A            termcap.Normal
6181858SN/A
6191858SN/A    # Add the appropriate Link-Time Optimization (LTO) flags
6201858SN/A    # unless LTO is explicitly turned off. Note that these flags
6211858SN/A    # are only used by the fast target.
6221858SN/A    if not GetOption('no_lto'):
6231858SN/A        # Pass the LTO flag when compiling to produce GIMPLE
6241858SN/A        # output, we merely create the flags here and only append
6251858SN/A        # them later
6261858SN/A        main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
6271858SN/A
6281858SN/A        # Use the same amount of jobs for LTO as we are running
6291859SN/A        # scons with
6301859SN/A        main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
6311869SN/A
6321888SN/A    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
6332632Sstever@eecs.umich.edu                                  '-fno-builtin-realloc', '-fno-builtin-free'])
6341869SN/A
6351884SN/Aelif main['CLANG']:
6361884SN/A    # Check for a supported version of clang, >= 3.0 is needed to
6371884SN/A    # support similar features as gcc 4.6. See
6381884SN/A    # http://clang.llvm.org/cxx_status.html for details
6391884SN/A    clang_version_re = re.compile(".* version (\d+\.\d+)")
6401884SN/A    clang_version_match = clang_version_re.search(CXX_version)
6411965SN/A    if (clang_version_match):
6421965SN/A        clang_version = clang_version_match.groups()[0]
6431965SN/A        if compareVersions(clang_version, "3.0") < 0:
6442761Sstever@eecs.umich.edu            print 'Error: clang version 3.0 or newer required.'
6451869SN/A            print '       Installed version:', clang_version
6461869SN/A            Exit(1)
6472632Sstever@eecs.umich.edu    else:
6482667Sstever@eecs.umich.edu        print 'Error: Unable to determine clang version.'
6491869SN/A        Exit(1)
6501869SN/A
6512929Sktlim@umich.edu    # clang has a few additional warnings that we disable,
6522929Sktlim@umich.edu    # tautological comparisons are allowed due to unsigned integers
6533716Sstever@eecs.umich.edu    # being compared to constants that happen to be 0, and extraneous
6542929Sktlim@umich.edu    # parantheses are allowed due to Ruby's printing of the AST,
655955SN/A    # finally self assignments are allowed as the generated CPU code
6562598SN/A    # is relying on this
6572598SN/A    main.Append(CCFLAGS=['-Wno-tautological-compare',
6583546Sgblack@eecs.umich.edu                         '-Wno-parentheses',
659955SN/A                         '-Wno-self-assign',
660955SN/A                         # Some versions of libstdc++ (4.8?) seem to
661955SN/A                         # use struct hash and class hash
6621530SN/A                         # interchangeably.
663955SN/A                         '-Wno-mismatched-tags',
664955SN/A                         ])
665955SN/A
666    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
667
668    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
669    # opposed to libstdc++, as the later is dated.
670    if sys.platform == "darwin":
671        main.Append(CXXFLAGS=['-stdlib=libc++'])
672        main.Append(LIBS=['c++'])
673
674else:
675    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
676    print "Don't know what compiler options to use for your compiler."
677    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
678    print termcap.Yellow + '       version:' + termcap.Normal,
679    if not CXX_version:
680        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
681               termcap.Normal
682    else:
683        print CXX_version.replace('\n', '<nl>')
684    print "       If you're trying to use a compiler other than GCC"
685    print "       or clang, there appears to be something wrong with your"
686    print "       environment."
687    print "       "
688    print "       If you are trying to use a compiler other than those listed"
689    print "       above you will need to ease fix SConstruct and "
690    print "       src/SConscript to support that compiler."
691    Exit(1)
692
693# Set up common yacc/bison flags (needed for Ruby)
694main['YACCFLAGS'] = '-d'
695main['YACCHXXFILESUFFIX'] = '.hh'
696
697# Do this after we save setting back, or else we'll tack on an
698# extra 'qdo' every time we run scons.
699if main['BATCH']:
700    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
701    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
702    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
703    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
704    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
705
706if sys.platform == 'cygwin':
707    # cygwin has some header file issues...
708    main.Append(CCFLAGS=["-Wno-uninitialized"])
709
710# Check for the protobuf compiler
711protoc_version = readCommand([main['PROTOC'], '--version'],
712                             exception='').split()
713
714# First two words should be "libprotoc x.y.z"
715if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
716    print termcap.Yellow + termcap.Bold + \
717        'Warning: Protocol buffer compiler (protoc) not found.\n' + \
718        '         Please install protobuf-compiler for tracing support.' + \
719        termcap.Normal
720    main['PROTOC'] = False
721else:
722    # Based on the availability of the compress stream wrappers,
723    # require 2.1.0
724    min_protoc_version = '2.1.0'
725    if compareVersions(protoc_version[1], min_protoc_version) < 0:
726        print termcap.Yellow + termcap.Bold + \
727            'Warning: protoc version', min_protoc_version, \
728            'or newer required.\n' + \
729            '         Installed version:', protoc_version[1], \
730            termcap.Normal
731        main['PROTOC'] = False
732    else:
733        # Attempt to determine the appropriate include path and
734        # library path using pkg-config, that means we also need to
735        # check for pkg-config. Note that it is possible to use
736        # protobuf without the involvement of pkg-config. Later on we
737        # check go a library config check and at that point the test
738        # will fail if libprotobuf cannot be found.
739        if readCommand(['pkg-config', '--version'], exception=''):
740            try:
741                # Attempt to establish what linking flags to add for protobuf
742                # using pkg-config
743                main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
744            except:
745                print termcap.Yellow + termcap.Bold + \
746                    'Warning: pkg-config could not get protobuf flags.' + \
747                    termcap.Normal
748
749# Check for SWIG
750if not main.has_key('SWIG'):
751    print 'Error: SWIG utility not found.'
752    print '       Please install (see http://www.swig.org) and retry.'
753    Exit(1)
754
755# Check for appropriate SWIG version
756swig_version = readCommand([main['SWIG'], '-version'], exception='').split()
757# First 3 words should be "SWIG Version x.y.z"
758if len(swig_version) < 3 or \
759        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
760    print 'Error determining SWIG version.'
761    Exit(1)
762
763min_swig_version = '2.0.4'
764if compareVersions(swig_version[2], min_swig_version) < 0:
765    print 'Error: SWIG version', min_swig_version, 'or newer required.'
766    print '       Installed version:', swig_version[2]
767    Exit(1)
768
769# Check for known incompatibilities. The standard library shipped with
770# gcc >= 4.9 does not play well with swig versions prior to 3.0
771if main['GCC'] and compareVersions(gcc_version, '4.9') >= 0 and \
772        compareVersions(swig_version[2], '3.0') < 0:
773    print termcap.Yellow + termcap.Bold + \
774        'Warning: This combination of gcc and swig have' + \
775        ' known incompatibilities.\n' + \
776        '         If you encounter build problems, please update ' + \
777        'swig to 3.0 or later.' + \
778        termcap.Normal
779
780# Set up SWIG flags & scanner
781swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
782main.Append(SWIGFLAGS=swig_flags)
783
784# Check for 'timeout' from GNU coreutils.  If present, regressions
785# will be run with a time limit.
786TIMEOUT_version = readCommand(['timeout', '--version'], exception=False)
787main['TIMEOUT'] = TIMEOUT_version and TIMEOUT_version.find('timeout') == 0
788
789# filter out all existing swig scanners, they mess up the dependency
790# stuff for some reason
791scanners = []
792for scanner in main['SCANNERS']:
793    skeys = scanner.skeys
794    if skeys == '.i':
795        continue
796
797    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
798        continue
799
800    scanners.append(scanner)
801
802# add the new swig scanner that we like better
803from SCons.Scanner import ClassicCPP as CPPScanner
804swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
805scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
806
807# replace the scanners list that has what we want
808main['SCANNERS'] = scanners
809
810# Add a custom Check function to the Configure context so that we can
811# figure out if the compiler adds leading underscores to global
812# variables.  This is needed for the autogenerated asm files that we
813# use for embedding the python code.
814def CheckLeading(context):
815    context.Message("Checking for leading underscore in global variables...")
816    # 1) Define a global variable called x from asm so the C compiler
817    #    won't change the symbol at all.
818    # 2) Declare that variable.
819    # 3) Use the variable
820    #
821    # If the compiler prepends an underscore, this will successfully
822    # link because the external symbol 'x' will be called '_x' which
823    # was defined by the asm statement.  If the compiler does not
824    # prepend an underscore, this will not successfully link because
825    # '_x' will have been defined by assembly, while the C portion of
826    # the code will be trying to use 'x'
827    ret = context.TryLink('''
828        asm(".globl _x; _x: .byte 0");
829        extern int x;
830        int main() { return x; }
831        ''', extension=".c")
832    context.env.Append(LEADING_UNDERSCORE=ret)
833    context.Result(ret)
834    return ret
835
836# Add a custom Check function to test for structure members.
837def CheckMember(context, include, decl, member, include_quotes="<>"):
838    context.Message("Checking for member %s in %s..." %
839                    (member, decl))
840    text = """
841#include %(header)s
842int main(){
843  %(decl)s test;
844  (void)test.%(member)s;
845  return 0;
846};
847""" % { "header" : include_quotes[0] + include + include_quotes[1],
848        "decl" : decl,
849        "member" : member,
850        }
851
852    ret = context.TryCompile(text, extension=".cc")
853    context.Result(ret)
854    return ret
855
856# Platform-specific configuration.  Note again that we assume that all
857# builds under a given build root run on the same host platform.
858conf = Configure(main,
859                 conf_dir = joinpath(build_root, '.scons_config'),
860                 log_file = joinpath(build_root, 'scons_config.log'),
861                 custom_tests = {
862        'CheckLeading' : CheckLeading,
863        'CheckMember' : CheckMember,
864        })
865
866# Check for leading underscores.  Don't really need to worry either
867# way so don't need to check the return code.
868conf.CheckLeading()
869
870# Check if we should compile a 64 bit binary on Mac OS X/Darwin
871try:
872    import platform
873    uname = platform.uname()
874    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
875        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
876            main.Append(CCFLAGS=['-arch', 'x86_64'])
877            main.Append(CFLAGS=['-arch', 'x86_64'])
878            main.Append(LINKFLAGS=['-arch', 'x86_64'])
879            main.Append(ASFLAGS=['-arch', 'x86_64'])
880except:
881    pass
882
883# Recent versions of scons substitute a "Null" object for Configure()
884# when configuration isn't necessary, e.g., if the "--help" option is
885# present.  Unfortuantely this Null object always returns false,
886# breaking all our configuration checks.  We replace it with our own
887# more optimistic null object that returns True instead.
888if not conf:
889    def NullCheck(*args, **kwargs):
890        return True
891
892    class NullConf:
893        def __init__(self, env):
894            self.env = env
895        def Finish(self):
896            return self.env
897        def __getattr__(self, mname):
898            return NullCheck
899
900    conf = NullConf(main)
901
902# Cache build files in the supplied directory.
903if main['M5_BUILD_CACHE']:
904    print 'Using build cache located at', main['M5_BUILD_CACHE']
905    CacheDir(main['M5_BUILD_CACHE'])
906
907if not GetOption('without_python'):
908    # Find Python include and library directories for embedding the
909    # interpreter. We rely on python-config to resolve the appropriate
910    # includes and linker flags. ParseConfig does not seem to understand
911    # the more exotic linker flags such as -Xlinker and -export-dynamic so
912    # we add them explicitly below. If you want to link in an alternate
913    # version of python, see above for instructions on how to invoke
914    # scons with the appropriate PATH set.
915    #
916    # First we check if python2-config exists, else we use python-config
917    python_config = readCommand(['which', 'python2-config'],
918                                exception='').strip()
919    if not os.path.exists(python_config):
920        python_config = readCommand(['which', 'python-config'],
921                                    exception='').strip()
922    py_includes = readCommand([python_config, '--includes'],
923                              exception='').split()
924    # Strip the -I from the include folders before adding them to the
925    # CPPPATH
926    main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes))
927
928    # Read the linker flags and split them into libraries and other link
929    # flags. The libraries are added later through the call the CheckLib.
930    py_ld_flags = readCommand([python_config, '--ldflags'],
931        exception='').split()
932    py_libs = []
933    for lib in py_ld_flags:
934         if not lib.startswith('-l'):
935             main.Append(LINKFLAGS=[lib])
936         else:
937             lib = lib[2:]
938             if lib not in py_libs:
939                 py_libs.append(lib)
940
941    # verify that this stuff works
942    if not conf.CheckHeader('Python.h', '<>'):
943        print "Error: can't find Python.h header in", py_includes
944        print "Install Python headers (package python-dev on Ubuntu and RedHat)"
945        Exit(1)
946
947    for lib in py_libs:
948        if not conf.CheckLib(lib):
949            print "Error: can't find library %s required by python" % lib
950            Exit(1)
951
952# On Solaris you need to use libsocket for socket ops
953if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
954   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
955       print "Can't find library with socket calls (e.g. accept())"
956       Exit(1)
957
958# Check for zlib.  If the check passes, libz will be automatically
959# added to the LIBS environment variable.
960if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
961    print 'Error: did not find needed zlib compression library '\
962          'and/or zlib.h header file.'
963    print '       Please install zlib and try again.'
964    Exit(1)
965
966# If we have the protobuf compiler, also make sure we have the
967# development libraries. If the check passes, libprotobuf will be
968# automatically added to the LIBS environment variable. After
969# this, we can use the HAVE_PROTOBUF flag to determine if we have
970# got both protoc and libprotobuf available.
971main['HAVE_PROTOBUF'] = main['PROTOC'] and \
972    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
973                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
974
975# If we have the compiler but not the library, print another warning.
976if main['PROTOC'] and not main['HAVE_PROTOBUF']:
977    print termcap.Yellow + termcap.Bold + \
978        'Warning: did not find protocol buffer library and/or headers.\n' + \
979    '       Please install libprotobuf-dev for tracing support.' + \
980    termcap.Normal
981
982# Check for librt.
983have_posix_clock = \
984    conf.CheckLibWithHeader(None, 'time.h', 'C',
985                            'clock_nanosleep(0,0,NULL,NULL);') or \
986    conf.CheckLibWithHeader('rt', 'time.h', 'C',
987                            'clock_nanosleep(0,0,NULL,NULL);')
988
989have_posix_timers = \
990    conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
991                            'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
992
993if not GetOption('without_tcmalloc'):
994    if conf.CheckLib('tcmalloc'):
995        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
996    elif conf.CheckLib('tcmalloc_minimal'):
997        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
998    else:
999        print termcap.Yellow + termcap.Bold + \
1000              "You can get a 12% performance improvement by "\
1001              "installing tcmalloc (libgoogle-perftools-dev package "\
1002              "on Ubuntu or RedHat)." + termcap.Normal
1003
1004if not have_posix_clock:
1005    print "Can't find library for POSIX clocks."
1006
1007# Check for <fenv.h> (C99 FP environment control)
1008have_fenv = conf.CheckHeader('fenv.h', '<>')
1009if not have_fenv:
1010    print "Warning: Header file <fenv.h> not found."
1011    print "         This host has no IEEE FP rounding mode control."
1012
1013# Check if we should enable KVM-based hardware virtualization. The API
1014# we rely on exists since version 2.6.36 of the kernel, but somehow
1015# the KVM_API_VERSION does not reflect the change. We test for one of
1016# the types as a fall back.
1017have_kvm = conf.CheckHeader('linux/kvm.h', '<>') and \
1018    conf.CheckTypeSize('struct kvm_xsave', '#include <linux/kvm.h>') != 0
1019if not have_kvm:
1020    print "Info: Compatible header file <linux/kvm.h> not found, " \
1021        "disabling KVM support."
1022
1023# Check if the requested target ISA is compatible with the host
1024def is_isa_kvm_compatible(isa):
1025    isa_comp_table = {
1026        "arm" : ( "armv7l" ),
1027        "x86" : ( "x86_64" ),
1028        }
1029    try:
1030        import platform
1031        host_isa = platform.machine()
1032    except:
1033        print "Warning: Failed to determine host ISA."
1034        return False
1035
1036    return host_isa in isa_comp_table.get(isa, [])
1037
1038
1039# Check if the exclude_host attribute is available. We want this to
1040# get accurate instruction counts in KVM.
1041main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
1042    'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
1043
1044
1045######################################################################
1046#
1047# Finish the configuration
1048#
1049main = conf.Finish()
1050
1051######################################################################
1052#
1053# Collect all non-global variables
1054#
1055
1056# Define the universe of supported ISAs
1057all_isa_list = [ ]
1058Export('all_isa_list')
1059
1060class CpuModel(object):
1061    '''The CpuModel class encapsulates everything the ISA parser needs to
1062    know about a particular CPU model.'''
1063
1064    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
1065    dict = {}
1066
1067    # Constructor.  Automatically adds models to CpuModel.dict.
1068    def __init__(self, name, default=False):
1069        self.name = name           # name of model
1070
1071        # This cpu is enabled by default
1072        self.default = default
1073
1074        # Add self to dict
1075        if name in CpuModel.dict:
1076            raise AttributeError, "CpuModel '%s' already registered" % name
1077        CpuModel.dict[name] = self
1078
1079Export('CpuModel')
1080
1081# Sticky variables get saved in the variables file so they persist from
1082# one invocation to the next (unless overridden, in which case the new
1083# value becomes sticky).
1084sticky_vars = Variables(args=ARGUMENTS)
1085Export('sticky_vars')
1086
1087# Sticky variables that should be exported
1088export_vars = []
1089Export('export_vars')
1090
1091# For Ruby
1092all_protocols = []
1093Export('all_protocols')
1094protocol_dirs = []
1095Export('protocol_dirs')
1096slicc_includes = []
1097Export('slicc_includes')
1098
1099# Walk the tree and execute all SConsopts scripts that wil add to the
1100# above variables
1101if GetOption('verbose'):
1102    print "Reading SConsopts"
1103for bdir in [ base_dir ] + extras_dir_list:
1104    if not isdir(bdir):
1105        print "Error: directory '%s' does not exist" % bdir
1106        Exit(1)
1107    for root, dirs, files in os.walk(bdir):
1108        if 'SConsopts' in files:
1109            if GetOption('verbose'):
1110                print "Reading", joinpath(root, 'SConsopts')
1111            SConscript(joinpath(root, 'SConsopts'))
1112
1113all_isa_list.sort()
1114
1115sticky_vars.AddVariables(
1116    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
1117    ListVariable('CPU_MODELS', 'CPU models',
1118                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
1119                 sorted(CpuModel.dict.keys())),
1120    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
1121                 False),
1122    BoolVariable('SS_COMPATIBLE_FP',
1123                 'Make floating-point results compatible with SimpleScalar',
1124                 False),
1125    BoolVariable('USE_SSE2',
1126                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
1127                 False),
1128    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
1129    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
1130    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
1131    BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm),
1132    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
1133                  all_protocols),
1134    )
1135
1136# These variables get exported to #defines in config/*.hh (see src/SConscript).
1137export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE',
1138                'USE_POSIX_CLOCK', 'PROTOCOL', 'HAVE_PROTOBUF',
1139                'HAVE_PERF_ATTR_EXCLUDE_HOST']
1140
1141###################################################
1142#
1143# Define a SCons builder for configuration flag headers.
1144#
1145###################################################
1146
1147# This function generates a config header file that #defines the
1148# variable symbol to the current variable setting (0 or 1).  The source
1149# operands are the name of the variable and a Value node containing the
1150# value of the variable.
1151def build_config_file(target, source, env):
1152    (variable, value) = [s.get_contents() for s in source]
1153    f = file(str(target[0]), 'w')
1154    print >> f, '#define', variable, value
1155    f.close()
1156    return None
1157
1158# Combine the two functions into a scons Action object.
1159config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
1160
1161# The emitter munges the source & target node lists to reflect what
1162# we're really doing.
1163def config_emitter(target, source, env):
1164    # extract variable name from Builder arg
1165    variable = str(target[0])
1166    # True target is config header file
1167    target = joinpath('config', variable.lower() + '.hh')
1168    val = env[variable]
1169    if isinstance(val, bool):
1170        # Force value to 0/1
1171        val = int(val)
1172    elif isinstance(val, str):
1173        val = '"' + val + '"'
1174
1175    # Sources are variable name & value (packaged in SCons Value nodes)
1176    return ([target], [Value(variable), Value(val)])
1177
1178config_builder = Builder(emitter = config_emitter, action = config_action)
1179
1180main.Append(BUILDERS = { 'ConfigFile' : config_builder })
1181
1182# libelf build is shared across all configs in the build root.
1183main.SConscript('ext/libelf/SConscript',
1184                variant_dir = joinpath(build_root, 'libelf'))
1185
1186# gzstream build is shared across all configs in the build root.
1187main.SConscript('ext/gzstream/SConscript',
1188                variant_dir = joinpath(build_root, 'gzstream'))
1189
1190# libfdt build is shared across all configs in the build root.
1191main.SConscript('ext/libfdt/SConscript',
1192                variant_dir = joinpath(build_root, 'libfdt'))
1193
1194# fputils build is shared across all configs in the build root.
1195main.SConscript('ext/fputils/SConscript',
1196                variant_dir = joinpath(build_root, 'fputils'))
1197
1198# DRAMSim2 build is shared across all configs in the build root.
1199main.SConscript('ext/dramsim2/SConscript',
1200                variant_dir = joinpath(build_root, 'dramsim2'))
1201
1202# DRAMPower build is shared across all configs in the build root.
1203main.SConscript('ext/drampower/SConscript',
1204                variant_dir = joinpath(build_root, 'drampower'))
1205
1206###################################################
1207#
1208# This function is used to set up a directory with switching headers
1209#
1210###################################################
1211
1212main['ALL_ISA_LIST'] = all_isa_list
1213all_isa_deps = {}
1214def make_switching_dir(dname, switch_headers, env):
1215    # Generate the header.  target[0] is the full path of the output
1216    # header to generate.  'source' is a dummy variable, since we get the
1217    # list of ISAs from env['ALL_ISA_LIST'].
1218    def gen_switch_hdr(target, source, env):
1219        fname = str(target[0])
1220        isa = env['TARGET_ISA'].lower()
1221        try:
1222            f = open(fname, 'w')
1223            print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
1224            f.close()
1225        except IOError:
1226            print "Failed to create %s" % fname
1227            raise
1228
1229    # Build SCons Action object. 'varlist' specifies env vars that this
1230    # action depends on; when env['ALL_ISA_LIST'] changes these actions
1231    # should get re-executed.
1232    switch_hdr_action = MakeAction(gen_switch_hdr,
1233                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
1234
1235    # Instantiate actions for each header
1236    for hdr in switch_headers:
1237        env.Command(hdr, [], switch_hdr_action)
1238
1239    isa_target = Dir('.').up().name.lower().replace('_', '-')
1240    env['PHONY_BASE'] = '#'+isa_target
1241    all_isa_deps[isa_target] = None
1242
1243Export('make_switching_dir')
1244
1245# all-isas -> all-deps -> all-environs -> all_targets
1246main.Alias('#all-isas', [])
1247main.Alias('#all-deps', '#all-isas')
1248
1249# Dummy target to ensure all environments are created before telling
1250# SCons what to actually make (the command line arguments).  We attach
1251# them to the dependence graph after the environments are complete.
1252ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work.
1253def environsComplete(target, source, env):
1254    for t in ORIG_BUILD_TARGETS:
1255        main.Depends('#all-targets', t)
1256
1257# Each build/* switching_dir attaches its *-environs target to #all-environs.
1258main.Append(BUILDERS = {'CompleteEnvirons' :
1259                        Builder(action=MakeAction(environsComplete, None))})
1260main.CompleteEnvirons('#all-environs', [])
1261
1262def doNothing(**ignored): pass
1263main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))})
1264
1265# The final target to which all the original targets ultimately get attached.
1266main.Dummy('#all-targets', '#all-environs')
1267BUILD_TARGETS[:] = ['#all-targets']
1268
1269###################################################
1270#
1271# Define build environments for selected configurations.
1272#
1273###################################################
1274
1275for variant_path in variant_paths:
1276    if not GetOption('silent'):
1277        print "Building in", variant_path
1278
1279    # Make a copy of the build-root environment to use for this config.
1280    env = main.Clone()
1281    env['BUILDDIR'] = variant_path
1282
1283    # variant_dir is the tail component of build path, and is used to
1284    # determine the build parameters (e.g., 'ALPHA_SE')
1285    (build_root, variant_dir) = splitpath(variant_path)
1286
1287    # Set env variables according to the build directory config.
1288    sticky_vars.files = []
1289    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1290    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1291    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1292    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1293    if isfile(current_vars_file):
1294        sticky_vars.files.append(current_vars_file)
1295        if not GetOption('silent'):
1296            print "Using saved variables file %s" % current_vars_file
1297    else:
1298        # Build dir-specific variables file doesn't exist.
1299
1300        # Make sure the directory is there so we can create it later
1301        opt_dir = dirname(current_vars_file)
1302        if not isdir(opt_dir):
1303            mkdir(opt_dir)
1304
1305        # Get default build variables from source tree.  Variables are
1306        # normally determined by name of $VARIANT_DIR, but can be
1307        # overridden by '--default=' arg on command line.
1308        default = GetOption('default')
1309        opts_dir = joinpath(main.root.abspath, 'build_opts')
1310        if default:
1311            default_vars_files = [joinpath(build_root, 'variables', default),
1312                                  joinpath(opts_dir, default)]
1313        else:
1314            default_vars_files = [joinpath(opts_dir, variant_dir)]
1315        existing_files = filter(isfile, default_vars_files)
1316        if existing_files:
1317            default_vars_file = existing_files[0]
1318            sticky_vars.files.append(default_vars_file)
1319            print "Variables file %s not found,\n  using defaults in %s" \
1320                  % (current_vars_file, default_vars_file)
1321        else:
1322            print "Error: cannot find variables file %s or " \
1323                  "default file(s) %s" \
1324                  % (current_vars_file, ' or '.join(default_vars_files))
1325            Exit(1)
1326
1327    # Apply current variable settings to env
1328    sticky_vars.Update(env)
1329
1330    help_texts["local_vars"] += \
1331        "Build variables for %s:\n" % variant_dir \
1332                 + sticky_vars.GenerateHelpText(env)
1333
1334    # Process variable settings.
1335
1336    if not have_fenv and env['USE_FENV']:
1337        print "Warning: <fenv.h> not available; " \
1338              "forcing USE_FENV to False in", variant_dir + "."
1339        env['USE_FENV'] = False
1340
1341    if not env['USE_FENV']:
1342        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1343        print "         FP results may deviate slightly from other platforms."
1344
1345    if env['EFENCE']:
1346        env.Append(LIBS=['efence'])
1347
1348    if env['USE_KVM']:
1349        if not have_kvm:
1350            print "Warning: Can not enable KVM, host seems to lack KVM support"
1351            env['USE_KVM'] = False
1352        elif not have_posix_timers:
1353            print "Warning: Can not enable KVM, host seems to lack support " \
1354                "for POSIX timers"
1355            env['USE_KVM'] = False
1356        elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1357            print "Info: KVM support disabled due to unsupported host and " \
1358                "target ISA combination"
1359            env['USE_KVM'] = False
1360
1361    # Warn about missing optional functionality
1362    if env['USE_KVM']:
1363        if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1364            print "Warning: perf_event headers lack support for the " \
1365                "exclude_host attribute. KVM instruction counts will " \
1366                "be inaccurate."
1367
1368    # Save sticky variable settings back to current variables file
1369    sticky_vars.Save(current_vars_file, env)
1370
1371    if env['USE_SSE2']:
1372        env.Append(CCFLAGS=['-msse2'])
1373
1374    # The src/SConscript file sets up the build rules in 'env' according
1375    # to the configured variables.  It returns a list of environments,
1376    # one for each variant build (debug, opt, etc.)
1377    SConscript('src/SConscript', variant_dir = variant_path, exports = 'env')
1378
1379def pairwise(iterable):
1380    "s -> (s0,s1), (s1,s2), (s2, s3), ..."
1381    a, b = itertools.tee(iterable)
1382    b.next()
1383    return itertools.izip(a, b)
1384
1385# Create false dependencies so SCons will parse ISAs, establish
1386# dependencies, and setup the build Environments serially. Either
1387# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j
1388# greater than 1. It appears to be standard race condition stuff; it
1389# doesn't always fail, but usually, and the behaviors are different.
1390# Every time I tried to remove this, builds would fail in some
1391# creative new way. So, don't do that. You'll want to, though, because
1392# tests/SConscript takes a long time to make its Environments.
1393for t1, t2 in pairwise(sorted(all_isa_deps.iterkeys())):
1394    main.Depends('#%s-deps'     % t2, '#%s-deps'     % t1)
1395    main.Depends('#%s-environs' % t2, '#%s-environs' % t1)
1396
1397# base help text
1398Help('''
1399Usage: scons [scons options] [build variables] [target(s)]
1400
1401Extra scons options:
1402%(options)s
1403
1404Global build variables:
1405%(global_vars)s
1406
1407%(local_vars)s
1408''' % help_texts)
1409