SConstruct revision 11887
1955SN/A# -*- mode:python -*-
2955SN/A
35871Snate@binkert.org# Copyright (c) 2013, 2015, 2016 ARM Limited
41762SN/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
28955SN/A# contributors may be used to endorse or promote products derived from
292665Ssaidi@eecs.umich.edu# this software without specific prior written permission.
302665Ssaidi@eecs.umich.edu#
315863Snate@binkert.org# 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
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
392632Sstever@eecs.umich.edu# 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
41955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422632Sstever@eecs.umich.edu#
432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt
442761Sstever@eecs.umich.edu#          Nathan Binkert
452632Sstever@eecs.umich.edu
462632Sstever@eecs.umich.edu###################################################
472632Sstever@eecs.umich.edu#
482761Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file.
492761Sstever@eecs.umich.edu#
502761Sstever@eecs.umich.edu# 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>'
522632Sstever@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
562761Sstever@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:
612632Sstever@eecs.umich.edu#
622632Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
632632Sstever@eecs.umich.edu#   scons to search up the directory tree for this SConstruct file.
642632Sstever@eecs.umich.edu#   % 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
685863Snate@binkert.org#   in a directory outside of the source tree.  The '-C' option tells
695863Snate@binkert.org#   scons to chdir to the specified directory to find this SConstruct
705863Snate@binkert.org#   file.
715863Snate@binkert.org#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
725863Snate@binkert.org#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
735863Snate@binkert.org#
745863Snate@binkert.org# You can use 'scons -H' to print scons options.  If you're in this
755863Snate@binkert.org# 'gem5' directory (or use -u or -C to tell scons where to find this
765863Snate@binkert.org# file), you can use 'scons -h' to print all the gem5-specific build
775863Snate@binkert.org# options as well.
785863Snate@binkert.org#
795863Snate@binkert.org###################################################
805863Snate@binkert.org
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:
925863Snate@binkert.org    http://gem5.org/Dependencies
935863Snate@binkert.org"""
945863Snate@binkert.org    raise
955863Snate@binkert.org
965863Snate@binkert.org# We ensure the python version early because because python-config
975863Snate@binkert.org# requires python 2.5
985863Snate@binkert.orgtry:
996654Snate@binkert.org    EnsurePythonVersion(2, 5)
100955SN/Aexcept SystemExit, e:
1015396Ssaidi@eecs.umich.edu    print """
1025863Snate@binkert.orgYou can use a non-default installation of the Python interpreter by
1035863Snate@binkert.orgrearranging your PATH so that scons finds the non-default 'python' and
1044202Sbinkertn@umich.edu'python-config' first.
1055863Snate@binkert.org
1065863Snate@binkert.orgFor more details, see:
1075863Snate@binkert.org    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
1085863Snate@binkert.org"""
109955SN/A    raise
1106654Snate@binkert.org
1115273Sstever@gmail.com# Global Python includes
1125871Snate@binkert.orgimport itertools
1135273Sstever@gmail.comimport os
1146655Snate@binkert.orgimport re
1156655Snate@binkert.orgimport shutil
1166655Snate@binkert.orgimport subprocess
1176655Snate@binkert.orgimport sys
1186655Snate@binkert.org
1196655Snate@binkert.orgfrom os import mkdir, environ
1205871Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath
1216654Snate@binkert.orgfrom os.path import exists,  isdir, isfile
1225396Ssaidi@eecs.umich.edufrom os.path import join as joinpath, split as splitpath
1235871Snate@binkert.org
1245871Snate@binkert.org# SCons includes
1256121Snate@binkert.orgimport SCons
1265871Snate@binkert.orgimport SCons.Node
1275871Snate@binkert.org
1286003Snate@binkert.orgextra_python_paths = [
1296655Snate@binkert.org    Dir('src/python').srcnode().abspath, # gem5 includes
130955SN/A    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1315871Snate@binkert.org    ]
1325871Snate@binkert.org
1335871Snate@binkert.orgsys.path[1:1] = extra_python_paths
1345871Snate@binkert.org
135955SN/Afrom m5.util import compareVersions, readCommand
1366121Snate@binkert.orgfrom m5.util.terminal import get_termcap
1376121Snate@binkert.org
1386121Snate@binkert.orghelp_texts = {
1391533SN/A    "options" : "",
1406655Snate@binkert.org    "global_vars" : "",
1416655Snate@binkert.org    "local_vars" : ""
1426655Snate@binkert.org}
1436655Snate@binkert.org
1445871Snate@binkert.orgExport("help_texts")
1455871Snate@binkert.org
1465863Snate@binkert.org
1475871Snate@binkert.org# There's a bug in scons in that (1) by default, the help texts from
1485871Snate@binkert.org# AddOption() are supposed to be displayed when you type 'scons -h'
1495871Snate@binkert.org# and (2) you can override the help displayed by 'scons -h' using the
1505871Snate@binkert.org# Help() function, but these two features are incompatible: once
1515871Snate@binkert.org# you've overridden the help text using Help(), there's no way to get
1525863Snate@binkert.org# at the help texts from AddOptions.  See:
1536121Snate@binkert.org#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1545863Snate@binkert.org#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1555871Snate@binkert.org# This hack lets us extract the help text from AddOptions and
1564678Snate@binkert.org# re-inject it via Help().  Ideally someday this bug will be fixed and
1574678Snate@binkert.org# we can just use AddOption directly.
1584678Snate@binkert.orgdef AddLocalOption(*args, **kwargs):
1594678Snate@binkert.org    col_width = 30
1604678Snate@binkert.org
1614678Snate@binkert.org    help = "  " + ", ".join(args)
1624678Snate@binkert.org    if "help" in kwargs:
1634678Snate@binkert.org        length = len(help)
1644678Snate@binkert.org        if length >= col_width:
1654678Snate@binkert.org            help += "\n" + " " * col_width
1664678Snate@binkert.org        else:
1674678Snate@binkert.org            help += " " * (col_width - length)
1687807Snate@binkert.org        help += kwargs["help"]
1696121Snate@binkert.org    help_texts["options"] += help + "\n"
1704678Snate@binkert.org
1715871Snate@binkert.org    AddOption(*args, **kwargs)
1725871Snate@binkert.org
1735871Snate@binkert.orgAddLocalOption('--colors', dest='use_colors', action='store_true',
1745871Snate@binkert.org               help="Add color to abbreviated scons output")
1755871Snate@binkert.orgAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1765871Snate@binkert.org               help="Don't add color to abbreviated scons output")
1775871Snate@binkert.orgAddLocalOption('--with-cxx-config', dest='with_cxx_config',
1785871Snate@binkert.org               action='store_true',
1795871Snate@binkert.org               help="Build with support for C++-based configuration")
1805871Snate@binkert.orgAddLocalOption('--default', dest='default', type='string', action='store',
1815871Snate@binkert.org               help='Override which build_opts file to use for defaults')
1825871Snate@binkert.orgAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1835871Snate@binkert.org               help='Disable style checking hooks')
1845990Ssaidi@eecs.umich.eduAddLocalOption('--no-lto', dest='no_lto', action='store_true',
1855871Snate@binkert.org               help='Disable Link-Time Optimization for fast')
1865871Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1875871Snate@binkert.org               help='Update test reference outputs')
1884678Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true',
1896654Snate@binkert.org               help='Print full tool command lines')
1905871Snate@binkert.orgAddLocalOption('--without-python', dest='without_python',
1915871Snate@binkert.org               action='store_true',
1925871Snate@binkert.org               help='Build without Python configuration support')
1935871Snate@binkert.orgAddLocalOption('--without-tcmalloc', dest='without_tcmalloc',
1945871Snate@binkert.org               action='store_true',
1955871Snate@binkert.org               help='Disable linking against tcmalloc')
1965871Snate@binkert.orgAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true',
1975871Snate@binkert.org               help='Build with Undefined Behavior Sanitizer if available')
1985871Snate@binkert.orgAddLocalOption('--with-asan', dest='with_asan', action='store_true',
1994678Snate@binkert.org               help='Build with Address Sanitizer if available')
2005871Snate@binkert.org
2014678Snate@binkert.orgtermcap = get_termcap(GetOption('use_colors'))
2025871Snate@binkert.org
2035871Snate@binkert.org########################################################################
2045871Snate@binkert.org#
2055871Snate@binkert.org# Set up the main build environment.
2065871Snate@binkert.org#
2075871Snate@binkert.org########################################################################
2085871Snate@binkert.org
2095871Snate@binkert.org# export TERM so that clang reports errors in color
2105871Snate@binkert.orguse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
2116121Snate@binkert.org                 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC',
2126121Snate@binkert.org                 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ])
2135863Snate@binkert.org
214955SN/Ause_prefixes = [
215955SN/A    "ASAN_",           # address sanitizer symbolizer path and settings
2162632Sstever@eecs.umich.edu    "CCACHE_",         # ccache (caching compiler wrapper) configuration
2172632Sstever@eecs.umich.edu    "CCC_",            # clang static analyzer configuration
218955SN/A    "DISTCC_",         # distcc (distributed compiler wrapper) configuration
219955SN/A    "INCLUDE_SERVER_", # distcc pump server settings
220955SN/A    "M5",              # M5 configuration (e.g., path to kernels)
221955SN/A    ]
2225863Snate@binkert.org
223955SN/Ause_env = {}
2242632Sstever@eecs.umich.edufor key,val in sorted(os.environ.iteritems()):
2252632Sstever@eecs.umich.edu    if key in use_vars or \
2262632Sstever@eecs.umich.edu            any([key.startswith(prefix) for prefix in use_prefixes]):
2272632Sstever@eecs.umich.edu        use_env[key] = val
2282632Sstever@eecs.umich.edu
2292632Sstever@eecs.umich.edu# Tell scons to avoid implicit command dependencies to avoid issues
2302632Sstever@eecs.umich.edu# with the param wrappes being compiled twice (see
2312632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2811)
2322632Sstever@eecs.umich.edumain = Environment(ENV=use_env, IMPLICIT_COMMAND_DEPENDENCIES=0)
2332632Sstever@eecs.umich.edumain.Decider('MD5-timestamp')
2342632Sstever@eecs.umich.edumain.root = Dir(".")         # The current directory (where this file lives).
2352632Sstever@eecs.umich.edumain.srcdir = Dir("src")     # The source directory
2362632Sstever@eecs.umich.edu
2373718Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys()
2383718Sstever@eecs.umich.edu
2393718Sstever@eecs.umich.edu# Check that we have a C/C++ compiler
2403718Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
2413718Sstever@eecs.umich.edu    print "No C++ compiler installed (package g++ on Ubuntu and RedHat)"
2425863Snate@binkert.org    Exit(1)
2435863Snate@binkert.org
2443718Sstever@eecs.umich.edu# Check that swig is present
2453718Sstever@eecs.umich.eduif not 'SWIG' in main_dict_keys:
2466121Snate@binkert.org    print "swig is not installed (package swig on Ubuntu and RedHat)"
2475863Snate@binkert.org    Exit(1)
2483718Sstever@eecs.umich.edu
2493718Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses
2502634Sstever@eecs.umich.edu# as well
2512634Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths)
2525863Snate@binkert.org
2532638Sstever@eecs.umich.edu########################################################################
2542632Sstever@eecs.umich.edu#
2552632Sstever@eecs.umich.edu# Mercurial Stuff.
2562632Sstever@eecs.umich.edu#
2572632Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some
2582632Sstever@eecs.umich.edu# extra things.
2592632Sstever@eecs.umich.edu#
2601858SN/A########################################################################
2613716Sstever@eecs.umich.edu
2622638Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg")
2632638Sstever@eecs.umich.edu
2642638Sstever@eecs.umich.edu
2652638Sstever@eecs.umich.edustyle_message = """
2662638Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code
2672638Sstever@eecs.umich.eduagainst the gem5 style rules on %s.
2682638Sstever@eecs.umich.eduThis script will now install the hook in your %s.
2695863Snate@binkert.orgPress enter to continue, or ctrl-c to abort: """
2705863Snate@binkert.org
2715863Snate@binkert.orgmercurial_style_message = """
272955SN/AYou're missing the gem5 style hook, which automatically checks your code
2735341Sstever@gmail.comagainst the gem5 style rules on hg commit and qrefresh commands.
2745341Sstever@gmail.comThis script will now install the hook in your .hg/hgrc file.
2755863Snate@binkert.orgPress enter to continue, or ctrl-c to abort: """
2767756SAli.Saidi@ARM.com
2775341Sstever@gmail.comgit_style_message = """
2786121Snate@binkert.orgYou're missing the gem5 style or commit message hook. These hooks help
2794494Ssaidi@eecs.umich.eduto ensure that your code follows gem5's style rules on git commit.
2806121Snate@binkert.orgThis script will now install the hook in your .git/hooks/ directory.
2811105SN/APress enter to continue, or ctrl-c to abort: """
2822667Sstever@eecs.umich.edu
2832667Sstever@eecs.umich.edumercurial_style_upgrade_message = """
2842667Sstever@eecs.umich.eduYour Mercurial style hooks are not up-to-date. This script will now
2852667Sstever@eecs.umich.edutry to automatically update them. A backup of your hgrc will be saved
2866121Snate@binkert.orgin .hg/hgrc.old.
2872667Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """
2885341Sstever@gmail.com
2895863Snate@binkert.orgmercurial_style_hook = """
2905341Sstever@gmail.com# The following lines were automatically added by gem5/SConstruct
2915341Sstever@gmail.com# to provide the gem5 style-checking hooks
2925341Sstever@gmail.com[extensions]
2935863Snate@binkert.orghgstyle = %s/util/hgstyle.py
2945341Sstever@gmail.com
2955341Sstever@gmail.com[hooks]
2965341Sstever@gmail.compretxncommit.style = python:hgstyle.check_style
2975863Snate@binkert.orgpre-qrefresh.style = python:hgstyle.check_style
2985341Sstever@gmail.com# End of SConstruct additions
2995341Sstever@gmail.com
3005341Sstever@gmail.com""" % (main.root.abspath)
3015341Sstever@gmail.com
3025341Sstever@gmail.commercurial_lib_not_found = """
3035341Sstever@gmail.comMercurial libraries cannot be found, ignoring style hook.  If
3045341Sstever@gmail.comyou are a gem5 developer, please fix this and run the style
3055341Sstever@gmail.comhook. It is important.
3065341Sstever@gmail.com"""
3075341Sstever@gmail.com
3085863Snate@binkert.org# Check for style hook and prompt for installation if it's not there.
3095341Sstever@gmail.com# Skip this if --ignore-style was specified, there's no interactive
3105863Snate@binkert.org# terminal to prompt, or no recognized revision control system can be
3117756SAli.Saidi@ARM.com# found.
3125341Sstever@gmail.comignore_style = GetOption('ignore_style') or not sys.stdin.isatty()
3135863Snate@binkert.org
3146121Snate@binkert.org# Try wire up Mercurial to the style hooks
3156121Snate@binkert.orgif not ignore_style and hgdir.exists():
3165397Ssaidi@eecs.umich.edu    style_hook = True
3175397Ssaidi@eecs.umich.edu    style_hooks = tuple()
3187727SAli.Saidi@ARM.com    hgrc = hgdir.File('hgrc')
3195341Sstever@gmail.com    hgrc_old = hgdir.File('hgrc.old')
3206168Snate@binkert.org    try:
3216168Snate@binkert.org        from mercurial import ui
3225341Sstever@gmail.com        ui = ui.ui()
3237756SAli.Saidi@ARM.com        ui.readconfig(hgrc.abspath)
3247756SAli.Saidi@ARM.com        style_hooks = (ui.config('hooks', 'pretxncommit.style', None),
3257756SAli.Saidi@ARM.com                       ui.config('hooks', 'pre-qrefresh.style', None))
3267756SAli.Saidi@ARM.com        style_hook = all(style_hooks)
3277756SAli.Saidi@ARM.com        style_extension = ui.config('extensions', 'style', None)
3287756SAli.Saidi@ARM.com    except ImportError:
3295341Sstever@gmail.com        print mercurial_lib_not_found
3305341Sstever@gmail.com
3315341Sstever@gmail.com    if "python:style.check_style" in style_hooks:
3325341Sstever@gmail.com        # Try to upgrade the style hooks
3335863Snate@binkert.org        print mercurial_style_upgrade_message
3345341Sstever@gmail.com        # continue unless user does ctrl-c/ctrl-d etc.
3355341Sstever@gmail.com        try:
3366121Snate@binkert.org            raw_input()
3376121Snate@binkert.org        except:
3387756SAli.Saidi@ARM.com            print "Input exception, exiting scons.\n"
3395341Sstever@gmail.com            sys.exit(1)
3406814Sgblack@eecs.umich.edu        shutil.copyfile(hgrc.abspath, hgrc_old.abspath)
3417756SAli.Saidi@ARM.com        re_style_hook = re.compile(r"^([^=#]+)\.style\s*=\s*([^#\s]+).*")
3426814Sgblack@eecs.umich.edu        re_style_extension = re.compile("style\s*=\s*([^#\s]+).*")
3435863Snate@binkert.org        old, new = open(hgrc_old.abspath, 'r'), open(hgrc.abspath, 'w')
3446121Snate@binkert.org        for l in old:
3455341Sstever@gmail.com            m_hook = re_style_hook.match(l)
3465863Snate@binkert.org            m_ext = re_style_extension.match(l)
3475341Sstever@gmail.com            if m_hook:
3486121Snate@binkert.org                hook, check = m_hook.groups()
3496121Snate@binkert.org                if check != "python:style.check_style":
3506121Snate@binkert.org                    print "Warning: %s.style is using a non-default " \
3515742Snate@binkert.org                        "checker: %s" % (hook, check)
3525742Snate@binkert.org                if hook not in ("pretxncommit", "pre-qrefresh"):
3535341Sstever@gmail.com                    print "Warning: Updating unknown style hook: %s" % hook
3545742Snate@binkert.org
3555742Snate@binkert.org                l = "%s.style = python:hgstyle.check_style\n" % hook
3565341Sstever@gmail.com            elif m_ext and m_ext.group(1) == style_extension:
3576017Snate@binkert.org                l = "hgstyle = %s/util/hgstyle.py\n" % main.root.abspath
3586121Snate@binkert.org
3596017Snate@binkert.org            new.write(l)
3607756SAli.Saidi@ARM.com    elif not style_hook:
3617756SAli.Saidi@ARM.com        print mercurial_style_message,
3627756SAli.Saidi@ARM.com        # continue unless user does ctrl-c/ctrl-d etc.
3637756SAli.Saidi@ARM.com        try:
3647756SAli.Saidi@ARM.com            raw_input()
3657756SAli.Saidi@ARM.com        except:
3667756SAli.Saidi@ARM.com            print "Input exception, exiting scons.\n"
3677756SAli.Saidi@ARM.com            sys.exit(1)
3687756SAli.Saidi@ARM.com        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
3697756SAli.Saidi@ARM.com        print "Adding style hook to", hgrc_path, "\n"
3707756SAli.Saidi@ARM.com        try:
3717756SAli.Saidi@ARM.com            with open(hgrc_path, 'a') as f:
3727756SAli.Saidi@ARM.com                f.write(mercurial_style_hook)
3737756SAli.Saidi@ARM.com        except:
3747756SAli.Saidi@ARM.com            print "Error updating", hgrc_path
3757756SAli.Saidi@ARM.com            sys.exit(1)
3767756SAli.Saidi@ARM.com
3777756SAli.Saidi@ARM.comdef install_git_style_hooks():
3787756SAli.Saidi@ARM.com    try:
3797756SAli.Saidi@ARM.com        gitdir = Dir(readCommand(
3807756SAli.Saidi@ARM.com            ["git", "rev-parse", "--git-dir"]).strip("\n"))
3817756SAli.Saidi@ARM.com    except Exception, e:
3827756SAli.Saidi@ARM.com        print "Warning: Failed to find git repo directory: %s" % e
3837756SAli.Saidi@ARM.com        return
3847756SAli.Saidi@ARM.com
3857756SAli.Saidi@ARM.com    git_hooks = gitdir.Dir("hooks")
3867756SAli.Saidi@ARM.com    def hook_exists(hook_name):
3877756SAli.Saidi@ARM.com        hook = git_hooks.File(hook_name)
3887756SAli.Saidi@ARM.com        return hook.exists()
3897756SAli.Saidi@ARM.com
3907756SAli.Saidi@ARM.com    def hook_install(hook_name, script):
3917756SAli.Saidi@ARM.com        hook = git_hooks.File(hook_name)
3927756SAli.Saidi@ARM.com        if hook.exists():
3937756SAli.Saidi@ARM.com            print "Warning: Can't install %s, hook already exists." % hook_name
3946654Snate@binkert.org            return
3956654Snate@binkert.org
3965871Snate@binkert.org        if not git_hooks.exists():
3976121Snate@binkert.org            mkdir(git_hooks.get_abspath())
3986121Snate@binkert.org
3996121Snate@binkert.org        # Use a relative symlink if the hooks live in the source directory
4006121Snate@binkert.org        if hook.is_under(main.root):
4013940Ssaidi@eecs.umich.edu            script_path = os.path.relpath(
4023918Ssaidi@eecs.umich.edu                script.get_abspath(),
4033918Ssaidi@eecs.umich.edu                hook.Dir(".").get_abspath())
4041858SN/A        else:
4056121Snate@binkert.org            script_path = script.get_abspath()
4067739Sgblack@eecs.umich.edu
4077739Sgblack@eecs.umich.edu        try:
4086143Snate@binkert.org            os.symlink(script_path, hook.get_abspath())
4097739Sgblack@eecs.umich.edu        except:
4107618SAli.Saidi@arm.com            print "Error updating git %s hook" % hook_name
4117618SAli.Saidi@arm.com            raise
4127618SAli.Saidi@arm.com
4137618SAli.Saidi@arm.com    if hook_exists("pre-commit") and hook_exists("commit-msg"):
4147618SAli.Saidi@arm.com        return
4157618SAli.Saidi@arm.com
4167618SAli.Saidi@arm.com    print git_style_message,
4177739Sgblack@eecs.umich.edu    try:
4186121Snate@binkert.org        raw_input()
4193940Ssaidi@eecs.umich.edu    except:
4206121Snate@binkert.org        print "Input exception, exiting scons.\n"
4217739Sgblack@eecs.umich.edu        sys.exit(1)
4227739Sgblack@eecs.umich.edu
4237739Sgblack@eecs.umich.edu    git_style_script = File("util/git-pre-commit.py")
4247739Sgblack@eecs.umich.edu    git_msg_script = File("ext/git-commit-msg")
4257739Sgblack@eecs.umich.edu
4267739Sgblack@eecs.umich.edu    hook_install("pre-commit", git_style_script)
4273918Ssaidi@eecs.umich.edu    hook_install("commit-msg", git_msg_script)
4283918Ssaidi@eecs.umich.edu
4293940Ssaidi@eecs.umich.edu# Try to wire up git to the style hooks
4303918Ssaidi@eecs.umich.eduif not ignore_style and main.root.Entry(".git").exists():
4313918Ssaidi@eecs.umich.edu    install_git_style_hooks()
4326157Snate@binkert.org
4336157Snate@binkert.org###################################################
4346157Snate@binkert.org#
4356157Snate@binkert.org# Figure out which configurations to set up based on the path(s) of
4365397Ssaidi@eecs.umich.edu# the target(s).
4375397Ssaidi@eecs.umich.edu#
4386121Snate@binkert.org###################################################
4396121Snate@binkert.org
4406121Snate@binkert.org# Find default configuration & binary.
4416121Snate@binkert.orgDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
4426121Snate@binkert.org
4436121Snate@binkert.org# helper function: find last occurrence of element in list
4445397Ssaidi@eecs.umich.edudef rfind(l, elt, offs = -1):
4451851SN/A    for i in range(len(l)+offs, 0, -1):
4461851SN/A        if l[i] == elt:
4477739Sgblack@eecs.umich.edu            return i
448955SN/A    raise ValueError, "element not found"
4493053Sstever@eecs.umich.edu
4506121Snate@binkert.org# Take a list of paths (or SCons Nodes) and return a list with all
4513053Sstever@eecs.umich.edu# paths made absolute and ~-expanded.  Paths will be interpreted
4523053Sstever@eecs.umich.edu# relative to the launch directory unless a different root is provided
4533053Sstever@eecs.umich.edudef makePathListAbsolute(path_list, root=GetLaunchDir()):
4543053Sstever@eecs.umich.edu    return [abspath(joinpath(root, expanduser(str(p))))
4553053Sstever@eecs.umich.edu            for p in path_list]
4566654Snate@binkert.org
4573053Sstever@eecs.umich.edu# Each target must have 'build' in the interior of the path; the
4584742Sstever@eecs.umich.edu# directory below this will determine the build parameters.  For
4594742Sstever@eecs.umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
4603053Sstever@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it
4613053Sstever@eecs.umich.edu# follow 'build' in the build path.
4623053Sstever@eecs.umich.edu
4633053Sstever@eecs.umich.edu# The funky assignment to "[:]" is needed to replace the list contents
4646654Snate@binkert.org# in place rather than reassign the symbol to a new list, which
4653053Sstever@eecs.umich.edu# doesn't work (obviously!).
4663053Sstever@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
4673053Sstever@eecs.umich.edu
4683053Sstever@eecs.umich.edu# Generate a list of the unique build roots and configs that the
4692667Sstever@eecs.umich.edu# collected targets reference.
4704554Sbinkertn@umich.eduvariant_paths = []
4716121Snate@binkert.orgbuild_root = None
4722667Sstever@eecs.umich.edufor t in BUILD_TARGETS:
4734554Sbinkertn@umich.edu    path_dirs = t.split('/')
4744554Sbinkertn@umich.edu    try:
4754554Sbinkertn@umich.edu        build_top = rfind(path_dirs, 'build', -2)
4766121Snate@binkert.org    except:
4774554Sbinkertn@umich.edu        print "Error: no non-leaf 'build' dir found on target path", t
4784554Sbinkertn@umich.edu        Exit(1)
4794554Sbinkertn@umich.edu    this_build_root = joinpath('/',*path_dirs[:build_top+1])
4804781Snate@binkert.org    if not build_root:
4814554Sbinkertn@umich.edu        build_root = this_build_root
4824554Sbinkertn@umich.edu    else:
4832667Sstever@eecs.umich.edu        if this_build_root != build_root:
4844554Sbinkertn@umich.edu            print "Error: build targets not under same build root\n"\
4854554Sbinkertn@umich.edu                  "  %s\n  %s" % (build_root, this_build_root)
4864554Sbinkertn@umich.edu            Exit(1)
4874554Sbinkertn@umich.edu    variant_path = joinpath('/',*path_dirs[:build_top+2])
4882667Sstever@eecs.umich.edu    if variant_path not in variant_paths:
4894554Sbinkertn@umich.edu        variant_paths.append(variant_path)
4902667Sstever@eecs.umich.edu
4914554Sbinkertn@umich.edu# Make sure build_root exists (might not if this is the first build there)
4926121Snate@binkert.orgif not isdir(build_root):
4932667Sstever@eecs.umich.edu    mkdir(build_root)
4945522Snate@binkert.orgmain['BUILDROOT'] = build_root
4955522Snate@binkert.org
4965522Snate@binkert.orgExport('main')
4975522Snate@binkert.org
4985522Snate@binkert.orgmain.SConsignFile(joinpath(build_root, "sconsign"))
4995522Snate@binkert.org
5005522Snate@binkert.org# Default duplicate option is to use hard links, but this messes up
5015522Snate@binkert.org# when you use emacs to edit a file in the target dir, as emacs moves
5025522Snate@binkert.org# file to file~ then copies to file, breaking the link.  Symbolic
5035522Snate@binkert.org# (soft) links work better.
5045522Snate@binkert.orgmain.SetOption('duplicate', 'soft-copy')
5055522Snate@binkert.org
5065522Snate@binkert.org#
5075522Snate@binkert.org# Set up global sticky variables... these are common to an entire build
5085522Snate@binkert.org# tree (not specific to a particular build like ALPHA_SE)
5095522Snate@binkert.org#
5105522Snate@binkert.org
5115522Snate@binkert.orgglobal_vars_file = joinpath(build_root, 'variables.global')
5125522Snate@binkert.org
5135522Snate@binkert.orgglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
5145522Snate@binkert.org
5155522Snate@binkert.orgglobal_vars.AddVariables(
5165522Snate@binkert.org    ('CC', 'C compiler', environ.get('CC', main['CC'])),
5175522Snate@binkert.org    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
5185522Snate@binkert.org    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
5195522Snate@binkert.org    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
5202638Sstever@eecs.umich.edu    ('BATCH', 'Use batch pool for build and tests', False),
5212638Sstever@eecs.umich.edu    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
5226121Snate@binkert.org    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
5233716Sstever@eecs.umich.edu    ('EXTRAS', 'Add extra directories to the compilation', '')
5245522Snate@binkert.org    )
5255522Snate@binkert.org
5265522Snate@binkert.org# Update main environment with values from ARGUMENTS & global_vars_file
5275522Snate@binkert.orgglobal_vars.Update(main)
5285522Snate@binkert.orghelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
5295522Snate@binkert.org
5301858SN/A# Save sticky variable settings back to current variables file
5315227Ssaidi@eecs.umich.eduglobal_vars.Save(global_vars_file, main)
5325227Ssaidi@eecs.umich.edu
5335227Ssaidi@eecs.umich.edu# Parse EXTRAS variable to build list of all directories where we're
5345227Ssaidi@eecs.umich.edu# look for sources etc.  This list is exported as extras_dir_list.
5356654Snate@binkert.orgbase_dir = main.srcdir.abspath
5366654Snate@binkert.orgif main['EXTRAS']:
5377769SAli.Saidi@ARM.com    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
5387769SAli.Saidi@ARM.comelse:
5397769SAli.Saidi@ARM.com    extras_dir_list = []
5407769SAli.Saidi@ARM.com
5415227Ssaidi@eecs.umich.eduExport('base_dir')
5425227Ssaidi@eecs.umich.eduExport('extras_dir_list')
5435227Ssaidi@eecs.umich.edu
5445204Sstever@gmail.com# the ext directory should be on the #includes path
5455204Sstever@gmail.commain.Append(CPPPATH=[Dir('ext')])
5465204Sstever@gmail.com
5475204Sstever@gmail.comdef strip_build_path(path, env):
5485204Sstever@gmail.com    path = str(path)
5495204Sstever@gmail.com    variant_base = env['BUILDROOT'] + os.path.sep
5505204Sstever@gmail.com    if path.startswith(variant_base):
5515204Sstever@gmail.com        path = path[len(variant_base):]
5525204Sstever@gmail.com    elif path.startswith('build/'):
5535204Sstever@gmail.com        path = path[6:]
5545204Sstever@gmail.com    return path
5555204Sstever@gmail.com
5565204Sstever@gmail.com# Generate a string of the form:
5575204Sstever@gmail.com#   common/path/prefix/src1, src2 -> tgt1, tgt2
5585204Sstever@gmail.com# to print while building.
5595204Sstever@gmail.comclass Transform(object):
5605204Sstever@gmail.com    # all specific color settings should be here and nowhere else
5616121Snate@binkert.org    tool_color = termcap.Normal
5625204Sstever@gmail.com    pfx_color = termcap.Yellow
5633118Sstever@eecs.umich.edu    srcs_color = termcap.Yellow + termcap.Bold
5643118Sstever@eecs.umich.edu    arrow_color = termcap.Blue + termcap.Bold
5653118Sstever@eecs.umich.edu    tgts_color = termcap.Yellow + termcap.Bold
5663118Sstever@eecs.umich.edu
5673118Sstever@eecs.umich.edu    def __init__(self, tool, max_sources=99):
5685863Snate@binkert.org        self.format = self.tool_color + (" [%8s] " % tool) \
5693118Sstever@eecs.umich.edu                      + self.pfx_color + "%s" \
5705863Snate@binkert.org                      + self.srcs_color + "%s" \
5713118Sstever@eecs.umich.edu                      + self.arrow_color + " -> " \
5727457Snate@binkert.org                      + self.tgts_color + "%s" \
5737457Snate@binkert.org                      + termcap.Normal
5745863Snate@binkert.org        self.max_sources = max_sources
5755863Snate@binkert.org
5765863Snate@binkert.org    def __call__(self, target, source, env, for_signature=None):
5775863Snate@binkert.org        # truncate source list according to max_sources param
5785863Snate@binkert.org        source = source[0:self.max_sources]
5795863Snate@binkert.org        def strip(f):
5805863Snate@binkert.org            return strip_build_path(str(f), env)
5816003Snate@binkert.org        if len(source) > 0:
5825863Snate@binkert.org            srcs = map(strip, source)
5835863Snate@binkert.org        else:
5845863Snate@binkert.org            srcs = ['']
5856120Snate@binkert.org        tgts = map(strip, target)
5865863Snate@binkert.org        # surprisingly, os.path.commonprefix is a dumb char-by-char string
5875863Snate@binkert.org        # operation that has nothing to do with paths.
5885863Snate@binkert.org        com_pfx = os.path.commonprefix(srcs + tgts)
5896120Snate@binkert.org        com_pfx_len = len(com_pfx)
5906120Snate@binkert.org        if com_pfx:
5915863Snate@binkert.org            # do some cleanup and sanity checking on common prefix
5925863Snate@binkert.org            if com_pfx[-1] == ".":
5936120Snate@binkert.org                # prefix matches all but file extension: ok
5945863Snate@binkert.org                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
5956121Snate@binkert.org                com_pfx = com_pfx[0:-1]
5966121Snate@binkert.org            elif com_pfx[-1] == "/":
5975863Snate@binkert.org                # common prefix is directory path: OK
5987727SAli.Saidi@ARM.com                pass
5997727SAli.Saidi@ARM.com            else:
6007727SAli.Saidi@ARM.com                src0_len = len(srcs[0])
6017727SAli.Saidi@ARM.com                tgt0_len = len(tgts[0])
6027727SAli.Saidi@ARM.com                if src0_len == com_pfx_len:
6037727SAli.Saidi@ARM.com                    # source is a substring of target, OK
6045863Snate@binkert.org                    pass
6053118Sstever@eecs.umich.edu                elif tgt0_len == com_pfx_len:
6065863Snate@binkert.org                    # target is a substring of source, need to back up to
6073118Sstever@eecs.umich.edu                    # avoid empty string on RHS of arrow
6083118Sstever@eecs.umich.edu                    sep_idx = com_pfx.rfind(".")
6095863Snate@binkert.org                    if sep_idx != -1:
6105863Snate@binkert.org                        com_pfx = com_pfx[0:sep_idx]
6115863Snate@binkert.org                    else:
6125863Snate@binkert.org                        com_pfx = ''
6133118Sstever@eecs.umich.edu                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
6143483Ssaidi@eecs.umich.edu                    # still splitting at file extension: ok
6153494Ssaidi@eecs.umich.edu                    pass
6163494Ssaidi@eecs.umich.edu                else:
6173483Ssaidi@eecs.umich.edu                    # probably a fluke; ignore it
6183483Ssaidi@eecs.umich.edu                    com_pfx = ''
6193483Ssaidi@eecs.umich.edu        # recalculate length in case com_pfx was modified
6203053Sstever@eecs.umich.edu        com_pfx_len = len(com_pfx)
6213053Sstever@eecs.umich.edu        def fmt(files):
6223918Ssaidi@eecs.umich.edu            f = map(lambda s: s[com_pfx_len:], files)
6233053Sstever@eecs.umich.edu            return ', '.join(f)
6243053Sstever@eecs.umich.edu        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
6253053Sstever@eecs.umich.edu
6263053Sstever@eecs.umich.eduExport('Transform')
6273053Sstever@eecs.umich.edu
6281858SN/A# enable the regression script to use the termcap
6291858SN/Amain['TERMCAP'] = termcap
6301858SN/A
6311858SN/Aif GetOption('verbose'):
6321858SN/A    def MakeAction(action, string, *args, **kwargs):
6331858SN/A        return Action(action, *args, **kwargs)
6345863Snate@binkert.orgelse:
6355863Snate@binkert.org    MakeAction = Action
6361859SN/A    main['CCCOMSTR']        = Transform("CC")
6375863Snate@binkert.org    main['CXXCOMSTR']       = Transform("CXX")
6381858SN/A    main['ASCOMSTR']        = Transform("AS")
6395863Snate@binkert.org    main['SWIGCOMSTR']      = Transform("SWIG")
6401858SN/A    main['ARCOMSTR']        = Transform("AR", 0)
6411859SN/A    main['LINKCOMSTR']      = Transform("LINK", 0)
6421859SN/A    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
6436654Snate@binkert.org    main['M4COMSTR']        = Transform("M4")
6443053Sstever@eecs.umich.edu    main['SHCCCOMSTR']      = Transform("SHCC")
6456654Snate@binkert.org    main['SHCXXCOMSTR']     = Transform("SHCXX")
6463053Sstever@eecs.umich.eduExport('MakeAction')
6473053Sstever@eecs.umich.edu
6481859SN/A# Initialize the Link-Time Optimization (LTO) flags
6491859SN/Amain['LTO_CCFLAGS'] = []
6501859SN/Amain['LTO_LDFLAGS'] = []
6511859SN/A
6521859SN/A# According to the readme, tcmalloc works best if the compiler doesn't
6531859SN/A# assume that we're using the builtin malloc and friends. These flags
6541859SN/A# are compiler-specific, so we need to set them after we detect which
6551859SN/A# compiler we're using.
6561862SN/Amain['TCMALLOC_CCFLAGS'] = []
6571859SN/A
6581859SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False)
6591859SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False)
6605863Snate@binkert.org
6615863Snate@binkert.orgmain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
6625863Snate@binkert.orgmain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
6635863Snate@binkert.orgif main['GCC'] + main['CLANG'] > 1:
6646121Snate@binkert.org    print 'Error: How can we have two at the same time?'
6651858SN/A    Exit(1)
6665863Snate@binkert.org
6675863Snate@binkert.org# Set up default C++ compiler flags
6685863Snate@binkert.orgif main['GCC'] or main['CLANG']:
6695863Snate@binkert.org    # As gcc and clang share many flags, do the common parts here
6705863Snate@binkert.org    main.Append(CCFLAGS=['-pipe'])
6712139SN/A    main.Append(CCFLAGS=['-fno-strict-aliasing'])
6724202Sbinkertn@umich.edu    # Enable -Wall and -Wextra and then disable the few warnings that
6734202Sbinkertn@umich.edu    # we consistently violate
6742139SN/A    main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra',
6756994Snate@binkert.org                         '-Wno-sign-compare', '-Wno-unused-parameter'])
6766994Snate@binkert.org    # We always compile using C++11
6776994Snate@binkert.org    main.Append(CXXFLAGS=['-std=c++11'])
6786994Snate@binkert.org    if sys.platform.startswith('freebsd'):
6796994Snate@binkert.org        main.Append(CCFLAGS=['-I/usr/local/include'])
6806994Snate@binkert.org        main.Append(CXXFLAGS=['-I/usr/local/include'])
6816994Snate@binkert.orgelse:
6826994Snate@binkert.org    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
6836994Snate@binkert.org    print "Don't know what compiler options to use for your compiler."
6846994Snate@binkert.org    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
6856994Snate@binkert.org    print termcap.Yellow + '       version:' + termcap.Normal,
6866994Snate@binkert.org    if not CXX_version:
6876994Snate@binkert.org        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
6886994Snate@binkert.org               termcap.Normal
6896994Snate@binkert.org    else:
6906994Snate@binkert.org        print CXX_version.replace('\n', '<nl>')
6916994Snate@binkert.org    print "       If you're trying to use a compiler other than GCC"
6926994Snate@binkert.org    print "       or clang, there appears to be something wrong with your"
6936994Snate@binkert.org    print "       environment."
6946994Snate@binkert.org    print "       "
6956994Snate@binkert.org    print "       If you are trying to use a compiler other than those listed"
6966994Snate@binkert.org    print "       above you will need to ease fix SConstruct and "
6976994Snate@binkert.org    print "       src/SConscript to support that compiler."
6986994Snate@binkert.org    Exit(1)
6996994Snate@binkert.org
7006994Snate@binkert.orgif main['GCC']:
7016994Snate@binkert.org    # Check for a supported version of gcc. >= 4.8 is chosen for its
7026994Snate@binkert.org    # level of c++11 support. See
7032155SN/A    # http://gcc.gnu.org/projects/cxx0x.html for details.
7045863Snate@binkert.org    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
7051869SN/A    if compareVersions(gcc_version, "4.8") < 0:
7061869SN/A        print 'Error: gcc version 4.8 or newer required.'
7075863Snate@binkert.org        print '       Installed version:', gcc_version
7085863Snate@binkert.org        Exit(1)
7094202Sbinkertn@umich.edu
7106108Snate@binkert.org    main['GCC_VERSION'] = gcc_version
7116108Snate@binkert.org
7126108Snate@binkert.org    # gcc from version 4.8 and above generates "rep; ret" instructions
7136108Snate@binkert.org    # to avoid performance penalties on certain AMD chips. Older
7144202Sbinkertn@umich.edu    # assemblers detect this as an error, "Error: expecting string
7155863Snate@binkert.org    # instruction after `rep'"
7165742Snate@binkert.org    as_version_raw = readCommand([main['AS'], '-v', '/dev/null'],
7175742Snate@binkert.org                                 exception=False).split()
7185341Sstever@gmail.com
7195342Sstever@gmail.com    # version strings may contain extra distro-specific
7205342Sstever@gmail.com    # qualifiers, so play it safe and keep only what comes before
7214202Sbinkertn@umich.edu    # the first hyphen
7224202Sbinkertn@umich.edu    as_version = as_version_raw[-1].split('-')[0] if as_version_raw else None
7234202Sbinkertn@umich.edu
7245863Snate@binkert.org    if not as_version or compareVersions(as_version, "2.23") < 0:
7255863Snate@binkert.org        print termcap.Yellow + termcap.Bold + \
7265863Snate@binkert.org            'Warning: This combination of gcc and binutils have' + \
7276994Snate@binkert.org            ' known incompatibilities.\n' + \
7286994Snate@binkert.org            '         If you encounter build problems, please update ' + \
7296994Snate@binkert.org            'binutils to 2.23.' + \
7305863Snate@binkert.org            termcap.Normal
7315863Snate@binkert.org
7325863Snate@binkert.org    # Make sure we warn if the user has requested to compile with the
7335863Snate@binkert.org    # Undefined Benahvior Sanitizer and this version of gcc does not
7345863Snate@binkert.org    # support it.
7355863Snate@binkert.org    if GetOption('with_ubsan') and \
7365863Snate@binkert.org            compareVersions(gcc_version, '4.9') < 0:
7375863Snate@binkert.org        print termcap.Yellow + termcap.Bold + \
7385863Snate@binkert.org            'Warning: UBSan is only supported using gcc 4.9 and later.' + \
7395863Snate@binkert.org            termcap.Normal
7405863Snate@binkert.org
7415863Snate@binkert.org    # Add the appropriate Link-Time Optimization (LTO) flags
7425863Snate@binkert.org    # unless LTO is explicitly turned off. Note that these flags
7435863Snate@binkert.org    # are only used by the fast target.
7445863Snate@binkert.org    if not GetOption('no_lto'):
7455863Snate@binkert.org        # Pass the LTO flag when compiling to produce GIMPLE
7465952Ssaidi@eecs.umich.edu        # output, we merely create the flags here and only append
7477450Sstever@gmail.com        # them later
7481869SN/A        main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
7491858SN/A
7505863Snate@binkert.org        # Use the same amount of jobs for LTO as we are running
7516108Snate@binkert.org        # scons with
7526108Snate@binkert.org        main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
7536108Snate@binkert.org
7541858SN/A    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
755955SN/A                                  '-fno-builtin-realloc', '-fno-builtin-free'])
756955SN/A
7571869SN/A    # add option to check for undeclared overrides
7581869SN/A    if compareVersions(gcc_version, "5.0") > 0:
7591869SN/A        main.Append(CCFLAGS=['-Wno-error=suggest-override'])
7601869SN/A
7611869SN/Aelif main['CLANG']:
7625863Snate@binkert.org    # Check for a supported version of clang, >= 3.1 is needed to
7635863Snate@binkert.org    # support similar features as gcc 4.8. See
7645863Snate@binkert.org    # http://clang.llvm.org/cxx_status.html for details
7651869SN/A    clang_version_re = re.compile(".* version (\d+\.\d+)")
7665863Snate@binkert.org    clang_version_match = clang_version_re.search(CXX_version)
7671869SN/A    if (clang_version_match):
7685863Snate@binkert.org        clang_version = clang_version_match.groups()[0]
7691869SN/A        if compareVersions(clang_version, "3.1") < 0:
7701869SN/A            print 'Error: clang version 3.1 or newer required.'
7711869SN/A            print '       Installed version:', clang_version
7721869SN/A            Exit(1)
7731869SN/A    else:
7745863Snate@binkert.org        print 'Error: Unable to determine clang version.'
7755863Snate@binkert.org        Exit(1)
7761869SN/A
7771869SN/A    # clang has a few additional warnings that we disable, extraneous
7781869SN/A    # parantheses are allowed due to Ruby's printing of the AST,
7791869SN/A    # finally self assignments are allowed as the generated CPU code
7801869SN/A    # is relying on this
7811869SN/A    main.Append(CCFLAGS=['-Wno-parentheses',
7821869SN/A                         '-Wno-self-assign',
7835863Snate@binkert.org                         # Some versions of libstdc++ (4.8?) seem to
7845863Snate@binkert.org                         # use struct hash and class hash
7851869SN/A                         # interchangeably.
7865863Snate@binkert.org                         '-Wno-mismatched-tags',
7875863Snate@binkert.org                         ])
7883356Sbinkertn@umich.edu
7893356Sbinkertn@umich.edu    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
7903356Sbinkertn@umich.edu
7913356Sbinkertn@umich.edu    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
7923356Sbinkertn@umich.edu    # opposed to libstdc++, as the later is dated.
7934781Snate@binkert.org    if sys.platform == "darwin":
7945863Snate@binkert.org        main.Append(CXXFLAGS=['-stdlib=libc++'])
7955863Snate@binkert.org        main.Append(LIBS=['c++'])
7961869SN/A
7971869SN/A    # On FreeBSD we need libthr.
7981869SN/A    if sys.platform.startswith('freebsd'):
7996121Snate@binkert.org        main.Append(LIBS=['thr'])
8001869SN/A
8012638Sstever@eecs.umich.eduelse:
8026121Snate@binkert.org    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
8036121Snate@binkert.org    print "Don't know what compiler options to use for your compiler."
8042638Sstever@eecs.umich.edu    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
8055749Scws3k@cs.virginia.edu    print termcap.Yellow + '       version:' + termcap.Normal,
8066121Snate@binkert.org    if not CXX_version:
8076121Snate@binkert.org        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
8085749Scws3k@cs.virginia.edu               termcap.Normal
8091869SN/A    else:
8101869SN/A        print CXX_version.replace('\n', '<nl>')
8113546Sgblack@eecs.umich.edu    print "       If you're trying to use a compiler other than GCC"
8123546Sgblack@eecs.umich.edu    print "       or clang, there appears to be something wrong with your"
8133546Sgblack@eecs.umich.edu    print "       environment."
8143546Sgblack@eecs.umich.edu    print "       "
8156121Snate@binkert.org    print "       If you are trying to use a compiler other than those listed"
8165863Snate@binkert.org    print "       above you will need to ease fix SConstruct and "
8173546Sgblack@eecs.umich.edu    print "       src/SConscript to support that compiler."
8183546Sgblack@eecs.umich.edu    Exit(1)
8193546Sgblack@eecs.umich.edu
8203546Sgblack@eecs.umich.edu# Set up common yacc/bison flags (needed for Ruby)
8214781Snate@binkert.orgmain['YACCFLAGS'] = '-d'
8224781Snate@binkert.orgmain['YACCHXXFILESUFFIX'] = '.hh'
8236658Snate@binkert.org
8246658Snate@binkert.org# Do this after we save setting back, or else we'll tack on an
8254781Snate@binkert.org# extra 'qdo' every time we run scons.
8263546Sgblack@eecs.umich.eduif main['BATCH']:
8273546Sgblack@eecs.umich.edu    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
8283546Sgblack@eecs.umich.edu    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
8293546Sgblack@eecs.umich.edu    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
8307756SAli.Saidi@ARM.com    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
8317756SAli.Saidi@ARM.com    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
8323546Sgblack@eecs.umich.edu
8333546Sgblack@eecs.umich.eduif sys.platform == 'cygwin':
8343546Sgblack@eecs.umich.edu    # cygwin has some header file issues...
8353546Sgblack@eecs.umich.edu    main.Append(CCFLAGS=["-Wno-uninitialized"])
8364202Sbinkertn@umich.edu
8373546Sgblack@eecs.umich.edu# Check for the protobuf compiler
8383546Sgblack@eecs.umich.eduprotoc_version = readCommand([main['PROTOC'], '--version'],
8393546Sgblack@eecs.umich.edu                             exception='').split()
840955SN/A
841955SN/A# First two words should be "libprotoc x.y.z"
842955SN/Aif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
843955SN/A    print termcap.Yellow + termcap.Bold + \
8445863Snate@binkert.org        'Warning: Protocol buffer compiler (protoc) not found.\n' + \
8455863Snate@binkert.org        '         Please install protobuf-compiler for tracing support.' + \
8465343Sstever@gmail.com        termcap.Normal
8475343Sstever@gmail.com    main['PROTOC'] = False
8486121Snate@binkert.orgelse:
8495863Snate@binkert.org    # Based on the availability of the compress stream wrappers,
8504773Snate@binkert.org    # require 2.1.0
8515863Snate@binkert.org    min_protoc_version = '2.1.0'
8522632Sstever@eecs.umich.edu    if compareVersions(protoc_version[1], min_protoc_version) < 0:
8535863Snate@binkert.org        print termcap.Yellow + termcap.Bold + \
8542023SN/A            'Warning: protoc version', min_protoc_version, \
8555863Snate@binkert.org            'or newer required.\n' + \
8565863Snate@binkert.org            '         Installed version:', protoc_version[1], \
8575863Snate@binkert.org            termcap.Normal
8585863Snate@binkert.org        main['PROTOC'] = False
8595863Snate@binkert.org    else:
8605863Snate@binkert.org        # Attempt to determine the appropriate include path and
8615863Snate@binkert.org        # library path using pkg-config, that means we also need to
8625863Snate@binkert.org        # check for pkg-config. Note that it is possible to use
8635863Snate@binkert.org        # protobuf without the involvement of pkg-config. Later on we
8642632Sstever@eecs.umich.edu        # check go a library config check and at that point the test
8655863Snate@binkert.org        # will fail if libprotobuf cannot be found.
8662023SN/A        if readCommand(['pkg-config', '--version'], exception=''):
8672632Sstever@eecs.umich.edu            try:
8685863Snate@binkert.org                # Attempt to establish what linking flags to add for protobuf
8695342Sstever@gmail.com                # using pkg-config
8705863Snate@binkert.org                main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
8712632Sstever@eecs.umich.edu            except:
8725863Snate@binkert.org                print termcap.Yellow + termcap.Bold + \
8735863Snate@binkert.org                    'Warning: pkg-config could not get protobuf flags.' + \
8742632Sstever@eecs.umich.edu                    termcap.Normal
8755863Snate@binkert.org
8765863Snate@binkert.org# Check for SWIG
8775863Snate@binkert.orgif not main.has_key('SWIG'):
8785863Snate@binkert.org    print 'Error: SWIG utility not found.'
8795863Snate@binkert.org    print '       Please install (see http://www.swig.org) and retry.'
8805863Snate@binkert.org    Exit(1)
8812632Sstever@eecs.umich.edu
8825863Snate@binkert.org# Check for appropriate SWIG version
8835863Snate@binkert.orgswig_version = readCommand([main['SWIG'], '-version'], exception='').split()
8842632Sstever@eecs.umich.edu# First 3 words should be "SWIG Version x.y.z"
8851888SN/Aif len(swig_version) < 3 or \
8865863Snate@binkert.org        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
8875863Snate@binkert.org    print 'Error determining SWIG version.'
8881858SN/A    Exit(1)
8895863Snate@binkert.org
8907756SAli.Saidi@ARM.commin_swig_version = '2.0.4'
8912598SN/Aif compareVersions(swig_version[2], min_swig_version) < 0:
8925863Snate@binkert.org    print 'Error: SWIG version', min_swig_version, 'or newer required.'
8931858SN/A    print '       Installed version:', swig_version[2]
8941858SN/A    Exit(1)
8951858SN/A
8965863Snate@binkert.org# Check for known incompatibilities. The standard library shipped with
8971858SN/A# gcc >= 4.9 does not play well with swig versions prior to 3.0
8981858SN/Aif main['GCC'] and compareVersions(gcc_version, '4.9') >= 0 and \
8991858SN/A        compareVersions(swig_version[2], '3.0') < 0:
9005863Snate@binkert.org    print termcap.Yellow + termcap.Bold + \
9011871SN/A        'Warning: This combination of gcc and swig have' + \
9021858SN/A        ' known incompatibilities.\n' + \
9031858SN/A        '         If you encounter build problems, please update ' + \
9041858SN/A        'swig to 3.0 or later.' + \
9051858SN/A        termcap.Normal
9061858SN/A
9071858SN/A# Set up SWIG flags & scanner
9081858SN/Aswig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
9095863Snate@binkert.orgmain.Append(SWIGFLAGS=swig_flags)
9101858SN/A
9111858SN/A# Check for 'timeout' from GNU coreutils. If present, regressions will
9125863Snate@binkert.org# be run with a time limit. We require version 8.13 since we rely on
9131859SN/A# support for the '--foreground' option.
9141859SN/Aif sys.platform.startswith('freebsd'):
9151869SN/A    timeout_lines = readCommand(['gtimeout', '--version'],
9165863Snate@binkert.org                                exception='').splitlines()
9175863Snate@binkert.orgelse:
9181869SN/A    timeout_lines = readCommand(['timeout', '--version'],
9191965SN/A                                exception='').splitlines()
9207739Sgblack@eecs.umich.edu# Get the first line and tokenize it
9211965SN/Atimeout_version = timeout_lines[0].split() if timeout_lines else []
9222761Sstever@eecs.umich.edumain['TIMEOUT'] =  timeout_version and \
9235863Snate@binkert.org    compareVersions(timeout_version[-1], '8.13') >= 0
9241869SN/A
9255863Snate@binkert.org# filter out all existing swig scanners, they mess up the dependency
9262667Sstever@eecs.umich.edu# stuff for some reason
9271869SN/Ascanners = []
9281869SN/Afor scanner in main['SCANNERS']:
9292929Sktlim@umich.edu    skeys = scanner.skeys
9302929Sktlim@umich.edu    if skeys == '.i':
9315863Snate@binkert.org        continue
9322929Sktlim@umich.edu
933955SN/A    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
9342598SN/A        continue
935
936    scanners.append(scanner)
937
938# add the new swig scanner that we like better
939from SCons.Scanner import ClassicCPP as CPPScanner
940swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
941scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
942
943# replace the scanners list that has what we want
944main['SCANNERS'] = scanners
945
946# Add a custom Check function to test for structure members.
947def CheckMember(context, include, decl, member, include_quotes="<>"):
948    context.Message("Checking for member %s in %s..." %
949                    (member, decl))
950    text = """
951#include %(header)s
952int main(){
953  %(decl)s test;
954  (void)test.%(member)s;
955  return 0;
956};
957""" % { "header" : include_quotes[0] + include + include_quotes[1],
958        "decl" : decl,
959        "member" : member,
960        }
961
962    ret = context.TryCompile(text, extension=".cc")
963    context.Result(ret)
964    return ret
965
966# Platform-specific configuration.  Note again that we assume that all
967# builds under a given build root run on the same host platform.
968conf = Configure(main,
969                 conf_dir = joinpath(build_root, '.scons_config'),
970                 log_file = joinpath(build_root, 'scons_config.log'),
971                 custom_tests = {
972        'CheckMember' : CheckMember,
973        })
974
975# Check if we should compile a 64 bit binary on Mac OS X/Darwin
976try:
977    import platform
978    uname = platform.uname()
979    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
980        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
981            main.Append(CCFLAGS=['-arch', 'x86_64'])
982            main.Append(CFLAGS=['-arch', 'x86_64'])
983            main.Append(LINKFLAGS=['-arch', 'x86_64'])
984            main.Append(ASFLAGS=['-arch', 'x86_64'])
985except:
986    pass
987
988# Recent versions of scons substitute a "Null" object for Configure()
989# when configuration isn't necessary, e.g., if the "--help" option is
990# present.  Unfortuantely this Null object always returns false,
991# breaking all our configuration checks.  We replace it with our own
992# more optimistic null object that returns True instead.
993if not conf:
994    def NullCheck(*args, **kwargs):
995        return True
996
997    class NullConf:
998        def __init__(self, env):
999            self.env = env
1000        def Finish(self):
1001            return self.env
1002        def __getattr__(self, mname):
1003            return NullCheck
1004
1005    conf = NullConf(main)
1006
1007# Cache build files in the supplied directory.
1008if main['M5_BUILD_CACHE']:
1009    print 'Using build cache located at', main['M5_BUILD_CACHE']
1010    CacheDir(main['M5_BUILD_CACHE'])
1011
1012if not GetOption('without_python'):
1013    # Find Python include and library directories for embedding the
1014    # interpreter. We rely on python-config to resolve the appropriate
1015    # includes and linker flags. ParseConfig does not seem to understand
1016    # the more exotic linker flags such as -Xlinker and -export-dynamic so
1017    # we add them explicitly below. If you want to link in an alternate
1018    # version of python, see above for instructions on how to invoke
1019    # scons with the appropriate PATH set.
1020    #
1021    # First we check if python2-config exists, else we use python-config
1022    python_config = readCommand(['which', 'python2-config'],
1023                                exception='').strip()
1024    if not os.path.exists(python_config):
1025        python_config = readCommand(['which', 'python-config'],
1026                                    exception='').strip()
1027    py_includes = readCommand([python_config, '--includes'],
1028                              exception='').split()
1029    # Strip the -I from the include folders before adding them to the
1030    # CPPPATH
1031    main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes))
1032
1033    # Read the linker flags and split them into libraries and other link
1034    # flags. The libraries are added later through the call the CheckLib.
1035    py_ld_flags = readCommand([python_config, '--ldflags'],
1036        exception='').split()
1037    py_libs = []
1038    for lib in py_ld_flags:
1039         if not lib.startswith('-l'):
1040             main.Append(LINKFLAGS=[lib])
1041         else:
1042             lib = lib[2:]
1043             if lib not in py_libs:
1044                 py_libs.append(lib)
1045
1046    # verify that this stuff works
1047    if not conf.CheckHeader('Python.h', '<>'):
1048        print "Error: can't find Python.h header in", py_includes
1049        print "Install Python headers (package python-dev on Ubuntu and RedHat)"
1050        Exit(1)
1051
1052    for lib in py_libs:
1053        if not conf.CheckLib(lib):
1054            print "Error: can't find library %s required by python" % lib
1055            Exit(1)
1056
1057# On Solaris you need to use libsocket for socket ops
1058if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
1059   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
1060       print "Can't find library with socket calls (e.g. accept())"
1061       Exit(1)
1062
1063# Check for zlib.  If the check passes, libz will be automatically
1064# added to the LIBS environment variable.
1065if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
1066    print 'Error: did not find needed zlib compression library '\
1067          'and/or zlib.h header file.'
1068    print '       Please install zlib and try again.'
1069    Exit(1)
1070
1071# If we have the protobuf compiler, also make sure we have the
1072# development libraries. If the check passes, libprotobuf will be
1073# automatically added to the LIBS environment variable. After
1074# this, we can use the HAVE_PROTOBUF flag to determine if we have
1075# got both protoc and libprotobuf available.
1076main['HAVE_PROTOBUF'] = main['PROTOC'] and \
1077    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
1078                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
1079
1080# If we have the compiler but not the library, print another warning.
1081if main['PROTOC'] and not main['HAVE_PROTOBUF']:
1082    print termcap.Yellow + termcap.Bold + \
1083        'Warning: did not find protocol buffer library and/or headers.\n' + \
1084    '       Please install libprotobuf-dev for tracing support.' + \
1085    termcap.Normal
1086
1087# Check for librt.
1088have_posix_clock = \
1089    conf.CheckLibWithHeader(None, 'time.h', 'C',
1090                            'clock_nanosleep(0,0,NULL,NULL);') or \
1091    conf.CheckLibWithHeader('rt', 'time.h', 'C',
1092                            'clock_nanosleep(0,0,NULL,NULL);')
1093
1094have_posix_timers = \
1095    conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
1096                            'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
1097
1098if not GetOption('without_tcmalloc'):
1099    if conf.CheckLib('tcmalloc'):
1100        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
1101    elif conf.CheckLib('tcmalloc_minimal'):
1102        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
1103    else:
1104        print termcap.Yellow + termcap.Bold + \
1105              "You can get a 12% performance improvement by "\
1106              "installing tcmalloc (libgoogle-perftools-dev package "\
1107              "on Ubuntu or RedHat)." + termcap.Normal
1108
1109
1110# Detect back trace implementations. The last implementation in the
1111# list will be used by default.
1112backtrace_impls = [ "none" ]
1113
1114if conf.CheckLibWithHeader(None, 'execinfo.h', 'C',
1115                           'backtrace_symbols_fd((void*)0, 0, 0);'):
1116    backtrace_impls.append("glibc")
1117elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C',
1118                           'backtrace_symbols_fd((void*)0, 0, 0);'):
1119    # NetBSD and FreeBSD need libexecinfo.
1120    backtrace_impls.append("glibc")
1121    main.Append(LIBS=['execinfo'])
1122
1123if backtrace_impls[-1] == "none":
1124    default_backtrace_impl = "none"
1125    print termcap.Yellow + termcap.Bold + \
1126        "No suitable back trace implementation found." + \
1127        termcap.Normal
1128
1129if not have_posix_clock:
1130    print "Can't find library for POSIX clocks."
1131
1132# Check for <fenv.h> (C99 FP environment control)
1133have_fenv = conf.CheckHeader('fenv.h', '<>')
1134if not have_fenv:
1135    print "Warning: Header file <fenv.h> not found."
1136    print "         This host has no IEEE FP rounding mode control."
1137
1138# Check if we should enable KVM-based hardware virtualization. The API
1139# we rely on exists since version 2.6.36 of the kernel, but somehow
1140# the KVM_API_VERSION does not reflect the change. We test for one of
1141# the types as a fall back.
1142have_kvm = conf.CheckHeader('linux/kvm.h', '<>')
1143if not have_kvm:
1144    print "Info: Compatible header file <linux/kvm.h> not found, " \
1145        "disabling KVM support."
1146
1147# x86 needs support for xsave. We test for the structure here since we
1148# won't be able to run new tests by the time we know which ISA we're
1149# targeting.
1150have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave',
1151                                    '#include <linux/kvm.h>') != 0
1152
1153# Check if the requested target ISA is compatible with the host
1154def is_isa_kvm_compatible(isa):
1155    try:
1156        import platform
1157        host_isa = platform.machine()
1158    except:
1159        print "Warning: Failed to determine host ISA."
1160        return False
1161
1162    if not have_posix_timers:
1163        print "Warning: Can not enable KVM, host seems to lack support " \
1164            "for POSIX timers"
1165        return False
1166
1167    if isa == "arm":
1168        return host_isa in ( "armv7l", "aarch64" )
1169    elif isa == "x86":
1170        if host_isa != "x86_64":
1171            return False
1172
1173        if not have_kvm_xsave:
1174            print "KVM on x86 requires xsave support in kernel headers."
1175            return False
1176
1177        return True
1178    else:
1179        return False
1180
1181
1182# Check if the exclude_host attribute is available. We want this to
1183# get accurate instruction counts in KVM.
1184main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
1185    'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
1186
1187
1188######################################################################
1189#
1190# Finish the configuration
1191#
1192main = conf.Finish()
1193
1194######################################################################
1195#
1196# Collect all non-global variables
1197#
1198
1199# Define the universe of supported ISAs
1200all_isa_list = [ ]
1201all_gpu_isa_list = [ ]
1202Export('all_isa_list')
1203Export('all_gpu_isa_list')
1204
1205class CpuModel(object):
1206    '''The CpuModel class encapsulates everything the ISA parser needs to
1207    know about a particular CPU model.'''
1208
1209    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
1210    dict = {}
1211
1212    # Constructor.  Automatically adds models to CpuModel.dict.
1213    def __init__(self, name, default=False):
1214        self.name = name           # name of model
1215
1216        # This cpu is enabled by default
1217        self.default = default
1218
1219        # Add self to dict
1220        if name in CpuModel.dict:
1221            raise AttributeError, "CpuModel '%s' already registered" % name
1222        CpuModel.dict[name] = self
1223
1224Export('CpuModel')
1225
1226# Sticky variables get saved in the variables file so they persist from
1227# one invocation to the next (unless overridden, in which case the new
1228# value becomes sticky).
1229sticky_vars = Variables(args=ARGUMENTS)
1230Export('sticky_vars')
1231
1232# Sticky variables that should be exported
1233export_vars = []
1234Export('export_vars')
1235
1236# For Ruby
1237all_protocols = []
1238Export('all_protocols')
1239protocol_dirs = []
1240Export('protocol_dirs')
1241slicc_includes = []
1242Export('slicc_includes')
1243
1244# Walk the tree and execute all SConsopts scripts that wil add to the
1245# above variables
1246if GetOption('verbose'):
1247    print "Reading SConsopts"
1248for bdir in [ base_dir ] + extras_dir_list:
1249    if not isdir(bdir):
1250        print "Error: directory '%s' does not exist" % bdir
1251        Exit(1)
1252    for root, dirs, files in os.walk(bdir):
1253        if 'SConsopts' in files:
1254            if GetOption('verbose'):
1255                print "Reading", joinpath(root, 'SConsopts')
1256            SConscript(joinpath(root, 'SConsopts'))
1257
1258all_isa_list.sort()
1259all_gpu_isa_list.sort()
1260
1261sticky_vars.AddVariables(
1262    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
1263    EnumVariable('TARGET_GPU_ISA', 'Target GPU ISA', 'hsail', all_gpu_isa_list),
1264    ListVariable('CPU_MODELS', 'CPU models',
1265                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
1266                 sorted(CpuModel.dict.keys())),
1267    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
1268                 False),
1269    BoolVariable('SS_COMPATIBLE_FP',
1270                 'Make floating-point results compatible with SimpleScalar',
1271                 False),
1272    BoolVariable('USE_SSE2',
1273                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
1274                 False),
1275    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
1276    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
1277    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
1278    BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm),
1279    BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False),
1280    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
1281                  all_protocols),
1282    EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation',
1283                 backtrace_impls[-1], backtrace_impls)
1284    )
1285
1286# These variables get exported to #defines in config/*.hh (see src/SConscript).
1287export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'TARGET_GPU_ISA',
1288                'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'USE_KVM', 'PROTOCOL',
1289                'HAVE_PROTOBUF', 'HAVE_PERF_ATTR_EXCLUDE_HOST']
1290
1291###################################################
1292#
1293# Define a SCons builder for configuration flag headers.
1294#
1295###################################################
1296
1297# This function generates a config header file that #defines the
1298# variable symbol to the current variable setting (0 or 1).  The source
1299# operands are the name of the variable and a Value node containing the
1300# value of the variable.
1301def build_config_file(target, source, env):
1302    (variable, value) = [s.get_contents() for s in source]
1303    f = file(str(target[0]), 'w')
1304    print >> f, '#define', variable, value
1305    f.close()
1306    return None
1307
1308# Combine the two functions into a scons Action object.
1309config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
1310
1311# The emitter munges the source & target node lists to reflect what
1312# we're really doing.
1313def config_emitter(target, source, env):
1314    # extract variable name from Builder arg
1315    variable = str(target[0])
1316    # True target is config header file
1317    target = joinpath('config', variable.lower() + '.hh')
1318    val = env[variable]
1319    if isinstance(val, bool):
1320        # Force value to 0/1
1321        val = int(val)
1322    elif isinstance(val, str):
1323        val = '"' + val + '"'
1324
1325    # Sources are variable name & value (packaged in SCons Value nodes)
1326    return ([target], [Value(variable), Value(val)])
1327
1328config_builder = Builder(emitter = config_emitter, action = config_action)
1329
1330main.Append(BUILDERS = { 'ConfigFile' : config_builder })
1331
1332# libelf build is shared across all configs in the build root.
1333main.SConscript('ext/libelf/SConscript',
1334                variant_dir = joinpath(build_root, 'libelf'))
1335
1336# iostream3 build is shared across all configs in the build root.
1337main.SConscript('ext/iostream3/SConscript',
1338                variant_dir = joinpath(build_root, 'iostream3'))
1339
1340# libfdt build is shared across all configs in the build root.
1341main.SConscript('ext/libfdt/SConscript',
1342                variant_dir = joinpath(build_root, 'libfdt'))
1343
1344# fputils build is shared across all configs in the build root.
1345main.SConscript('ext/fputils/SConscript',
1346                variant_dir = joinpath(build_root, 'fputils'))
1347
1348# DRAMSim2 build is shared across all configs in the build root.
1349main.SConscript('ext/dramsim2/SConscript',
1350                variant_dir = joinpath(build_root, 'dramsim2'))
1351
1352# DRAMPower build is shared across all configs in the build root.
1353main.SConscript('ext/drampower/SConscript',
1354                variant_dir = joinpath(build_root, 'drampower'))
1355
1356# nomali build is shared across all configs in the build root.
1357main.SConscript('ext/nomali/SConscript',
1358                variant_dir = joinpath(build_root, 'nomali'))
1359
1360###################################################
1361#
1362# This function is used to set up a directory with switching headers
1363#
1364###################################################
1365
1366main['ALL_ISA_LIST'] = all_isa_list
1367main['ALL_GPU_ISA_LIST'] = all_gpu_isa_list
1368all_isa_deps = {}
1369def make_switching_dir(dname, switch_headers, env):
1370    # Generate the header.  target[0] is the full path of the output
1371    # header to generate.  'source' is a dummy variable, since we get the
1372    # list of ISAs from env['ALL_ISA_LIST'].
1373    def gen_switch_hdr(target, source, env):
1374        fname = str(target[0])
1375        isa = env['TARGET_ISA'].lower()
1376        try:
1377            f = open(fname, 'w')
1378            print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
1379            f.close()
1380        except IOError:
1381            print "Failed to create %s" % fname
1382            raise
1383
1384    # Build SCons Action object. 'varlist' specifies env vars that this
1385    # action depends on; when env['ALL_ISA_LIST'] changes these actions
1386    # should get re-executed.
1387    switch_hdr_action = MakeAction(gen_switch_hdr,
1388                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
1389
1390    # Instantiate actions for each header
1391    for hdr in switch_headers:
1392        env.Command(hdr, [], switch_hdr_action)
1393
1394    isa_target = Dir('.').up().name.lower().replace('_', '-')
1395    env['PHONY_BASE'] = '#'+isa_target
1396    all_isa_deps[isa_target] = None
1397
1398Export('make_switching_dir')
1399
1400def make_gpu_switching_dir(dname, switch_headers, env):
1401    # Generate the header.  target[0] is the full path of the output
1402    # header to generate.  'source' is a dummy variable, since we get the
1403    # list of ISAs from env['ALL_ISA_LIST'].
1404    def gen_switch_hdr(target, source, env):
1405        fname = str(target[0])
1406
1407        isa = env['TARGET_GPU_ISA'].lower()
1408
1409        try:
1410            f = open(fname, 'w')
1411            print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
1412            f.close()
1413        except IOError:
1414            print "Failed to create %s" % fname
1415            raise
1416
1417    # Build SCons Action object. 'varlist' specifies env vars that this
1418    # action depends on; when env['ALL_ISA_LIST'] changes these actions
1419    # should get re-executed.
1420    switch_hdr_action = MakeAction(gen_switch_hdr,
1421                          Transform("GENERATE"), varlist=['ALL_ISA_GPU_LIST'])
1422
1423    # Instantiate actions for each header
1424    for hdr in switch_headers:
1425        env.Command(hdr, [], switch_hdr_action)
1426
1427Export('make_gpu_switching_dir')
1428
1429# all-isas -> all-deps -> all-environs -> all_targets
1430main.Alias('#all-isas', [])
1431main.Alias('#all-deps', '#all-isas')
1432
1433# Dummy target to ensure all environments are created before telling
1434# SCons what to actually make (the command line arguments).  We attach
1435# them to the dependence graph after the environments are complete.
1436ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work.
1437def environsComplete(target, source, env):
1438    for t in ORIG_BUILD_TARGETS:
1439        main.Depends('#all-targets', t)
1440
1441# Each build/* switching_dir attaches its *-environs target to #all-environs.
1442main.Append(BUILDERS = {'CompleteEnvirons' :
1443                        Builder(action=MakeAction(environsComplete, None))})
1444main.CompleteEnvirons('#all-environs', [])
1445
1446def doNothing(**ignored): pass
1447main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))})
1448
1449# The final target to which all the original targets ultimately get attached.
1450main.Dummy('#all-targets', '#all-environs')
1451BUILD_TARGETS[:] = ['#all-targets']
1452
1453###################################################
1454#
1455# Define build environments for selected configurations.
1456#
1457###################################################
1458
1459for variant_path in variant_paths:
1460    if not GetOption('silent'):
1461        print "Building in", variant_path
1462
1463    # Make a copy of the build-root environment to use for this config.
1464    env = main.Clone()
1465    env['BUILDDIR'] = variant_path
1466
1467    # variant_dir is the tail component of build path, and is used to
1468    # determine the build parameters (e.g., 'ALPHA_SE')
1469    (build_root, variant_dir) = splitpath(variant_path)
1470
1471    # Set env variables according to the build directory config.
1472    sticky_vars.files = []
1473    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1474    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1475    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1476    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1477    if isfile(current_vars_file):
1478        sticky_vars.files.append(current_vars_file)
1479        if not GetOption('silent'):
1480            print "Using saved variables file %s" % current_vars_file
1481    else:
1482        # Build dir-specific variables file doesn't exist.
1483
1484        # Make sure the directory is there so we can create it later
1485        opt_dir = dirname(current_vars_file)
1486        if not isdir(opt_dir):
1487            mkdir(opt_dir)
1488
1489        # Get default build variables from source tree.  Variables are
1490        # normally determined by name of $VARIANT_DIR, but can be
1491        # overridden by '--default=' arg on command line.
1492        default = GetOption('default')
1493        opts_dir = joinpath(main.root.abspath, 'build_opts')
1494        if default:
1495            default_vars_files = [joinpath(build_root, 'variables', default),
1496                                  joinpath(opts_dir, default)]
1497        else:
1498            default_vars_files = [joinpath(opts_dir, variant_dir)]
1499        existing_files = filter(isfile, default_vars_files)
1500        if existing_files:
1501            default_vars_file = existing_files[0]
1502            sticky_vars.files.append(default_vars_file)
1503            print "Variables file %s not found,\n  using defaults in %s" \
1504                  % (current_vars_file, default_vars_file)
1505        else:
1506            print "Error: cannot find variables file %s or " \
1507                  "default file(s) %s" \
1508                  % (current_vars_file, ' or '.join(default_vars_files))
1509            Exit(1)
1510
1511    # Apply current variable settings to env
1512    sticky_vars.Update(env)
1513
1514    help_texts["local_vars"] += \
1515        "Build variables for %s:\n" % variant_dir \
1516                 + sticky_vars.GenerateHelpText(env)
1517
1518    # Process variable settings.
1519
1520    if not have_fenv and env['USE_FENV']:
1521        print "Warning: <fenv.h> not available; " \
1522              "forcing USE_FENV to False in", variant_dir + "."
1523        env['USE_FENV'] = False
1524
1525    if not env['USE_FENV']:
1526        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1527        print "         FP results may deviate slightly from other platforms."
1528
1529    if env['EFENCE']:
1530        env.Append(LIBS=['efence'])
1531
1532    if env['USE_KVM']:
1533        if not have_kvm:
1534            print "Warning: Can not enable KVM, host seems to lack KVM support"
1535            env['USE_KVM'] = False
1536        elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1537            print "Info: KVM support disabled due to unsupported host and " \
1538                "target ISA combination"
1539            env['USE_KVM'] = False
1540
1541    if env['BUILD_GPU']:
1542        env.Append(CPPDEFINES=['BUILD_GPU'])
1543
1544    # Warn about missing optional functionality
1545    if env['USE_KVM']:
1546        if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1547            print "Warning: perf_event headers lack support for the " \
1548                "exclude_host attribute. KVM instruction counts will " \
1549                "be inaccurate."
1550
1551    # Save sticky variable settings back to current variables file
1552    sticky_vars.Save(current_vars_file, env)
1553
1554    if env['USE_SSE2']:
1555        env.Append(CCFLAGS=['-msse2'])
1556
1557    # The src/SConscript file sets up the build rules in 'env' according
1558    # to the configured variables.  It returns a list of environments,
1559    # one for each variant build (debug, opt, etc.)
1560    SConscript('src/SConscript', variant_dir = variant_path, exports = 'env')
1561
1562def pairwise(iterable):
1563    "s -> (s0,s1), (s1,s2), (s2, s3), ..."
1564    a, b = itertools.tee(iterable)
1565    b.next()
1566    return itertools.izip(a, b)
1567
1568# Create false dependencies so SCons will parse ISAs, establish
1569# dependencies, and setup the build Environments serially. Either
1570# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j
1571# greater than 1. It appears to be standard race condition stuff; it
1572# doesn't always fail, but usually, and the behaviors are different.
1573# Every time I tried to remove this, builds would fail in some
1574# creative new way. So, don't do that. You'll want to, though, because
1575# tests/SConscript takes a long time to make its Environments.
1576for t1, t2 in pairwise(sorted(all_isa_deps.iterkeys())):
1577    main.Depends('#%s-deps'     % t2, '#%s-deps'     % t1)
1578    main.Depends('#%s-environs' % t2, '#%s-environs' % t1)
1579
1580# base help text
1581Help('''
1582Usage: scons [scons options] [build variables] [target(s)]
1583
1584Extra scons options:
1585%(options)s
1586
1587Global build variables:
1588%(global_vars)s
1589
1590%(local_vars)s
1591''' % help_texts)
1592