SConstruct revision 9420
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc.
4955SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company
5955SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
6955SN/A# All rights reserved.
7955SN/A#
8955SN/A# Redistribution and use in source and binary forms, with or without
9955SN/A# modification, are permitted provided that the following conditions are
10955SN/A# met: redistributions of source code must retain the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer;
12955SN/A# redistributions in binary form must reproduce the above copyright
13955SN/A# notice, this list of conditions and the following disclaimer in the
14955SN/A# documentation and/or other materials provided with the distribution;
15955SN/A# neither the name of the copyright holders nor the names of its
16955SN/A# contributors may be used to endorse or promote products derived from
17955SN/A# this software without specific prior written permission.
18955SN/A#
19955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
282665Ssaidi@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
292665Ssaidi@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30955SN/A#
31955SN/A# Authors: Steve Reinhardt
32955SN/A#          Nathan Binkert
33955SN/A
34955SN/A###################################################
352632Sstever@eecs.umich.edu#
362632Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file.
372632Sstever@eecs.umich.edu#
382632Sstever@eecs.umich.edu# While in this directory ('gem5'), just type 'scons' to build the default
39955SN/A# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
402632Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for
412632Sstever@eecs.umich.edu# the optimized full-system version).
422761Sstever@eecs.umich.edu#
432632Sstever@eecs.umich.edu# You can build gem5 in a different directory as long as there is a
442632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path.  The build system
452632Sstever@eecs.umich.edu# expects that all configs under the same build directory are being
462761Sstever@eecs.umich.edu# built for the same host system.
472761Sstever@eecs.umich.edu#
482761Sstever@eecs.umich.edu# Examples:
492632Sstever@eecs.umich.edu#
502632Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
512761Sstever@eecs.umich.edu#   scons to search up the directory tree for this SConstruct file.
522761Sstever@eecs.umich.edu#   % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug
532761Sstever@eecs.umich.edu#   % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug
542761Sstever@eecs.umich.edu#
552761Sstever@eecs.umich.edu#   The following two commands are equivalent and demonstrate building
562632Sstever@eecs.umich.edu#   in a directory outside of the source tree.  The '-C' option tells
572632Sstever@eecs.umich.edu#   scons to chdir to the specified directory to find this SConstruct
582632Sstever@eecs.umich.edu#   file.
592632Sstever@eecs.umich.edu#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
602632Sstever@eecs.umich.edu#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
612632Sstever@eecs.umich.edu#
622632Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options.  If you're in this
63955SN/A# 'gem5' directory (or use -u or -C to tell scons where to find this
64955SN/A# file), you can use 'scons -h' to print all the gem5-specific build
65955SN/A# options as well.
66955SN/A#
67955SN/A###################################################
683918Ssaidi@eecs.umich.edu
694202Sbinkertn@umich.edu# Check for recent-enough Python and SCons versions.
704678Snate@binkert.orgtry:
71955SN/A    # Really old versions of scons only take two options for the
722656Sstever@eecs.umich.edu    # function, so check once without the revision and once with the
732656Sstever@eecs.umich.edu    # revision, the first instance will fail for stuff other than
742656Sstever@eecs.umich.edu    # 0.98, and the second will fail for 0.98.0
752656Sstever@eecs.umich.edu    EnsureSConsVersion(0, 98)
762656Sstever@eecs.umich.edu    EnsureSConsVersion(0, 98, 1)
772656Sstever@eecs.umich.eduexcept SystemExit, e:
782656Sstever@eecs.umich.edu    print """
792653Sstever@eecs.umich.eduFor more details, see:
802653Sstever@eecs.umich.edu    http://gem5.org/Dependencies
812653Sstever@eecs.umich.edu"""
822653Sstever@eecs.umich.edu    raise
832653Sstever@eecs.umich.edu
842653Sstever@eecs.umich.edu# We ensure the python version early because we have stuff that
852653Sstever@eecs.umich.edu# requires python 2.4
862653Sstever@eecs.umich.edutry:
872653Sstever@eecs.umich.edu    EnsurePythonVersion(2, 4)
882653Sstever@eecs.umich.eduexcept SystemExit, e:
894781Snate@binkert.org    print """
901852SN/AYou can use a non-default installation of the Python interpreter by
91955SN/Aeither (1) rearranging your PATH so that scons finds the non-default
92955SN/A'python' first or (2) explicitly invoking an alternative interpreter
93955SN/Aon the scons script.
943717Sstever@eecs.umich.edu
953716Sstever@eecs.umich.eduFor more details, see:
96955SN/A    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
971533SN/A"""
983716Sstever@eecs.umich.edu    raise
991533SN/A
1004678Snate@binkert.org# Global Python includes
1014678Snate@binkert.orgimport os
1024678Snate@binkert.orgimport re
1034678Snate@binkert.orgimport subprocess
1044678Snate@binkert.orgimport sys
1054678Snate@binkert.org
1064678Snate@binkert.orgfrom os import mkdir, environ
1074678Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath
1084678Snate@binkert.orgfrom os.path import exists,  isdir, isfile
1094678Snate@binkert.orgfrom os.path import join as joinpath, split as splitpath
1104678Snate@binkert.org
1114678Snate@binkert.org# SCons includes
1124678Snate@binkert.orgimport SCons
1134678Snate@binkert.orgimport SCons.Node
1144678Snate@binkert.org
1154678Snate@binkert.orgextra_python_paths = [
1164678Snate@binkert.org    Dir('src/python').srcnode().abspath, # gem5 includes
1174678Snate@binkert.org    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1184678Snate@binkert.org    ]
1194678Snate@binkert.org
1204678Snate@binkert.orgsys.path[1:1] = extra_python_paths
1214973Ssaidi@eecs.umich.edu
1224678Snate@binkert.orgfrom m5.util import compareVersions, readCommand
1234678Snate@binkert.orgfrom m5.util.terminal import get_termcap
1244678Snate@binkert.org
1254678Snate@binkert.orghelp_texts = {
1264678Snate@binkert.org    "options" : "",
1274678Snate@binkert.org    "global_vars" : "",
128955SN/A    "local_vars" : ""
129955SN/A}
1302632Sstever@eecs.umich.edu
1312632Sstever@eecs.umich.eduExport("help_texts")
132955SN/A
133955SN/A
134955SN/A# There's a bug in scons in that (1) by default, the help texts from
135955SN/A# AddOption() are supposed to be displayed when you type 'scons -h'
1362632Sstever@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the
137955SN/A# Help() function, but these two features are incompatible: once
1382632Sstever@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get
1392632Sstever@eecs.umich.edu# at the help texts from AddOptions.  See:
1402632Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1412632Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1422632Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and
1432632Sstever@eecs.umich.edu# re-inject it via Help().  Ideally someday this bug will be fixed and
1442632Sstever@eecs.umich.edu# we can just use AddOption directly.
1453053Sstever@eecs.umich.edudef AddLocalOption(*args, **kwargs):
1463053Sstever@eecs.umich.edu    col_width = 30
1473053Sstever@eecs.umich.edu
1483053Sstever@eecs.umich.edu    help = "  " + ", ".join(args)
1493053Sstever@eecs.umich.edu    if "help" in kwargs:
1503053Sstever@eecs.umich.edu        length = len(help)
1513053Sstever@eecs.umich.edu        if length >= col_width:
1523053Sstever@eecs.umich.edu            help += "\n" + " " * col_width
1533053Sstever@eecs.umich.edu        else:
1543053Sstever@eecs.umich.edu            help += " " * (col_width - length)
1553053Sstever@eecs.umich.edu        help += kwargs["help"]
1563053Sstever@eecs.umich.edu    help_texts["options"] += help + "\n"
1573053Sstever@eecs.umich.edu
1583053Sstever@eecs.umich.edu    AddOption(*args, **kwargs)
1593053Sstever@eecs.umich.edu
1603053Sstever@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true',
1612632Sstever@eecs.umich.edu               help="Add color to abbreviated scons output")
1622632Sstever@eecs.umich.eduAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1632632Sstever@eecs.umich.edu               help="Don't add color to abbreviated scons output")
1642632Sstever@eecs.umich.eduAddLocalOption('--default', dest='default', type='string', action='store',
1652632Sstever@eecs.umich.edu               help='Override which build_opts file to use for defaults')
1662632Sstever@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1673718Sstever@eecs.umich.edu               help='Disable style checking hooks')
1683718Sstever@eecs.umich.eduAddLocalOption('--no-lto', dest='no_lto', action='store_true',
1693718Sstever@eecs.umich.edu               help='Disable Link-Time Optimization for fast')
1703718Sstever@eecs.umich.eduAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1713718Sstever@eecs.umich.edu               help='Update test reference outputs')
1723718Sstever@eecs.umich.eduAddLocalOption('--verbose', dest='verbose', action='store_true',
1733718Sstever@eecs.umich.edu               help='Print full tool command lines')
1743718Sstever@eecs.umich.edu
1753718Sstever@eecs.umich.edutermcap = get_termcap(GetOption('use_colors'))
1763718Sstever@eecs.umich.edu
1773718Sstever@eecs.umich.edu########################################################################
1783718Sstever@eecs.umich.edu#
1793718Sstever@eecs.umich.edu# Set up the main build environment.
1802634Sstever@eecs.umich.edu#
1812634Sstever@eecs.umich.edu########################################################################
1822632Sstever@eecs.umich.eduuse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
1832638Sstever@eecs.umich.edu                 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH',
1842632Sstever@eecs.umich.edu                 'RANLIB', 'SWIG' ])
1852632Sstever@eecs.umich.edu
1862632Sstever@eecs.umich.eduuse_prefixes = [
1872632Sstever@eecs.umich.edu    "M5",           # M5 configuration (e.g., path to kernels)
1882632Sstever@eecs.umich.edu    "DISTCC_",      # distcc (distributed compiler wrapper) configuration
1892632Sstever@eecs.umich.edu    "CCACHE_",      # ccache (caching compiler wrapper) configuration
1901858SN/A    "CCC_",         # clang static analyzer configuration
1913716Sstever@eecs.umich.edu    ]
1922638Sstever@eecs.umich.edu
1932638Sstever@eecs.umich.eduuse_env = {}
1942638Sstever@eecs.umich.edufor key,val in os.environ.iteritems():
1952638Sstever@eecs.umich.edu    if key in use_vars or \
1962638Sstever@eecs.umich.edu            any([key.startswith(prefix) for prefix in use_prefixes]):
1972638Sstever@eecs.umich.edu        use_env[key] = val
1982638Sstever@eecs.umich.edu
1993716Sstever@eecs.umich.edumain = Environment(ENV=use_env)
2002634Sstever@eecs.umich.edumain.Decider('MD5-timestamp')
2012634Sstever@eecs.umich.edumain.root = Dir(".")         # The current directory (where this file lives).
202955SN/Amain.srcdir = Dir("src")     # The source directory
203955SN/A
204955SN/Amain_dict_keys = main.Dictionary().keys()
205955SN/A
206955SN/A# Check that we have a C/C++ compiler
207955SN/Aif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
208955SN/A    print "No C++ compiler installed (package g++ on Ubuntu and RedHat)"
209955SN/A    Exit(1)
2101858SN/A
2111858SN/A# Check that swig is present
2122632Sstever@eecs.umich.eduif not 'SWIG' in main_dict_keys:
213955SN/A    print "swig is not installed (package swig on Ubuntu and RedHat)"
2144781Snate@binkert.org    Exit(1)
2153643Ssaidi@eecs.umich.edu
2163643Ssaidi@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses
2173643Ssaidi@eecs.umich.edu# as well
2183643Ssaidi@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths)
2193643Ssaidi@eecs.umich.edu
2203643Ssaidi@eecs.umich.edu########################################################################
2213643Ssaidi@eecs.umich.edu#
2224494Ssaidi@eecs.umich.edu# Mercurial Stuff.
2234494Ssaidi@eecs.umich.edu#
2243716Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some
2251105SN/A# extra things.
2262667Sstever@eecs.umich.edu#
2272667Sstever@eecs.umich.edu########################################################################
2282667Sstever@eecs.umich.edu
2292667Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg")
2302667Sstever@eecs.umich.edu
2312667Sstever@eecs.umich.edumercurial_style_message = """
2321869SN/AYou're missing the gem5 style hook, which automatically checks your code
2331869SN/Aagainst the gem5 style rules on hg commit and qrefresh commands.  This
2341869SN/Ascript will now install the hook in your .hg/hgrc file.
2351869SN/APress enter to continue, or ctrl-c to abort: """
2361869SN/A
2371065SN/Amercurial_style_hook = """
2382632Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct
2392632Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks
2403918Ssaidi@eecs.umich.edu[extensions]
2413918Ssaidi@eecs.umich.edustyle = %s/util/style.py
2423940Ssaidi@eecs.umich.edu
2434781Snate@binkert.org[hooks]
2444781Snate@binkert.orgpretxncommit.style = python:style.check_style
2453918Ssaidi@eecs.umich.edupre-qrefresh.style = python:style.check_style
2464781Snate@binkert.org# End of SConstruct additions
2474781Snate@binkert.org
2483918Ssaidi@eecs.umich.edu""" % (main.root.abspath)
2494781Snate@binkert.org
2504781Snate@binkert.orgmercurial_lib_not_found = """
2513940Ssaidi@eecs.umich.eduMercurial libraries cannot be found, ignoring style hook.  If
2523942Ssaidi@eecs.umich.eduyou are a gem5 developer, please fix this and run the style
2533940Ssaidi@eecs.umich.eduhook. It is important.
2543918Ssaidi@eecs.umich.edu"""
2553918Ssaidi@eecs.umich.edu
256955SN/A# Check for style hook and prompt for installation if it's not there.
2571858SN/A# Skip this if --ignore-style was specified, there's no .hg dir to
2583918Ssaidi@eecs.umich.edu# install a hook in, or there's no interactive terminal to prompt.
2593918Ssaidi@eecs.umich.eduif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
2603918Ssaidi@eecs.umich.edu    style_hook = True
2613918Ssaidi@eecs.umich.edu    try:
2623940Ssaidi@eecs.umich.edu        from mercurial import ui
2633940Ssaidi@eecs.umich.edu        ui = ui.ui()
2643918Ssaidi@eecs.umich.edu        ui.readconfig(hgdir.File('hgrc').abspath)
2653918Ssaidi@eecs.umich.edu        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
2663918Ssaidi@eecs.umich.edu                     ui.config('hooks', 'pre-qrefresh.style', None)
2673918Ssaidi@eecs.umich.edu    except ImportError:
2683918Ssaidi@eecs.umich.edu        print mercurial_lib_not_found
2693918Ssaidi@eecs.umich.edu
2703918Ssaidi@eecs.umich.edu    if not style_hook:
2713918Ssaidi@eecs.umich.edu        print mercurial_style_message,
2723918Ssaidi@eecs.umich.edu        # continue unless user does ctrl-c/ctrl-d etc.
2733940Ssaidi@eecs.umich.edu        try:
2743918Ssaidi@eecs.umich.edu            raw_input()
2753918Ssaidi@eecs.umich.edu        except:
2761851SN/A            print "Input exception, exiting scons.\n"
2771851SN/A            sys.exit(1)
2781858SN/A        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
2792632Sstever@eecs.umich.edu        print "Adding style hook to", hgrc_path, "\n"
280955SN/A        try:
2813053Sstever@eecs.umich.edu            hgrc = open(hgrc_path, 'a')
2823053Sstever@eecs.umich.edu            hgrc.write(mercurial_style_hook)
2833053Sstever@eecs.umich.edu            hgrc.close()
2843053Sstever@eecs.umich.edu        except:
2853053Sstever@eecs.umich.edu            print "Error updating", hgrc_path
2863053Sstever@eecs.umich.edu            sys.exit(1)
2873053Sstever@eecs.umich.edu
2883053Sstever@eecs.umich.edu
2893053Sstever@eecs.umich.edu###################################################
2904742Sstever@eecs.umich.edu#
2914742Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
2923053Sstever@eecs.umich.edu# the target(s).
2933053Sstever@eecs.umich.edu#
2943053Sstever@eecs.umich.edu###################################################
2953053Sstever@eecs.umich.edu
2963053Sstever@eecs.umich.edu# Find default configuration & binary.
2973053Sstever@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
2983053Sstever@eecs.umich.edu
2993053Sstever@eecs.umich.edu# helper function: find last occurrence of element in list
3003053Sstever@eecs.umich.edudef rfind(l, elt, offs = -1):
3012667Sstever@eecs.umich.edu    for i in range(len(l)+offs, 0, -1):
3024554Sbinkertn@umich.edu        if l[i] == elt:
3034554Sbinkertn@umich.edu            return i
3042667Sstever@eecs.umich.edu    raise ValueError, "element not found"
3054554Sbinkertn@umich.edu
3064554Sbinkertn@umich.edu# Take a list of paths (or SCons Nodes) and return a list with all
3074554Sbinkertn@umich.edu# paths made absolute and ~-expanded.  Paths will be interpreted
3084554Sbinkertn@umich.edu# relative to the launch directory unless a different root is provided
3094554Sbinkertn@umich.edudef makePathListAbsolute(path_list, root=GetLaunchDir()):
3104554Sbinkertn@umich.edu    return [abspath(joinpath(root, expanduser(str(p))))
3114554Sbinkertn@umich.edu            for p in path_list]
3124781Snate@binkert.org
3134554Sbinkertn@umich.edu# Each target must have 'build' in the interior of the path; the
3144554Sbinkertn@umich.edu# directory below this will determine the build parameters.  For
3152667Sstever@eecs.umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
3164554Sbinkertn@umich.edu# recognize that ALPHA_SE specifies the configuration because it
3174554Sbinkertn@umich.edu# follow 'build' in the build path.
3184554Sbinkertn@umich.edu
3194554Sbinkertn@umich.edu# The funky assignment to "[:]" is needed to replace the list contents
3202667Sstever@eecs.umich.edu# in place rather than reassign the symbol to a new list, which
3214554Sbinkertn@umich.edu# doesn't work (obviously!).
3222667Sstever@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
3234554Sbinkertn@umich.edu
3244554Sbinkertn@umich.edu# Generate a list of the unique build roots and configs that the
3252667Sstever@eecs.umich.edu# collected targets reference.
3262638Sstever@eecs.umich.eduvariant_paths = []
3272638Sstever@eecs.umich.edubuild_root = None
3282638Sstever@eecs.umich.edufor t in BUILD_TARGETS:
3293716Sstever@eecs.umich.edu    path_dirs = t.split('/')
3303716Sstever@eecs.umich.edu    try:
3311858SN/A        build_top = rfind(path_dirs, 'build', -2)
3323118Sstever@eecs.umich.edu    except:
3333118Sstever@eecs.umich.edu        print "Error: no non-leaf 'build' dir found on target path", t
3343118Sstever@eecs.umich.edu        Exit(1)
3353118Sstever@eecs.umich.edu    this_build_root = joinpath('/',*path_dirs[:build_top+1])
3363118Sstever@eecs.umich.edu    if not build_root:
3373118Sstever@eecs.umich.edu        build_root = this_build_root
3383118Sstever@eecs.umich.edu    else:
3393118Sstever@eecs.umich.edu        if this_build_root != build_root:
3403118Sstever@eecs.umich.edu            print "Error: build targets not under same build root\n"\
3413118Sstever@eecs.umich.edu                  "  %s\n  %s" % (build_root, this_build_root)
3423118Sstever@eecs.umich.edu            Exit(1)
3433716Sstever@eecs.umich.edu    variant_path = joinpath('/',*path_dirs[:build_top+2])
3443118Sstever@eecs.umich.edu    if variant_path not in variant_paths:
3453118Sstever@eecs.umich.edu        variant_paths.append(variant_path)
3463118Sstever@eecs.umich.edu
3473118Sstever@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there)
3483118Sstever@eecs.umich.eduif not isdir(build_root):
3493118Sstever@eecs.umich.edu    mkdir(build_root)
3503118Sstever@eecs.umich.edumain['BUILDROOT'] = build_root
3513118Sstever@eecs.umich.edu
3523118Sstever@eecs.umich.eduExport('main')
3533716Sstever@eecs.umich.edu
3543118Sstever@eecs.umich.edumain.SConsignFile(joinpath(build_root, "sconsign"))
3553118Sstever@eecs.umich.edu
3563118Sstever@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up
3573118Sstever@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves
3583118Sstever@eecs.umich.edu# file to file~ then copies to file, breaking the link.  Symbolic
3593118Sstever@eecs.umich.edu# (soft) links work better.
3603118Sstever@eecs.umich.edumain.SetOption('duplicate', 'soft-copy')
3613118Sstever@eecs.umich.edu
3623118Sstever@eecs.umich.edu#
3633118Sstever@eecs.umich.edu# Set up global sticky variables... these are common to an entire build
3643483Ssaidi@eecs.umich.edu# tree (not specific to a particular build like ALPHA_SE)
3653494Ssaidi@eecs.umich.edu#
3663494Ssaidi@eecs.umich.edu
3673483Ssaidi@eecs.umich.eduglobal_vars_file = joinpath(build_root, 'variables.global')
3683483Ssaidi@eecs.umich.edu
3693483Ssaidi@eecs.umich.eduglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
3703053Sstever@eecs.umich.edu
3713053Sstever@eecs.umich.eduglobal_vars.AddVariables(
3723918Ssaidi@eecs.umich.edu    ('CC', 'C compiler', environ.get('CC', main['CC'])),
3733053Sstever@eecs.umich.edu    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
3743053Sstever@eecs.umich.edu    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
3753053Sstever@eecs.umich.edu    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
3763053Sstever@eecs.umich.edu    ('BATCH', 'Use batch pool for build and tests', False),
3773053Sstever@eecs.umich.edu    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
3781858SN/A    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
3791858SN/A    ('EXTRAS', 'Add extra directories to the compilation', '')
3801858SN/A    )
3811858SN/A
3821858SN/A# Update main environment with values from ARGUMENTS & global_vars_file
3831858SN/Aglobal_vars.Update(main)
3841859SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
3851858SN/A
3861858SN/A# Save sticky variable settings back to current variables file
3871858SN/Aglobal_vars.Save(global_vars_file, main)
3881859SN/A
3891859SN/A# Parse EXTRAS variable to build list of all directories where we're
3901862SN/A# look for sources etc.  This list is exported as extras_dir_list.
3913053Sstever@eecs.umich.edubase_dir = main.srcdir.abspath
3923053Sstever@eecs.umich.eduif main['EXTRAS']:
3933053Sstever@eecs.umich.edu    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
3943053Sstever@eecs.umich.eduelse:
3951859SN/A    extras_dir_list = []
3961859SN/A
3971859SN/AExport('base_dir')
3981859SN/AExport('extras_dir_list')
3991859SN/A
4001859SN/A# the ext directory should be on the #includes path
4011859SN/Amain.Append(CPPPATH=[Dir('ext')])
4021859SN/A
4031862SN/Adef strip_build_path(path, env):
4041859SN/A    path = str(path)
4051859SN/A    variant_base = env['BUILDROOT'] + os.path.sep
4061859SN/A    if path.startswith(variant_base):
4071858SN/A        path = path[len(variant_base):]
4081858SN/A    elif path.startswith('build/'):
4092139SN/A        path = path[6:]
4104202Sbinkertn@umich.edu    return path
4114202Sbinkertn@umich.edu
4122139SN/A# Generate a string of the form:
4132155SN/A#   common/path/prefix/src1, src2 -> tgt1, tgt2
4144202Sbinkertn@umich.edu# to print while building.
4154202Sbinkertn@umich.educlass Transform(object):
4164202Sbinkertn@umich.edu    # all specific color settings should be here and nowhere else
4172155SN/A    tool_color = termcap.Normal
4181869SN/A    pfx_color = termcap.Yellow
4191869SN/A    srcs_color = termcap.Yellow + termcap.Bold
4201869SN/A    arrow_color = termcap.Blue + termcap.Bold
4211869SN/A    tgts_color = termcap.Yellow + termcap.Bold
4224202Sbinkertn@umich.edu
4234202Sbinkertn@umich.edu    def __init__(self, tool, max_sources=99):
4244202Sbinkertn@umich.edu        self.format = self.tool_color + (" [%8s] " % tool) \
4254202Sbinkertn@umich.edu                      + self.pfx_color + "%s" \
4264202Sbinkertn@umich.edu                      + self.srcs_color + "%s" \
4274202Sbinkertn@umich.edu                      + self.arrow_color + " -> " \
4284202Sbinkertn@umich.edu                      + self.tgts_color + "%s" \
4294202Sbinkertn@umich.edu                      + termcap.Normal
4304202Sbinkertn@umich.edu        self.max_sources = max_sources
4314202Sbinkertn@umich.edu
4324202Sbinkertn@umich.edu    def __call__(self, target, source, env, for_signature=None):
4334202Sbinkertn@umich.edu        # truncate source list according to max_sources param
4344202Sbinkertn@umich.edu        source = source[0:self.max_sources]
4354202Sbinkertn@umich.edu        def strip(f):
4364202Sbinkertn@umich.edu            return strip_build_path(str(f), env)
4374202Sbinkertn@umich.edu        if len(source) > 0:
4384773Snate@binkert.org            srcs = map(strip, source)
4394775Snate@binkert.org        else:
4404775Snate@binkert.org            srcs = ['']
4414773Snate@binkert.org        tgts = map(strip, target)
4424773Snate@binkert.org        # surprisingly, os.path.commonprefix is a dumb char-by-char string
4434773Snate@binkert.org        # operation that has nothing to do with paths.
4444773Snate@binkert.org        com_pfx = os.path.commonprefix(srcs + tgts)
4454773Snate@binkert.org        com_pfx_len = len(com_pfx)
4464773Snate@binkert.org        if com_pfx:
4471869SN/A            # do some cleanup and sanity checking on common prefix
4484202Sbinkertn@umich.edu            if com_pfx[-1] == ".":
4491869SN/A                # prefix matches all but file extension: ok
4502508SN/A                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
4512508SN/A                com_pfx = com_pfx[0:-1]
4522508SN/A            elif com_pfx[-1] == "/":
4532508SN/A                # common prefix is directory path: OK
4544202Sbinkertn@umich.edu                pass
4551869SN/A            else:
4561869SN/A                src0_len = len(srcs[0])
4571869SN/A                tgt0_len = len(tgts[0])
4581869SN/A                if src0_len == com_pfx_len:
4591869SN/A                    # source is a substring of target, OK
4601869SN/A                    pass
4611965SN/A                elif tgt0_len == com_pfx_len:
4621965SN/A                    # target is a substring of source, need to back up to
4631965SN/A                    # avoid empty string on RHS of arrow
4641869SN/A                    sep_idx = com_pfx.rfind(".")
4651869SN/A                    if sep_idx != -1:
4662733Sktlim@umich.edu                        com_pfx = com_pfx[0:sep_idx]
4671869SN/A                    else:
4681884SN/A                        com_pfx = ''
4691884SN/A                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
4703356Sbinkertn@umich.edu                    # still splitting at file extension: ok
4713356Sbinkertn@umich.edu                    pass
4723356Sbinkertn@umich.edu                else:
4734773Snate@binkert.org                    # probably a fluke; ignore it
4744773Snate@binkert.org                    com_pfx = ''
4754773Snate@binkert.org        # recalculate length in case com_pfx was modified
4761869SN/A        com_pfx_len = len(com_pfx)
4771858SN/A        def fmt(files):
4781869SN/A            f = map(lambda s: s[com_pfx_len:], files)
4791869SN/A            return ', '.join(f)
4801869SN/A        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
4811858SN/A
4822761Sstever@eecs.umich.eduExport('Transform')
4831869SN/A
4842733Sktlim@umich.edu# enable the regression script to use the termcap
4853584Ssaidi@eecs.umich.edumain['TERMCAP'] = termcap
4861869SN/A
4871869SN/Aif GetOption('verbose'):
4881869SN/A    def MakeAction(action, string, *args, **kwargs):
4891869SN/A        return Action(action, *args, **kwargs)
4901869SN/Aelse:
4911869SN/A    MakeAction = Action
4921858SN/A    main['CCCOMSTR']        = Transform("CC")
493955SN/A    main['CXXCOMSTR']       = Transform("CXX")
494955SN/A    main['ASCOMSTR']        = Transform("AS")
4951869SN/A    main['SWIGCOMSTR']      = Transform("SWIG")
4961869SN/A    main['ARCOMSTR']        = Transform("AR", 0)
4971869SN/A    main['LINKCOMSTR']      = Transform("LINK", 0)
4981869SN/A    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
4991869SN/A    main['M4COMSTR']        = Transform("M4")
5001869SN/A    main['SHCCCOMSTR']      = Transform("SHCC")
5011869SN/A    main['SHCXXCOMSTR']     = Transform("SHCXX")
5021869SN/AExport('MakeAction')
5031869SN/A
5041869SN/A# Initialize the Link-Time Optimization (LTO) flags
5051869SN/Amain['LTO_CCFLAGS'] = []
5061869SN/Amain['LTO_LDFLAGS'] = []
5071869SN/A
5081869SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False)
5091869SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False)
5101869SN/A
5111869SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
5121869SN/Amain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
5131869SN/Aif main['GCC'] + main['CLANG'] > 1:
5141869SN/A    print 'Error: How can we have two at the same time?'
5151869SN/A    Exit(1)
5161869SN/A
5171869SN/A# Set up default C++ compiler flags
5181869SN/Aif main['GCC']:
5191869SN/A    # Check for a supported version of gcc, >= 4.4 is needed for c++0x
5201869SN/A    # support. See http://gcc.gnu.org/projects/cxx0x.html for details
5211869SN/A    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
5221869SN/A    if compareVersions(gcc_version, "4.4") < 0:
5231869SN/A        print 'Error: gcc version 4.4 or newer required.'
5243716Sstever@eecs.umich.edu        print '       Installed version:', gcc_version
5253356Sbinkertn@umich.edu        Exit(1)
5263356Sbinkertn@umich.edu
5273356Sbinkertn@umich.edu    main['GCC_VERSION'] = gcc_version
5283356Sbinkertn@umich.edu    main.Append(CCFLAGS=['-pipe'])
5293356Sbinkertn@umich.edu    main.Append(CCFLAGS=['-fno-strict-aliasing'])
5303356Sbinkertn@umich.edu    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
5314781Snate@binkert.org    main.Append(CXXFLAGS=['-std=c++0x'])
5321869SN/A
5331869SN/A    # Check for versions with bugs
5341869SN/A    if not compareVersions(gcc_version, '4.4.1') or \
5351869SN/A       not compareVersions(gcc_version, '4.4.2'):
5361869SN/A        print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.'
5371869SN/A        main.Append(CCFLAGS=['-fno-tree-vectorize'])
5381869SN/A
5392655Sstever@eecs.umich.edu    # LTO support is only really working properly from 4.6 and beyond
5402655Sstever@eecs.umich.edu    if compareVersions(gcc_version, '4.6') >= 0:
5412655Sstever@eecs.umich.edu        # Add the appropriate Link-Time Optimization (LTO) flags
5422655Sstever@eecs.umich.edu        # unless LTO is explicitly turned off. Note that these flags
5432655Sstever@eecs.umich.edu        # are only used by the fast target.
5442655Sstever@eecs.umich.edu        if not GetOption('no_lto'):
5452655Sstever@eecs.umich.edu            # Pass the LTO flag when compiling to produce GIMPLE
5462655Sstever@eecs.umich.edu            # output, we merely create the flags here and only append
5472655Sstever@eecs.umich.edu            # them later/
5482655Sstever@eecs.umich.edu            main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
5492655Sstever@eecs.umich.edu
5502655Sstever@eecs.umich.edu            # Use the same amount of jobs for LTO as we are running
5512655Sstever@eecs.umich.edu            # scons with, we hardcode the use of the linker plugin
5522655Sstever@eecs.umich.edu            # which requires either gold or GNU ld >= 2.21
5532655Sstever@eecs.umich.edu            main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs'),
5542655Sstever@eecs.umich.edu                                   '-fuse-linker-plugin']
5552655Sstever@eecs.umich.edu
5562655Sstever@eecs.umich.eduelif main['CLANG']:
5572655Sstever@eecs.umich.edu    # Check for a supported version of clang, >= 2.9 is needed to
5582655Sstever@eecs.umich.edu    # support similar features as gcc 4.4. See
5592655Sstever@eecs.umich.edu    # http://clang.llvm.org/cxx_status.html for details
5602655Sstever@eecs.umich.edu    clang_version_re = re.compile(".* version (\d+\.\d+)")
5612655Sstever@eecs.umich.edu    clang_version_match = clang_version_re.match(CXX_version)
5622655Sstever@eecs.umich.edu    if (clang_version_match):
5632655Sstever@eecs.umich.edu        clang_version = clang_version_match.groups()[0]
5642655Sstever@eecs.umich.edu        if compareVersions(clang_version, "2.9") < 0:
5652634Sstever@eecs.umich.edu            print 'Error: clang version 2.9 or newer required.'
5662634Sstever@eecs.umich.edu            print '       Installed version:', clang_version
5672634Sstever@eecs.umich.edu            Exit(1)
5682634Sstever@eecs.umich.edu    else:
5692634Sstever@eecs.umich.edu        print 'Error: Unable to determine clang version.'
5702634Sstever@eecs.umich.edu        Exit(1)
5712638Sstever@eecs.umich.edu
5722638Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-pipe'])
5733716Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-fno-strict-aliasing'])
5742638Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
5752638Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-Wno-tautological-compare'])
5761869SN/A    main.Append(CCFLAGS=['-Wno-self-assign'])
5771869SN/A    # Ruby makes frequent use of extraneous parantheses in the printing
5783546Sgblack@eecs.umich.edu    # of if-statements
5793546Sgblack@eecs.umich.edu    main.Append(CCFLAGS=['-Wno-parentheses'])
5803546Sgblack@eecs.umich.edu    main.Append(CXXFLAGS=['-std=c++0x'])
5813546Sgblack@eecs.umich.edu    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
5824202Sbinkertn@umich.edu    # opposed to libstdc++ to make the transition from TR1 to
5833546Sgblack@eecs.umich.edu    # C++11. See http://libcxx.llvm.org. However, clang has chosen a
5843546Sgblack@eecs.umich.edu    # strict implementation of the C++11 standard, and does not allow
5853546Sgblack@eecs.umich.edu    # incomplete types in template arguments (besides unique_ptr and
5863546Sgblack@eecs.umich.edu    # shared_ptr), and the libc++ STL containers create problems in
5873546Sgblack@eecs.umich.edu    # combination with the current gem5 code. For now, we stick with
5884781Snate@binkert.org    # libstdc++ and use the TR1 namespace.
5894781Snate@binkert.org    # if sys.platform == "darwin":
5904781Snate@binkert.org    #     main.Append(CXXFLAGS=['-stdlib=libc++'])
5914781Snate@binkert.org
5924781Snate@binkert.orgelse:
5934781Snate@binkert.org    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
5944781Snate@binkert.org    print "Don't know what compiler options to use for your compiler."
5954781Snate@binkert.org    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
5964781Snate@binkert.org    print termcap.Yellow + '       version:' + termcap.Normal,
5974781Snate@binkert.org    if not CXX_version:
5984781Snate@binkert.org        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
5994781Snate@binkert.org               termcap.Normal
6003546Sgblack@eecs.umich.edu    else:
6013546Sgblack@eecs.umich.edu        print CXX_version.replace('\n', '<nl>')
6023546Sgblack@eecs.umich.edu    print "       If you're trying to use a compiler other than GCC"
6034781Snate@binkert.org    print "       or clang, there appears to be something wrong with your"
6043546Sgblack@eecs.umich.edu    print "       environment."
6053546Sgblack@eecs.umich.edu    print "       "
6063546Sgblack@eecs.umich.edu    print "       If you are trying to use a compiler other than those listed"
6073546Sgblack@eecs.umich.edu    print "       above you will need to ease fix SConstruct and "
6083546Sgblack@eecs.umich.edu    print "       src/SConscript to support that compiler."
6093546Sgblack@eecs.umich.edu    Exit(1)
6103546Sgblack@eecs.umich.edu
6113546Sgblack@eecs.umich.edu# Set up common yacc/bison flags (needed for Ruby)
6123546Sgblack@eecs.umich.edumain['YACCFLAGS'] = '-d'
6133546Sgblack@eecs.umich.edumain['YACCHXXFILESUFFIX'] = '.hh'
6144202Sbinkertn@umich.edu
6153546Sgblack@eecs.umich.edu# Do this after we save setting back, or else we'll tack on an
6163546Sgblack@eecs.umich.edu# extra 'qdo' every time we run scons.
6173546Sgblack@eecs.umich.eduif main['BATCH']:
618955SN/A    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
619955SN/A    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
620955SN/A    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
621955SN/A    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
6221858SN/A    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
6231858SN/A
6241858SN/Aif sys.platform == 'cygwin':
6252632Sstever@eecs.umich.edu    # cygwin has some header file issues...
6262632Sstever@eecs.umich.edu    main.Append(CCFLAGS=["-Wno-uninitialized"])
6274773Snate@binkert.org
6284773Snate@binkert.org# Check for the protobuf compiler
6292632Sstever@eecs.umich.eduprotoc_version = readCommand([main['PROTOC'], '--version'],
6302632Sstever@eecs.umich.edu                             exception='').split()
6312632Sstever@eecs.umich.edu
6322634Sstever@eecs.umich.edu# First two words should be "libprotoc x.y.z"
6332638Sstever@eecs.umich.eduif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
6342023SN/A    print termcap.Yellow + termcap.Bold + \
6352632Sstever@eecs.umich.edu        'Warning: Protocol buffer compiler (protoc) not found.\n' + \
6362632Sstever@eecs.umich.edu        '         Please install protobuf-compiler for tracing support.' + \
6372632Sstever@eecs.umich.edu        termcap.Normal
6382632Sstever@eecs.umich.edu    main['PROTOC'] = False
6392632Sstever@eecs.umich.eduelse:
6403716Sstever@eecs.umich.edu    # Determine the appropriate include path and library path using
6412632Sstever@eecs.umich.edu    # pkg-config, that means we also need to check for pkg-config
6422632Sstever@eecs.umich.edu    if not readCommand(['pkg-config', '--version'], exception=''):
6432632Sstever@eecs.umich.edu        print 'Error: pkg-config not found. Please install and retry.'
6442632Sstever@eecs.umich.edu        Exit(1)
6452632Sstever@eecs.umich.edu
6462023SN/A    main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
6472632Sstever@eecs.umich.edu
6482632Sstever@eecs.umich.edu    # Based on the availability of the compress stream wrappers,
6491889SN/A    # require 2.1.0
6501889SN/A    min_protoc_version = '2.1.0'
6512632Sstever@eecs.umich.edu    if compareVersions(protoc_version[1], min_protoc_version) < 0:
6522632Sstever@eecs.umich.edu        print 'Error: protoc version', min_protoc_version, 'or newer required.'
6532632Sstever@eecs.umich.edu        print '       Installed version:', protoc_version[1]
6542632Sstever@eecs.umich.edu        Exit(1)
6553716Sstever@eecs.umich.edu
6563716Sstever@eecs.umich.edu# Check for SWIG
6572632Sstever@eecs.umich.eduif not main.has_key('SWIG'):
6582632Sstever@eecs.umich.edu    print 'Error: SWIG utility not found.'
6592632Sstever@eecs.umich.edu    print '       Please install (see http://www.swig.org) and retry.'
6602632Sstever@eecs.umich.edu    Exit(1)
6612632Sstever@eecs.umich.edu
6622632Sstever@eecs.umich.edu# Check for appropriate SWIG version
6632632Sstever@eecs.umich.eduswig_version = readCommand([main['SWIG'], '-version'], exception='').split()
6642632Sstever@eecs.umich.edu# First 3 words should be "SWIG Version x.y.z"
6651888SN/Aif len(swig_version) < 3 or \
6661888SN/A        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
6671869SN/A    print 'Error determining SWIG version.'
6681869SN/A    Exit(1)
6691858SN/A
6702598SN/Amin_swig_version = '1.3.34'
6712598SN/Aif compareVersions(swig_version[2], min_swig_version) < 0:
6722598SN/A    print 'Error: SWIG version', min_swig_version, 'or newer required.'
6732598SN/A    print '       Installed version:', swig_version[2]
6742598SN/A    Exit(1)
6751858SN/A
6761858SN/A# Set up SWIG flags & scanner
6771858SN/Aswig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
6781858SN/Amain.Append(SWIGFLAGS=swig_flags)
6791858SN/A
6801858SN/A# filter out all existing swig scanners, they mess up the dependency
6811858SN/A# stuff for some reason
6821858SN/Ascanners = []
6831858SN/Afor scanner in main['SCANNERS']:
6841871SN/A    skeys = scanner.skeys
6851858SN/A    if skeys == '.i':
6861858SN/A        continue
6871858SN/A
6881858SN/A    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
6891858SN/A        continue
6901858SN/A
6911858SN/A    scanners.append(scanner)
6921858SN/A
6931858SN/A# add the new swig scanner that we like better
6941858SN/Afrom SCons.Scanner import ClassicCPP as CPPScanner
6951858SN/Aswig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
6961859SN/Ascanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
6971859SN/A
6981869SN/A# replace the scanners list that has what we want
6991888SN/Amain['SCANNERS'] = scanners
7002632Sstever@eecs.umich.edu
7011869SN/A# Add a custom Check function to the Configure context so that we can
7021884SN/A# figure out if the compiler adds leading underscores to global
7031884SN/A# variables.  This is needed for the autogenerated asm files that we
7041884SN/A# use for embedding the python code.
7051884SN/Adef CheckLeading(context):
7061884SN/A    context.Message("Checking for leading underscore in global variables...")
7071884SN/A    # 1) Define a global variable called x from asm so the C compiler
7081965SN/A    #    won't change the symbol at all.
7091965SN/A    # 2) Declare that variable.
7101965SN/A    # 3) Use the variable
7112761Sstever@eecs.umich.edu    #
7121869SN/A    # If the compiler prepends an underscore, this will successfully
7131869SN/A    # link because the external symbol 'x' will be called '_x' which
7142632Sstever@eecs.umich.edu    # was defined by the asm statement.  If the compiler does not
7152667Sstever@eecs.umich.edu    # prepend an underscore, this will not successfully link because
7161869SN/A    # '_x' will have been defined by assembly, while the C portion of
7171869SN/A    # the code will be trying to use 'x'
7182929Sktlim@umich.edu    ret = context.TryLink('''
7192929Sktlim@umich.edu        asm(".globl _x; _x: .byte 0");
7203716Sstever@eecs.umich.edu        extern int x;
7212929Sktlim@umich.edu        int main() { return x; }
722955SN/A        ''', extension=".c")
7232598SN/A    context.env.Append(LEADING_UNDERSCORE=ret)
7242598SN/A    context.Result(ret)
7253546Sgblack@eecs.umich.edu    return ret
726955SN/A
727955SN/A# Platform-specific configuration.  Note again that we assume that all
728955SN/A# builds under a given build root run on the same host platform.
7291530SN/Aconf = Configure(main,
730955SN/A                 conf_dir = joinpath(build_root, '.scons_config'),
731955SN/A                 log_file = joinpath(build_root, 'scons_config.log'),
732955SN/A                 custom_tests = { 'CheckLeading' : CheckLeading })
733
734# Check for leading underscores.  Don't really need to worry either
735# way so don't need to check the return code.
736conf.CheckLeading()
737
738# Check if we should compile a 64 bit binary on Mac OS X/Darwin
739try:
740    import platform
741    uname = platform.uname()
742    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
743        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
744            main.Append(CCFLAGS=['-arch', 'x86_64'])
745            main.Append(CFLAGS=['-arch', 'x86_64'])
746            main.Append(LINKFLAGS=['-arch', 'x86_64'])
747            main.Append(ASFLAGS=['-arch', 'x86_64'])
748except:
749    pass
750
751# Recent versions of scons substitute a "Null" object for Configure()
752# when configuration isn't necessary, e.g., if the "--help" option is
753# present.  Unfortuantely this Null object always returns false,
754# breaking all our configuration checks.  We replace it with our own
755# more optimistic null object that returns True instead.
756if not conf:
757    def NullCheck(*args, **kwargs):
758        return True
759
760    class NullConf:
761        def __init__(self, env):
762            self.env = env
763        def Finish(self):
764            return self.env
765        def __getattr__(self, mname):
766            return NullCheck
767
768    conf = NullConf(main)
769
770# Find Python include and library directories for embedding the
771# interpreter.  For consistency, we will use the same Python
772# installation used to run scons (and thus this script).  If you want
773# to link in an alternate version, see above for instructions on how
774# to invoke scons with a different copy of the Python interpreter.
775from distutils import sysconfig
776
777py_getvar = sysconfig.get_config_var
778
779py_debug = getattr(sys, 'pydebug', False)
780py_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "")
781
782py_general_include = sysconfig.get_python_inc()
783py_platform_include = sysconfig.get_python_inc(plat_specific=True)
784py_includes = [ py_general_include ]
785if py_platform_include != py_general_include:
786    py_includes.append(py_platform_include)
787
788py_lib_path = [ py_getvar('LIBDIR') ]
789# add the prefix/lib/pythonX.Y/config dir, but only if there is no
790# shared library in prefix/lib/.
791if not py_getvar('Py_ENABLE_SHARED'):
792    py_lib_path.append(py_getvar('LIBPL'))
793
794py_libs = []
795for lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split():
796    if not lib.startswith('-l'):
797        # Python requires some special flags to link (e.g. -framework
798        # common on OS X systems), assume appending preserves order
799        main.Append(LINKFLAGS=[lib])
800    else:
801        lib = lib[2:]
802        if lib not in py_libs:
803            py_libs.append(lib)
804py_libs.append(py_version)
805
806main.Append(CPPPATH=py_includes)
807main.Append(LIBPATH=py_lib_path)
808
809# Cache build files in the supplied directory.
810if main['M5_BUILD_CACHE']:
811    print 'Using build cache located at', main['M5_BUILD_CACHE']
812    CacheDir(main['M5_BUILD_CACHE'])
813
814
815# verify that this stuff works
816if not conf.CheckHeader('Python.h', '<>'):
817    print "Error: can't find Python.h header in", py_includes
818    print "Install Python headers (package python-dev on Ubuntu and RedHat)"
819    Exit(1)
820
821for lib in py_libs:
822    if not conf.CheckLib(lib):
823        print "Error: can't find library %s required by python" % lib
824        Exit(1)
825
826# On Solaris you need to use libsocket for socket ops
827if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
828   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
829       print "Can't find library with socket calls (e.g. accept())"
830       Exit(1)
831
832# Check for zlib.  If the check passes, libz will be automatically
833# added to the LIBS environment variable.
834if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
835    print 'Error: did not find needed zlib compression library '\
836          'and/or zlib.h header file.'
837    print '       Please install zlib and try again.'
838    Exit(1)
839
840# If we have the protobuf compiler, also make sure we have the
841# development libraries. If the check passes, libprotobuf will be
842# automatically added to the LIBS environment variable. After
843# this, we can use the HAVE_PROTOBUF flag to determine if we have
844# got both protoc and libprotobuf available.
845main['HAVE_PROTOBUF'] = main['PROTOC'] and \
846    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
847                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
848
849# If we have the compiler but not the library, treat it as an error.
850if main['PROTOC'] and not main['HAVE_PROTOBUF']:
851    print 'Error: did not find protocol buffer library and/or headers.'
852    print '       Please install libprotobuf-dev and try again.'
853    Exit(1)
854
855# Check for librt.
856have_posix_clock = \
857    conf.CheckLibWithHeader(None, 'time.h', 'C',
858                            'clock_nanosleep(0,0,NULL,NULL);') or \
859    conf.CheckLibWithHeader('rt', 'time.h', 'C',
860                            'clock_nanosleep(0,0,NULL,NULL);')
861
862if conf.CheckLib('tcmalloc_minimal'):
863    have_tcmalloc = True
864else:
865    have_tcmalloc = False
866    print termcap.Yellow + termcap.Bold + \
867          "You can get a 12% performance improvement by installing tcmalloc "\
868          "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \
869          termcap.Normal
870
871if not have_posix_clock:
872    print "Can't find library for POSIX clocks."
873
874# Check for <fenv.h> (C99 FP environment control)
875have_fenv = conf.CheckHeader('fenv.h', '<>')
876if not have_fenv:
877    print "Warning: Header file <fenv.h> not found."
878    print "         This host has no IEEE FP rounding mode control."
879
880######################################################################
881#
882# Finish the configuration
883#
884main = conf.Finish()
885
886######################################################################
887#
888# Collect all non-global variables
889#
890
891# Define the universe of supported ISAs
892all_isa_list = [ ]
893Export('all_isa_list')
894
895class CpuModel(object):
896    '''The CpuModel class encapsulates everything the ISA parser needs to
897    know about a particular CPU model.'''
898
899    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
900    dict = {}
901    list = []
902    defaults = []
903
904    # Constructor.  Automatically adds models to CpuModel.dict.
905    def __init__(self, name, filename, includes, strings, default=False):
906        self.name = name           # name of model
907        self.filename = filename   # filename for output exec code
908        self.includes = includes   # include files needed in exec file
909        # The 'strings' dict holds all the per-CPU symbols we can
910        # substitute into templates etc.
911        self.strings = strings
912
913        # This cpu is enabled by default
914        self.default = default
915
916        # Add self to dict
917        if name in CpuModel.dict:
918            raise AttributeError, "CpuModel '%s' already registered" % name
919        CpuModel.dict[name] = self
920        CpuModel.list.append(name)
921
922Export('CpuModel')
923
924# Sticky variables get saved in the variables file so they persist from
925# one invocation to the next (unless overridden, in which case the new
926# value becomes sticky).
927sticky_vars = Variables(args=ARGUMENTS)
928Export('sticky_vars')
929
930# Sticky variables that should be exported
931export_vars = []
932Export('export_vars')
933
934# For Ruby
935all_protocols = []
936Export('all_protocols')
937protocol_dirs = []
938Export('protocol_dirs')
939slicc_includes = []
940Export('slicc_includes')
941
942# Walk the tree and execute all SConsopts scripts that wil add to the
943# above variables
944if not GetOption('verbose'):
945    print "Reading SConsopts"
946for bdir in [ base_dir ] + extras_dir_list:
947    if not isdir(bdir):
948        print "Error: directory '%s' does not exist" % bdir
949        Exit(1)
950    for root, dirs, files in os.walk(bdir):
951        if 'SConsopts' in files:
952            if GetOption('verbose'):
953                print "Reading", joinpath(root, 'SConsopts')
954            SConscript(joinpath(root, 'SConsopts'))
955
956all_isa_list.sort()
957
958sticky_vars.AddVariables(
959    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
960    ListVariable('CPU_MODELS', 'CPU models',
961                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
962                 sorted(CpuModel.list)),
963    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
964                 False),
965    BoolVariable('SS_COMPATIBLE_FP',
966                 'Make floating-point results compatible with SimpleScalar',
967                 False),
968    BoolVariable('USE_SSE2',
969                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
970                 False),
971    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
972    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
973    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
974    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
975                  all_protocols),
976    )
977
978# These variables get exported to #defines in config/*.hh (see src/SConscript).
979export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE',
980                'USE_POSIX_CLOCK', 'PROTOCOL', 'HAVE_PROTOBUF']
981
982###################################################
983#
984# Define a SCons builder for configuration flag headers.
985#
986###################################################
987
988# This function generates a config header file that #defines the
989# variable symbol to the current variable setting (0 or 1).  The source
990# operands are the name of the variable and a Value node containing the
991# value of the variable.
992def build_config_file(target, source, env):
993    (variable, value) = [s.get_contents() for s in source]
994    f = file(str(target[0]), 'w')
995    print >> f, '#define', variable, value
996    f.close()
997    return None
998
999# Combine the two functions into a scons Action object.
1000config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
1001
1002# The emitter munges the source & target node lists to reflect what
1003# we're really doing.
1004def config_emitter(target, source, env):
1005    # extract variable name from Builder arg
1006    variable = str(target[0])
1007    # True target is config header file
1008    target = joinpath('config', variable.lower() + '.hh')
1009    val = env[variable]
1010    if isinstance(val, bool):
1011        # Force value to 0/1
1012        val = int(val)
1013    elif isinstance(val, str):
1014        val = '"' + val + '"'
1015
1016    # Sources are variable name & value (packaged in SCons Value nodes)
1017    return ([target], [Value(variable), Value(val)])
1018
1019config_builder = Builder(emitter = config_emitter, action = config_action)
1020
1021main.Append(BUILDERS = { 'ConfigFile' : config_builder })
1022
1023# libelf build is shared across all configs in the build root.
1024main.SConscript('ext/libelf/SConscript',
1025                variant_dir = joinpath(build_root, 'libelf'))
1026
1027# gzstream build is shared across all configs in the build root.
1028main.SConscript('ext/gzstream/SConscript',
1029                variant_dir = joinpath(build_root, 'gzstream'))
1030
1031###################################################
1032#
1033# This function is used to set up a directory with switching headers
1034#
1035###################################################
1036
1037main['ALL_ISA_LIST'] = all_isa_list
1038def make_switching_dir(dname, switch_headers, env):
1039    # Generate the header.  target[0] is the full path of the output
1040    # header to generate.  'source' is a dummy variable, since we get the
1041    # list of ISAs from env['ALL_ISA_LIST'].
1042    def gen_switch_hdr(target, source, env):
1043        fname = str(target[0])
1044        f = open(fname, 'w')
1045        isa = env['TARGET_ISA'].lower()
1046        print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
1047        f.close()
1048
1049    # Build SCons Action object. 'varlist' specifies env vars that this
1050    # action depends on; when env['ALL_ISA_LIST'] changes these actions
1051    # should get re-executed.
1052    switch_hdr_action = MakeAction(gen_switch_hdr,
1053                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
1054
1055    # Instantiate actions for each header
1056    for hdr in switch_headers:
1057        env.Command(hdr, [], switch_hdr_action)
1058Export('make_switching_dir')
1059
1060###################################################
1061#
1062# Define build environments for selected configurations.
1063#
1064###################################################
1065
1066for variant_path in variant_paths:
1067    print "Building in", variant_path
1068
1069    # Make a copy of the build-root environment to use for this config.
1070    env = main.Clone()
1071    env['BUILDDIR'] = variant_path
1072
1073    # variant_dir is the tail component of build path, and is used to
1074    # determine the build parameters (e.g., 'ALPHA_SE')
1075    (build_root, variant_dir) = splitpath(variant_path)
1076
1077    # Set env variables according to the build directory config.
1078    sticky_vars.files = []
1079    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1080    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1081    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1082    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1083    if isfile(current_vars_file):
1084        sticky_vars.files.append(current_vars_file)
1085        print "Using saved variables file %s" % current_vars_file
1086    else:
1087        # Build dir-specific variables file doesn't exist.
1088
1089        # Make sure the directory is there so we can create it later
1090        opt_dir = dirname(current_vars_file)
1091        if not isdir(opt_dir):
1092            mkdir(opt_dir)
1093
1094        # Get default build variables from source tree.  Variables are
1095        # normally determined by name of $VARIANT_DIR, but can be
1096        # overridden by '--default=' arg on command line.
1097        default = GetOption('default')
1098        opts_dir = joinpath(main.root.abspath, 'build_opts')
1099        if default:
1100            default_vars_files = [joinpath(build_root, 'variables', default),
1101                                  joinpath(opts_dir, default)]
1102        else:
1103            default_vars_files = [joinpath(opts_dir, variant_dir)]
1104        existing_files = filter(isfile, default_vars_files)
1105        if existing_files:
1106            default_vars_file = existing_files[0]
1107            sticky_vars.files.append(default_vars_file)
1108            print "Variables file %s not found,\n  using defaults in %s" \
1109                  % (current_vars_file, default_vars_file)
1110        else:
1111            print "Error: cannot find variables file %s or " \
1112                  "default file(s) %s" \
1113                  % (current_vars_file, ' or '.join(default_vars_files))
1114            Exit(1)
1115
1116    # Apply current variable settings to env
1117    sticky_vars.Update(env)
1118
1119    help_texts["local_vars"] += \
1120        "Build variables for %s:\n" % variant_dir \
1121                 + sticky_vars.GenerateHelpText(env)
1122
1123    # Process variable settings.
1124
1125    if not have_fenv and env['USE_FENV']:
1126        print "Warning: <fenv.h> not available; " \
1127              "forcing USE_FENV to False in", variant_dir + "."
1128        env['USE_FENV'] = False
1129
1130    if not env['USE_FENV']:
1131        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1132        print "         FP results may deviate slightly from other platforms."
1133
1134    if env['EFENCE']:
1135        env.Append(LIBS=['efence'])
1136
1137    # Save sticky variable settings back to current variables file
1138    sticky_vars.Save(current_vars_file, env)
1139
1140    if env['USE_SSE2']:
1141        env.Append(CCFLAGS=['-msse2'])
1142
1143    if have_tcmalloc:
1144        env.Append(LIBS=['tcmalloc_minimal'])
1145
1146    # The src/SConscript file sets up the build rules in 'env' according
1147    # to the configured variables.  It returns a list of environments,
1148    # one for each variant build (debug, opt, etc.)
1149    envList = SConscript('src/SConscript', variant_dir = variant_path,
1150                         exports = 'env')
1151
1152    # Set up the regression tests for each build.
1153    for e in envList:
1154        SConscript('tests/SConscript',
1155                   variant_dir = joinpath(variant_path, 'tests', e.Label),
1156                   exports = { 'env' : e }, duplicate = False)
1157
1158# base help text
1159Help('''
1160Usage: scons [scons options] [build variables] [target(s)]
1161
1162Extra scons options:
1163%(options)s
1164
1165Global build variables:
1166%(global_vars)s
1167
1168%(local_vars)s
1169''' % help_texts)
1170