SConstruct revision 8887:20ea02da9c53
1955SN/A# -*- mode:python -*-
2955SN/A
35871Snate@binkert.org# Copyright (c) 2011 Advanced Micro Devices, Inc.
41762SN/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
28955SN/A# (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.
302665Ssaidi@eecs.umich.edu#
315863Snate@binkert.org# Authors: Steve Reinhardt
32955SN/A#          Nathan Binkert
33955SN/A
34955SN/A###################################################
35955SN/A#
36955SN/A# 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
392632Sstever@eecs.umich.edu# 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
41955SN/A# the optimized full-system version).
422632Sstever@eecs.umich.edu#
432632Sstever@eecs.umich.edu# You can build gem5 in a different directory as long as there is a
442761Sstever@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
462632Sstever@eecs.umich.edu# built for the same host system.
472632Sstever@eecs.umich.edu#
482761Sstever@eecs.umich.edu# Examples:
492761Sstever@eecs.umich.edu#
502761Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
512632Sstever@eecs.umich.edu#   scons to search up the directory tree for this SConstruct file.
522632Sstever@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
562761Sstever@eecs.umich.edu#   in a directory outside of the source tree.  The '-C' option tells
572761Sstever@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
632632Sstever@eecs.umich.edu# 'gem5' directory (or use -u or -C to tell scons where to find this
642632Sstever@eecs.umich.edu# file), you can use 'scons -h' to print all the gem5-specific build
65955SN/A# options as well.
66955SN/A#
67955SN/A###################################################
685863Snate@binkert.org
695863Snate@binkert.org# Check for recent-enough Python and SCons versions.
705863Snate@binkert.orgtry:
715863Snate@binkert.org    # Really old versions of scons only take two options for the
725863Snate@binkert.org    # function, so check once without the revision and once with the
735863Snate@binkert.org    # revision, the first instance will fail for stuff other than
745863Snate@binkert.org    # 0.98, and the second will fail for 0.98.0
755863Snate@binkert.org    EnsureSConsVersion(0, 98)
765863Snate@binkert.org    EnsureSConsVersion(0, 98, 1)
775863Snate@binkert.orgexcept SystemExit, e:
785863Snate@binkert.org    print """
795863Snate@binkert.orgFor more details, see:
805863Snate@binkert.org    http://gem5.org/Dependencies
815863Snate@binkert.org"""
825863Snate@binkert.org    raise
835863Snate@binkert.org
845863Snate@binkert.org# We ensure the python version early because we have stuff that
855863Snate@binkert.org# requires python 2.4
865863Snate@binkert.orgtry:
875863Snate@binkert.org    EnsurePythonVersion(2, 4)
885863Snate@binkert.orgexcept SystemExit, e:
895863Snate@binkert.org    print """
905863Snate@binkert.orgYou can use a non-default installation of the Python interpreter by
915863Snate@binkert.orgeither (1) rearranging your PATH so that scons finds the non-default
925863Snate@binkert.org'python' first or (2) explicitly invoking an alternative interpreter
935863Snate@binkert.orgon the scons script.
945863Snate@binkert.org
955863Snate@binkert.orgFor more details, see:
965863Snate@binkert.org    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
975863Snate@binkert.org"""
985863Snate@binkert.org    raise
996654Snate@binkert.org
100955SN/A# Global Python includes
1015396Ssaidi@eecs.umich.eduimport os
1025863Snate@binkert.orgimport re
1035863Snate@binkert.orgimport subprocess
1044202Sbinkertn@umich.eduimport sys
1055863Snate@binkert.org
1065863Snate@binkert.orgfrom os import mkdir, environ
1075863Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath
1085863Snate@binkert.orgfrom os.path import exists,  isdir, isfile
109955SN/Afrom os.path import join as joinpath, split as splitpath
1106654Snate@binkert.org
1115273Sstever@gmail.com# SCons includes
1125871Snate@binkert.orgimport SCons
1135273Sstever@gmail.comimport SCons.Node
1146654Snate@binkert.org
1156654Snate@binkert.orgextra_python_paths = [
1165871Snate@binkert.org    Dir('src/python').srcnode().abspath, # gem5 includes
1176654Snate@binkert.org    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1185396Ssaidi@eecs.umich.edu    ]
1195871Snate@binkert.org    
1205871Snate@binkert.orgsys.path[1:1] = extra_python_paths
1216121Snate@binkert.org
1225871Snate@binkert.orgfrom m5.util import compareVersions, readCommand
1235871Snate@binkert.org
1246003Snate@binkert.orghelp_texts = {
1256003Snate@binkert.org    "options" : "",
126955SN/A    "global_vars" : "",
1275871Snate@binkert.org    "local_vars" : ""
1285871Snate@binkert.org}
1295871Snate@binkert.org
1305871Snate@binkert.orgExport("help_texts")
131955SN/A
1326121Snate@binkert.org
1336121Snate@binkert.org# There's a bug in scons in that (1) by default, the help texts from
1346121Snate@binkert.org# AddOption() are supposed to be displayed when you type 'scons -h'
1351533SN/A# and (2) you can override the help displayed by 'scons -h' using the
1365871Snate@binkert.org# Help() function, but these two features are incompatible: once
1375871Snate@binkert.org# you've overridden the help text using Help(), there's no way to get
1385863Snate@binkert.org# at the help texts from AddOptions.  See:
1395871Snate@binkert.org#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1405871Snate@binkert.org#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1415871Snate@binkert.org# This hack lets us extract the help text from AddOptions and
1425871Snate@binkert.org# re-inject it via Help().  Ideally someday this bug will be fixed and
1435871Snate@binkert.org# we can just use AddOption directly.
1445863Snate@binkert.orgdef AddLocalOption(*args, **kwargs):
1456121Snate@binkert.org    col_width = 30
1465863Snate@binkert.org
1475871Snate@binkert.org    help = "  " + ", ".join(args)
1484678Snate@binkert.org    if "help" in kwargs:
1494678Snate@binkert.org        length = len(help)
1504678Snate@binkert.org        if length >= col_width:
1514678Snate@binkert.org            help += "\n" + " " * col_width
1524678Snate@binkert.org        else:
1534678Snate@binkert.org            help += " " * (col_width - length)
1544678Snate@binkert.org        help += kwargs["help"]
1554678Snate@binkert.org    help_texts["options"] += help + "\n"
1564678Snate@binkert.org
1574678Snate@binkert.org    AddOption(*args, **kwargs)
1584678Snate@binkert.org
1594678Snate@binkert.orgAddLocalOption('--colors', dest='use_colors', action='store_true',
1606121Snate@binkert.org               help="Add color to abbreviated scons output")
1614678Snate@binkert.orgAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1625871Snate@binkert.org               help="Don't add color to abbreviated scons output")
1635871Snate@binkert.orgAddLocalOption('--default', dest='default', type='string', action='store',
1645871Snate@binkert.org               help='Override which build_opts file to use for defaults')
1655871Snate@binkert.orgAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1665871Snate@binkert.org               help='Disable style checking hooks')
1675871Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1685871Snate@binkert.org               help='Update test reference outputs')
1695871Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true',
1705871Snate@binkert.org               help='Print full tool command lines')
1715871Snate@binkert.org
1725871Snate@binkert.orguse_colors = GetOption('use_colors')
1735871Snate@binkert.orgif use_colors:
1745871Snate@binkert.org    from m5.util.terminal import termcap
1755990Ssaidi@eecs.umich.eduelif use_colors is None:
1765871Snate@binkert.org    # option unspecified; default behavior is to use colors iff isatty
1775871Snate@binkert.org    from m5.util.terminal import tty_termcap as termcap
1785871Snate@binkert.orgelse:
1794678Snate@binkert.org    from m5.util.terminal import no_termcap as termcap
1806654Snate@binkert.org
1815871Snate@binkert.org########################################################################
1825871Snate@binkert.org#
1835871Snate@binkert.org# Set up the main build environment.
1845871Snate@binkert.org#
1855871Snate@binkert.org########################################################################
1865871Snate@binkert.orguse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 'PATH',
1875871Snate@binkert.org                 'PYTHONPATH', 'RANLIB' ])
1885871Snate@binkert.org
1895871Snate@binkert.orguse_env = {}
1904678Snate@binkert.orgfor key,val in os.environ.iteritems():
1915871Snate@binkert.org    if key in use_vars or key.startswith("M5"):
1924678Snate@binkert.org        use_env[key] = val
1935871Snate@binkert.org
1945871Snate@binkert.orgmain = Environment(ENV=use_env)
1955871Snate@binkert.orgmain.Decider('MD5-timestamp')
1965871Snate@binkert.orgmain.SetOption('implicit_cache', 1)
1975871Snate@binkert.orgmain.root = Dir(".")         # The current directory (where this file lives).
1985871Snate@binkert.orgmain.srcdir = Dir("src")     # The source directory
1995871Snate@binkert.org
2005871Snate@binkert.org# add useful python code PYTHONPATH so it can be used by subprocesses
2015871Snate@binkert.org# as well
2026121Snate@binkert.orgmain.AppendENVPath('PYTHONPATH', extra_python_paths)
2036121Snate@binkert.org
2045863Snate@binkert.org########################################################################
205955SN/A#
206955SN/A# Mercurial Stuff.
2072632Sstever@eecs.umich.edu#
2082632Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some
209955SN/A# extra things.
210955SN/A#
211955SN/A########################################################################
212955SN/A
2135863Snate@binkert.orghgdir = main.root.Dir(".hg")
214955SN/A
2152632Sstever@eecs.umich.edumercurial_style_message = """
2162632Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code
2172632Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands.  This
2182632Sstever@eecs.umich.eduscript will now install the hook in your .hg/hgrc file.
2192632Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """
2202632Sstever@eecs.umich.edu
2212632Sstever@eecs.umich.edumercurial_style_hook = """
2222632Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct
2232632Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks
2242632Sstever@eecs.umich.edu[extensions]
2252632Sstever@eecs.umich.edustyle = %s/util/style.py
2262632Sstever@eecs.umich.edu
2272632Sstever@eecs.umich.edu[hooks]
2283718Sstever@eecs.umich.edupretxncommit.style = python:style.check_style
2293718Sstever@eecs.umich.edupre-qrefresh.style = python:style.check_style
2303718Sstever@eecs.umich.edu# End of SConstruct additions
2313718Sstever@eecs.umich.edu
2323718Sstever@eecs.umich.edu""" % (main.root.abspath)
2335863Snate@binkert.org
2345863Snate@binkert.orgmercurial_lib_not_found = """
2353718Sstever@eecs.umich.eduMercurial libraries cannot be found, ignoring style hook.  If
2363718Sstever@eecs.umich.eduyou are a gem5 developer, please fix this and run the style
2376121Snate@binkert.orghook. It is important.
2385863Snate@binkert.org"""
2393718Sstever@eecs.umich.edu
2403718Sstever@eecs.umich.edu# Check for style hook and prompt for installation if it's not there.
2412634Sstever@eecs.umich.edu# Skip this if --ignore-style was specified, there's no .hg dir to
2422634Sstever@eecs.umich.edu# install a hook in, or there's no interactive terminal to prompt.
2435863Snate@binkert.orgif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
2442638Sstever@eecs.umich.edu    style_hook = True
2452632Sstever@eecs.umich.edu    try:
2462632Sstever@eecs.umich.edu        from mercurial import ui
2472632Sstever@eecs.umich.edu        ui = ui.ui()
2482632Sstever@eecs.umich.edu        ui.readconfig(hgdir.File('hgrc').abspath)
2492632Sstever@eecs.umich.edu        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
2502632Sstever@eecs.umich.edu                     ui.config('hooks', 'pre-qrefresh.style', None)
2511858SN/A    except ImportError:
2523716Sstever@eecs.umich.edu        print mercurial_lib_not_found
2532638Sstever@eecs.umich.edu
2542638Sstever@eecs.umich.edu    if not style_hook:
2552638Sstever@eecs.umich.edu        print mercurial_style_message,
2562638Sstever@eecs.umich.edu        # continue unless user does ctrl-c/ctrl-d etc.
2572638Sstever@eecs.umich.edu        try:
2582638Sstever@eecs.umich.edu            raw_input()
2592638Sstever@eecs.umich.edu        except:
2605863Snate@binkert.org            print "Input exception, exiting scons.\n"
2615863Snate@binkert.org            sys.exit(1)
2625863Snate@binkert.org        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
263955SN/A        print "Adding style hook to", hgrc_path, "\n"
2645341Sstever@gmail.com        try:
2655341Sstever@gmail.com            hgrc = open(hgrc_path, 'a')
2665863Snate@binkert.org            hgrc.write(mercurial_style_hook)
2675341Sstever@gmail.com            hgrc.close()
2686121Snate@binkert.org        except:
2694494Ssaidi@eecs.umich.edu            print "Error updating", hgrc_path
2706121Snate@binkert.org            sys.exit(1)
2711105SN/A
2722667Sstever@eecs.umich.edu
2732667Sstever@eecs.umich.edu###################################################
2742667Sstever@eecs.umich.edu#
2752667Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
2766121Snate@binkert.org# the target(s).
2772667Sstever@eecs.umich.edu#
2785341Sstever@gmail.com###################################################
2795863Snate@binkert.org
2805341Sstever@gmail.com# Find default configuration & binary.
2815341Sstever@gmail.comDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
2825341Sstever@gmail.com
2835863Snate@binkert.org# helper function: find last occurrence of element in list
2845341Sstever@gmail.comdef rfind(l, elt, offs = -1):
2855341Sstever@gmail.com    for i in range(len(l)+offs, 0, -1):
2865341Sstever@gmail.com        if l[i] == elt:
2875863Snate@binkert.org            return i
2885341Sstever@gmail.com    raise ValueError, "element not found"
2895341Sstever@gmail.com
2905341Sstever@gmail.com# Take a list of paths (or SCons Nodes) and return a list with all
2915341Sstever@gmail.com# paths made absolute and ~-expanded.  Paths will be interpreted
2925341Sstever@gmail.com# relative to the launch directory unless a different root is provided
2935341Sstever@gmail.comdef makePathListAbsolute(path_list, root=GetLaunchDir()):
2945341Sstever@gmail.com    return [abspath(joinpath(root, expanduser(str(p))))
2955341Sstever@gmail.com            for p in path_list]
2965341Sstever@gmail.com
2975341Sstever@gmail.com# Each target must have 'build' in the interior of the path; the
2985863Snate@binkert.org# directory below this will determine the build parameters.  For
2995341Sstever@gmail.com# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
3005863Snate@binkert.org# recognize that ALPHA_SE specifies the configuration because it
3015341Sstever@gmail.com# follow 'build' in the build path.
3025863Snate@binkert.org
3036121Snate@binkert.org# The funky assignment to "[:]" is needed to replace the list contents
3046121Snate@binkert.org# in place rather than reassign the symbol to a new list, which
3055397Ssaidi@eecs.umich.edu# doesn't work (obviously!).
3065397Ssaidi@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
3075341Sstever@gmail.com
3086168Snate@binkert.org# Generate a list of the unique build roots and configs that the
3096168Snate@binkert.org# collected targets reference.
3106168Snate@binkert.orgvariant_paths = []
3115341Sstever@gmail.combuild_root = None
3125341Sstever@gmail.comfor t in BUILD_TARGETS:
3135341Sstever@gmail.com    path_dirs = t.split('/')
3145341Sstever@gmail.com    try:
3155341Sstever@gmail.com        build_top = rfind(path_dirs, 'build', -2)
3165863Snate@binkert.org    except:
3175341Sstever@gmail.com        print "Error: no non-leaf 'build' dir found on target path", t
3185341Sstever@gmail.com        Exit(1)
3196121Snate@binkert.org    this_build_root = joinpath('/',*path_dirs[:build_top+1])
3205341Sstever@gmail.com    if not build_root:
3216121Snate@binkert.org        build_root = this_build_root
3226121Snate@binkert.org    else:
3235341Sstever@gmail.com        if this_build_root != build_root:
3245863Snate@binkert.org            print "Error: build targets not under same build root\n"\
3256121Snate@binkert.org                  "  %s\n  %s" % (build_root, this_build_root)
3265341Sstever@gmail.com            Exit(1)
3275863Snate@binkert.org    variant_path = joinpath('/',*path_dirs[:build_top+2])
3285341Sstever@gmail.com    if variant_path not in variant_paths:
3296121Snate@binkert.org        variant_paths.append(variant_path)
3306121Snate@binkert.org
3316121Snate@binkert.org# Make sure build_root exists (might not if this is the first build there)
3325742Snate@binkert.orgif not isdir(build_root):
3335742Snate@binkert.org    mkdir(build_root)
3345341Sstever@gmail.commain['BUILDROOT'] = build_root
3355742Snate@binkert.org
3365742Snate@binkert.orgExport('main')
3375341Sstever@gmail.com
3386017Snate@binkert.orgmain.SConsignFile(joinpath(build_root, "sconsign"))
3396121Snate@binkert.org
3406017Snate@binkert.org# Default duplicate option is to use hard links, but this messes up
3412632Sstever@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves
3426121Snate@binkert.org# file to file~ then copies to file, breaking the link.  Symbolic
3435871Snate@binkert.org# (soft) links work better.
3446654Snate@binkert.orgmain.SetOption('duplicate', 'soft-copy')
3456654Snate@binkert.org
3465871Snate@binkert.org#
3476121Snate@binkert.org# Set up global sticky variables... these are common to an entire build
3486121Snate@binkert.org# tree (not specific to a particular build like ALPHA_SE)
3496121Snate@binkert.org#
3506121Snate@binkert.org
3513940Ssaidi@eecs.umich.eduglobal_vars_file = joinpath(build_root, 'variables.global')
3523918Ssaidi@eecs.umich.edu
3533918Ssaidi@eecs.umich.eduglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
3541858SN/A
3556121Snate@binkert.orgglobal_vars.AddVariables(
3566121Snate@binkert.org    ('CC', 'C compiler', environ.get('CC', main['CC'])),
3576121Snate@binkert.org    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
3586143Snate@binkert.org    ('BATCH', 'Use batch pool for build and tests', False),
3596121Snate@binkert.org    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
3606121Snate@binkert.org    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
3613940Ssaidi@eecs.umich.edu    ('EXTRAS', 'Add extra directories to the compilation', '')
3626121Snate@binkert.org    )
3636121Snate@binkert.org
3646121Snate@binkert.org# Update main environment with values from ARGUMENTS & global_vars_file
3656121Snate@binkert.orgglobal_vars.Update(main)
3666121Snate@binkert.orghelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
3676121Snate@binkert.org
3686121Snate@binkert.org# Save sticky variable settings back to current variables file
3693918Ssaidi@eecs.umich.eduglobal_vars.Save(global_vars_file, main)
3703918Ssaidi@eecs.umich.edu
3713940Ssaidi@eecs.umich.edu# Parse EXTRAS variable to build list of all directories where we're
3723918Ssaidi@eecs.umich.edu# look for sources etc.  This list is exported as extras_dir_list.
3733918Ssaidi@eecs.umich.edubase_dir = main.srcdir.abspath
3746157Snate@binkert.orgif main['EXTRAS']:
3756157Snate@binkert.org    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
3766157Snate@binkert.orgelse:
3776157Snate@binkert.org    extras_dir_list = []
3785397Ssaidi@eecs.umich.edu
3795397Ssaidi@eecs.umich.eduExport('base_dir')
3806121Snate@binkert.orgExport('extras_dir_list')
3816121Snate@binkert.org
3826121Snate@binkert.org# the ext directory should be on the #includes path
3836121Snate@binkert.orgmain.Append(CPPPATH=[Dir('ext')])
3846121Snate@binkert.org
3856121Snate@binkert.orgdef strip_build_path(path, env):
3865397Ssaidi@eecs.umich.edu    path = str(path)
3871851SN/A    variant_base = env['BUILDROOT'] + os.path.sep
3881851SN/A    if path.startswith(variant_base):
3896121Snate@binkert.org        path = path[len(variant_base):]
390955SN/A    elif path.startswith('build/'):
3913053Sstever@eecs.umich.edu        path = path[6:]
3926121Snate@binkert.org    return path
3933053Sstever@eecs.umich.edu
3943053Sstever@eecs.umich.edu# Generate a string of the form:
3953053Sstever@eecs.umich.edu#   common/path/prefix/src1, src2 -> tgt1, tgt2
3963053Sstever@eecs.umich.edu# to print while building.
3973053Sstever@eecs.umich.educlass Transform(object):
3986654Snate@binkert.org    # all specific color settings should be here and nowhere else
3993053Sstever@eecs.umich.edu    tool_color = termcap.Normal
4004742Sstever@eecs.umich.edu    pfx_color = termcap.Yellow
4014742Sstever@eecs.umich.edu    srcs_color = termcap.Yellow + termcap.Bold
4023053Sstever@eecs.umich.edu    arrow_color = termcap.Blue + termcap.Bold
4033053Sstever@eecs.umich.edu    tgts_color = termcap.Yellow + termcap.Bold
4043053Sstever@eecs.umich.edu
4053053Sstever@eecs.umich.edu    def __init__(self, tool, max_sources=99):
4066654Snate@binkert.org        self.format = self.tool_color + (" [%8s] " % tool) \
4073053Sstever@eecs.umich.edu                      + self.pfx_color + "%s" \
4083053Sstever@eecs.umich.edu                      + self.srcs_color + "%s" \
4093053Sstever@eecs.umich.edu                      + self.arrow_color + " -> " \
4103053Sstever@eecs.umich.edu                      + self.tgts_color + "%s" \
4112667Sstever@eecs.umich.edu                      + termcap.Normal
4124554Sbinkertn@umich.edu        self.max_sources = max_sources
4136121Snate@binkert.org
4142667Sstever@eecs.umich.edu    def __call__(self, target, source, env, for_signature=None):
4154554Sbinkertn@umich.edu        # truncate source list according to max_sources param
4164554Sbinkertn@umich.edu        source = source[0:self.max_sources]
4174554Sbinkertn@umich.edu        def strip(f):
4186121Snate@binkert.org            return strip_build_path(str(f), env)
4194554Sbinkertn@umich.edu        if len(source) > 0:
4204554Sbinkertn@umich.edu            srcs = map(strip, source)
4214554Sbinkertn@umich.edu        else:
4224781Snate@binkert.org            srcs = ['']
4234554Sbinkertn@umich.edu        tgts = map(strip, target)
4244554Sbinkertn@umich.edu        # surprisingly, os.path.commonprefix is a dumb char-by-char string
4252667Sstever@eecs.umich.edu        # operation that has nothing to do with paths.
4264554Sbinkertn@umich.edu        com_pfx = os.path.commonprefix(srcs + tgts)
4274554Sbinkertn@umich.edu        com_pfx_len = len(com_pfx)
4284554Sbinkertn@umich.edu        if com_pfx:
4294554Sbinkertn@umich.edu            # do some cleanup and sanity checking on common prefix
4302667Sstever@eecs.umich.edu            if com_pfx[-1] == ".":
4314554Sbinkertn@umich.edu                # prefix matches all but file extension: ok
4322667Sstever@eecs.umich.edu                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
4334554Sbinkertn@umich.edu                com_pfx = com_pfx[0:-1]
4346121Snate@binkert.org            elif com_pfx[-1] == "/":
4352667Sstever@eecs.umich.edu                # common prefix is directory path: OK
4365522Snate@binkert.org                pass
4375522Snate@binkert.org            else:
4385522Snate@binkert.org                src0_len = len(srcs[0])
4395522Snate@binkert.org                tgt0_len = len(tgts[0])
4405522Snate@binkert.org                if src0_len == com_pfx_len:
4415522Snate@binkert.org                    # source is a substring of target, OK
4425522Snate@binkert.org                    pass
4435522Snate@binkert.org                elif tgt0_len == com_pfx_len:
4445522Snate@binkert.org                    # target is a substring of source, need to back up to
4455522Snate@binkert.org                    # avoid empty string on RHS of arrow
4465522Snate@binkert.org                    sep_idx = com_pfx.rfind(".")
4475522Snate@binkert.org                    if sep_idx != -1:
4485522Snate@binkert.org                        com_pfx = com_pfx[0:sep_idx]
4495522Snate@binkert.org                    else:
4505522Snate@binkert.org                        com_pfx = ''
4515522Snate@binkert.org                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
4525522Snate@binkert.org                    # still splitting at file extension: ok
4535522Snate@binkert.org                    pass
4545522Snate@binkert.org                else:
4555522Snate@binkert.org                    # probably a fluke; ignore it
4565522Snate@binkert.org                    com_pfx = ''
4575522Snate@binkert.org        # recalculate length in case com_pfx was modified
4585522Snate@binkert.org        com_pfx_len = len(com_pfx)
4595522Snate@binkert.org        def fmt(files):
4605522Snate@binkert.org            f = map(lambda s: s[com_pfx_len:], files)
4615522Snate@binkert.org            return ', '.join(f)
4622638Sstever@eecs.umich.edu        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
4632638Sstever@eecs.umich.edu
4646121Snate@binkert.orgExport('Transform')
4653716Sstever@eecs.umich.edu
4665522Snate@binkert.org
4675522Snate@binkert.orgif GetOption('verbose'):
4685522Snate@binkert.org    def MakeAction(action, string, *args, **kwargs):
4695522Snate@binkert.org        return Action(action, *args, **kwargs)
4705522Snate@binkert.orgelse:
4715522Snate@binkert.org    MakeAction = Action
4721858SN/A    main['CCCOMSTR']        = Transform("CC")
4735227Ssaidi@eecs.umich.edu    main['CXXCOMSTR']       = Transform("CXX")
4745227Ssaidi@eecs.umich.edu    main['ASCOMSTR']        = Transform("AS")
4755227Ssaidi@eecs.umich.edu    main['SWIGCOMSTR']      = Transform("SWIG")
4765227Ssaidi@eecs.umich.edu    main['ARCOMSTR']        = Transform("AR", 0)
4776654Snate@binkert.org    main['LINKCOMSTR']      = Transform("LINK", 0)
4786654Snate@binkert.org    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
4796121Snate@binkert.org    main['M4COMSTR']        = Transform("M4")
4806121Snate@binkert.org    main['SHCCCOMSTR']      = Transform("SHCC")
4816121Snate@binkert.org    main['SHCXXCOMSTR']     = Transform("SHCXX")
4826121Snate@binkert.orgExport('MakeAction')
4835227Ssaidi@eecs.umich.edu
4845227Ssaidi@eecs.umich.eduCXX_version = readCommand([main['CXX'],'--version'], exception=False)
4855227Ssaidi@eecs.umich.eduCXX_V = readCommand([main['CXX'],'-V'], exception=False)
4865204Sstever@gmail.com
4875204Sstever@gmail.commain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
4885204Sstever@gmail.commain['SUNCC'] = CXX_V and CXX_V.find('Sun C++') >= 0
4895204Sstever@gmail.commain['ICC'] = CXX_V and CXX_V.find('Intel') >= 0
4905204Sstever@gmail.commain['CLANG'] = CXX_V and CXX_V.find('clang') >= 0
4915204Sstever@gmail.comif main['GCC'] + main['SUNCC'] + main['ICC'] + main['CLANG'] > 1:
4925204Sstever@gmail.com    print 'Error: How can we have two at the same time?'
4935204Sstever@gmail.com    Exit(1)
4945204Sstever@gmail.com
4955204Sstever@gmail.com# Set up default C++ compiler flags
4965204Sstever@gmail.comif main['GCC']:
4975204Sstever@gmail.com    main.Append(CCFLAGS=['-pipe'])
4985204Sstever@gmail.com    main.Append(CCFLAGS=['-fno-strict-aliasing'])
4995204Sstever@gmail.com    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
5005204Sstever@gmail.com    main.Append(CXXFLAGS=['-Wno-deprecated'])
5015204Sstever@gmail.com    # Read the GCC version to check for versions with bugs
5025204Sstever@gmail.com    # Note CCVERSION doesn't work here because it is run with the CC
5036121Snate@binkert.org    # before we override it from the command line
5045204Sstever@gmail.com    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
5053118Sstever@eecs.umich.edu    main['GCC_VERSION'] = gcc_version
5063118Sstever@eecs.umich.edu    if not compareVersions(gcc_version, '4.4.1') or \
5073118Sstever@eecs.umich.edu       not compareVersions(gcc_version, '4.4.2'):
5083118Sstever@eecs.umich.edu        print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.'
5093118Sstever@eecs.umich.edu        main.Append(CCFLAGS=['-fno-tree-vectorize'])
5105863Snate@binkert.orgelif main['ICC']:
5113118Sstever@eecs.umich.edu    pass #Fix me... add warning flags once we clean up icc warnings
5125863Snate@binkert.orgelif main['SUNCC']:
5133118Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-Qoption ccfe'])
5145863Snate@binkert.org    main.Append(CCFLAGS=['-features=gcc'])
5155863Snate@binkert.org    main.Append(CCFLAGS=['-features=extensions'])
5165863Snate@binkert.org    main.Append(CCFLAGS=['-library=stlport4'])
5175863Snate@binkert.org    main.Append(CCFLAGS=['-xar'])
5185863Snate@binkert.org    #main.Append(CCFLAGS=['-instances=semiexplicit'])
5195863Snate@binkert.orgelif main['CLANG']:
5205863Snate@binkert.org    clang_version_re = re.compile(".* version (\d+\.\d+)")
5215863Snate@binkert.org    clang_version_match = clang_version_re.match(CXX_version)
5226003Snate@binkert.org    if (clang_version_match):
5235863Snate@binkert.org        clang_version = clang_version_match.groups()[0]
5245863Snate@binkert.org        if compareVersions(clang_version, "2.9") < 0:
5255863Snate@binkert.org            print 'Error: clang version 2.9 or newer required.'
5266120Snate@binkert.org            print '       Installed version:', clang_version
5275863Snate@binkert.org            Exit(1)
5285863Snate@binkert.org    else:
5295863Snate@binkert.org        print 'Error: Unable to determine clang version.'
5306120Snate@binkert.org        Exit(1)
5316120Snate@binkert.org
5325863Snate@binkert.org    main.Append(CCFLAGS=['-pipe'])
5335863Snate@binkert.org    main.Append(CCFLAGS=['-fno-strict-aliasing'])
5346120Snate@binkert.org    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
5355863Snate@binkert.org    main.Append(CCFLAGS=['-Wno-tautological-compare'])
5366121Snate@binkert.org    main.Append(CCFLAGS=['-Wno-self-assign'])
5376121Snate@binkert.orgelse:
5385863Snate@binkert.org    print 'Error: Don\'t know what compiler options to use for your compiler.'
5395863Snate@binkert.org    print '       Please fix SConstruct and src/SConscript and try again.'
5403118Sstever@eecs.umich.edu    Exit(1)
5415863Snate@binkert.org
5423118Sstever@eecs.umich.edu# Set up common yacc/bison flags (needed for Ruby)
5433118Sstever@eecs.umich.edumain['YACCFLAGS'] = '-d'
5445863Snate@binkert.orgmain['YACCHXXFILESUFFIX'] = '.hh'
5455863Snate@binkert.org
5465863Snate@binkert.org# Do this after we save setting back, or else we'll tack on an
5475863Snate@binkert.org# extra 'qdo' every time we run scons.
5483118Sstever@eecs.umich.eduif main['BATCH']:
5493483Ssaidi@eecs.umich.edu    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
5503494Ssaidi@eecs.umich.edu    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
5513494Ssaidi@eecs.umich.edu    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
5523483Ssaidi@eecs.umich.edu    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
5533483Ssaidi@eecs.umich.edu    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
5543483Ssaidi@eecs.umich.edu
5553053Sstever@eecs.umich.eduif sys.platform == 'cygwin':
5563053Sstever@eecs.umich.edu    # cygwin has some header file issues...
5573918Ssaidi@eecs.umich.edu    main.Append(CCFLAGS=["-Wno-uninitialized"])
5583053Sstever@eecs.umich.edu
5593053Sstever@eecs.umich.edu# Check for SWIG
5603053Sstever@eecs.umich.eduif not main.has_key('SWIG'):
5613053Sstever@eecs.umich.edu    print 'Error: SWIG utility not found.'
5623053Sstever@eecs.umich.edu    print '       Please install (see http://www.swig.org) and retry.'
5631858SN/A    Exit(1)
5641858SN/A
5651858SN/A# Check for appropriate SWIG version
5661858SN/Aswig_version = readCommand(('swig', '-version'), exception='').split()
5671858SN/A# First 3 words should be "SWIG Version x.y.z"
5681858SN/Aif len(swig_version) < 3 or \
5695863Snate@binkert.org        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
5705863Snate@binkert.org    print 'Error determining SWIG version.'
5711859SN/A    Exit(1)
5725863Snate@binkert.org
5731858SN/Amin_swig_version = '1.3.28'
5745863Snate@binkert.orgif compareVersions(swig_version[2], min_swig_version) < 0:
5751858SN/A    print 'Error: SWIG version', min_swig_version, 'or newer required.'
5761859SN/A    print '       Installed version:', swig_version[2]
5771859SN/A    Exit(1)
5786654Snate@binkert.org
5793053Sstever@eecs.umich.edu# Set up SWIG flags & scanner
5806654Snate@binkert.orgswig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
5813053Sstever@eecs.umich.edumain.Append(SWIGFLAGS=swig_flags)
5823053Sstever@eecs.umich.edu
5831859SN/A# filter out all existing swig scanners, they mess up the dependency
5841859SN/A# stuff for some reason
5851859SN/Ascanners = []
5861859SN/Afor scanner in main['SCANNERS']:
5871859SN/A    skeys = scanner.skeys
5881859SN/A    if skeys == '.i':
5891859SN/A        continue
5901859SN/A
5911862SN/A    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
5921859SN/A        continue
5931859SN/A
5941859SN/A    scanners.append(scanner)
5955863Snate@binkert.org
5965863Snate@binkert.org# add the new swig scanner that we like better
5975863Snate@binkert.orgfrom SCons.Scanner import ClassicCPP as CPPScanner
5985863Snate@binkert.orgswig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
5996121Snate@binkert.orgscanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
6001858SN/A
6015863Snate@binkert.org# replace the scanners list that has what we want
6025863Snate@binkert.orgmain['SCANNERS'] = scanners
6035863Snate@binkert.org
6045863Snate@binkert.org# Add a custom Check function to the Configure context so that we can
6055863Snate@binkert.org# figure out if the compiler adds leading underscores to global
6062139SN/A# variables.  This is needed for the autogenerated asm files that we
6074202Sbinkertn@umich.edu# use for embedding the python code.
6084202Sbinkertn@umich.edudef CheckLeading(context):
6092139SN/A    context.Message("Checking for leading underscore in global variables...")
6102155SN/A    # 1) Define a global variable called x from asm so the C compiler
6114202Sbinkertn@umich.edu    #    won't change the symbol at all.
6124202Sbinkertn@umich.edu    # 2) Declare that variable.
6134202Sbinkertn@umich.edu    # 3) Use the variable
6142155SN/A    #
6155863Snate@binkert.org    # If the compiler prepends an underscore, this will successfully
6161869SN/A    # link because the external symbol 'x' will be called '_x' which
6171869SN/A    # was defined by the asm statement.  If the compiler does not
6185863Snate@binkert.org    # prepend an underscore, this will not successfully link because
6195863Snate@binkert.org    # '_x' will have been defined by assembly, while the C portion of
6204202Sbinkertn@umich.edu    # the code will be trying to use 'x'
6216108Snate@binkert.org    ret = context.TryLink('''
6226108Snate@binkert.org        asm(".globl _x; _x: .byte 0");
6236108Snate@binkert.org        extern int x;
6246108Snate@binkert.org        int main() { return x; }
6255863Snate@binkert.org        ''', extension=".c")
6265863Snate@binkert.org    context.env.Append(LEADING_UNDERSCORE=ret)
6275863Snate@binkert.org    context.Result(ret)
6284202Sbinkertn@umich.edu    return ret
6294202Sbinkertn@umich.edu
6305863Snate@binkert.org# Platform-specific configuration.  Note again that we assume that all
6315742Snate@binkert.org# builds under a given build root run on the same host platform.
6325742Snate@binkert.orgconf = Configure(main,
6335341Sstever@gmail.com                 conf_dir = joinpath(build_root, '.scons_config'),
6345342Sstever@gmail.com                 log_file = joinpath(build_root, 'scons_config.log'),
6355342Sstever@gmail.com                 custom_tests = { 'CheckLeading' : CheckLeading })
6364202Sbinkertn@umich.edu
6374202Sbinkertn@umich.edu# Check for leading underscores.  Don't really need to worry either
6384202Sbinkertn@umich.edu# way so don't need to check the return code.
6394202Sbinkertn@umich.educonf.CheckLeading()
6404202Sbinkertn@umich.edu
6415863Snate@binkert.org# Check if we should compile a 64 bit binary on Mac OS X/Darwin
6425863Snate@binkert.orgtry:
6435863Snate@binkert.org    import platform
6445863Snate@binkert.org    uname = platform.uname()
6455863Snate@binkert.org    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
6465863Snate@binkert.org        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
6475863Snate@binkert.org            main.Append(CCFLAGS=['-arch', 'x86_64'])
6485863Snate@binkert.org            main.Append(CFLAGS=['-arch', 'x86_64'])
6495863Snate@binkert.org            main.Append(LINKFLAGS=['-arch', 'x86_64'])
6505863Snate@binkert.org            main.Append(ASFLAGS=['-arch', 'x86_64'])
6515863Snate@binkert.orgexcept:
6525863Snate@binkert.org    pass
6535863Snate@binkert.org
6545863Snate@binkert.org# Recent versions of scons substitute a "Null" object for Configure()
6555863Snate@binkert.org# when configuration isn't necessary, e.g., if the "--help" option is
6565863Snate@binkert.org# present.  Unfortuantely this Null object always returns false,
6575863Snate@binkert.org# breaking all our configuration checks.  We replace it with our own
6585863Snate@binkert.org# more optimistic null object that returns True instead.
6595863Snate@binkert.orgif not conf:
6605863Snate@binkert.org    def NullCheck(*args, **kwargs):
6615952Ssaidi@eecs.umich.edu        return True
6621869SN/A
6631858SN/A    class NullConf:
6645863Snate@binkert.org        def __init__(self, env):
6655863Snate@binkert.org            self.env = env
6661869SN/A        def Finish(self):
6671858SN/A            return self.env
6685863Snate@binkert.org        def __getattr__(self, mname):
6696108Snate@binkert.org            return NullCheck
6706108Snate@binkert.org
6716108Snate@binkert.org    conf = NullConf(main)
6721858SN/A
673955SN/A# Find Python include and library directories for embedding the
674955SN/A# interpreter.  For consistency, we will use the same Python
6751869SN/A# installation used to run scons (and thus this script).  If you want
6761869SN/A# to link in an alternate version, see above for instructions on how
6771869SN/A# to invoke scons with a different copy of the Python interpreter.
6781869SN/Afrom distutils import sysconfig
6791869SN/A
6805863Snate@binkert.orgpy_getvar = sysconfig.get_config_var
6815863Snate@binkert.org
6825863Snate@binkert.orgpy_debug = getattr(sys, 'pydebug', False)
6831869SN/Apy_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "")
6845863Snate@binkert.org
6851869SN/Apy_general_include = sysconfig.get_python_inc()
6865863Snate@binkert.orgpy_platform_include = sysconfig.get_python_inc(plat_specific=True)
6871869SN/Apy_includes = [ py_general_include ]
6881869SN/Aif py_platform_include != py_general_include:
6891869SN/A    py_includes.append(py_platform_include)
6901869SN/A
6911869SN/Apy_lib_path = [ py_getvar('LIBDIR') ]
6925863Snate@binkert.org# add the prefix/lib/pythonX.Y/config dir, but only if there is no
6935863Snate@binkert.org# shared library in prefix/lib/.
6941869SN/Aif not py_getvar('Py_ENABLE_SHARED'):
6951869SN/A    py_lib_path.append(py_getvar('LIBPL'))
6961869SN/A
6971869SN/Apy_libs = []
6981869SN/Afor lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split():
6991869SN/A    if not lib.startswith('-l'):
7001869SN/A        # Python requires some special flags to link (e.g. -framework
7015863Snate@binkert.org        # common on OS X systems), assume appending preserves order
7025863Snate@binkert.org        main.Append(LINKFLAGS=[lib])
7031869SN/A    else:
7045863Snate@binkert.org        lib = lib[2:]
7055863Snate@binkert.org        if lib not in py_libs:
7063356Sbinkertn@umich.edu            py_libs.append(lib)
7073356Sbinkertn@umich.edupy_libs.append(py_version)
7083356Sbinkertn@umich.edu
7093356Sbinkertn@umich.edumain.Append(CPPPATH=py_includes)
7103356Sbinkertn@umich.edumain.Append(LIBPATH=py_lib_path)
7114781Snate@binkert.org
7125863Snate@binkert.org# Cache build files in the supplied directory.
7135863Snate@binkert.orgif main['M5_BUILD_CACHE']:
7141869SN/A    print 'Using build cache located at', main['M5_BUILD_CACHE']
7151869SN/A    CacheDir(main['M5_BUILD_CACHE'])
7161869SN/A
7176121Snate@binkert.org
7181869SN/A# verify that this stuff works
7192638Sstever@eecs.umich.eduif not conf.CheckHeader('Python.h', '<>'):
7206121Snate@binkert.org    print "Error: can't find Python.h header in", py_includes
7216121Snate@binkert.org    Exit(1)
7222638Sstever@eecs.umich.edu
7235749Scws3k@cs.virginia.edufor lib in py_libs:
7246121Snate@binkert.org    if not conf.CheckLib(lib):
7256121Snate@binkert.org        print "Error: can't find library %s required by python" % lib
7265749Scws3k@cs.virginia.edu        Exit(1)
7271869SN/A
7281869SN/A# On Solaris you need to use libsocket for socket ops
7293546Sgblack@eecs.umich.eduif not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
7303546Sgblack@eecs.umich.edu   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
7313546Sgblack@eecs.umich.edu       print "Can't find library with socket calls (e.g. accept())"
7323546Sgblack@eecs.umich.edu       Exit(1)
7336121Snate@binkert.org
7345863Snate@binkert.org# Check for zlib.  If the check passes, libz will be automatically
7353546Sgblack@eecs.umich.edu# added to the LIBS environment variable.
7363546Sgblack@eecs.umich.eduif not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
7373546Sgblack@eecs.umich.edu    print 'Error: did not find needed zlib compression library '\
7383546Sgblack@eecs.umich.edu          'and/or zlib.h header file.'
7394781Snate@binkert.org    print '       Please install zlib and try again.'
7405863Snate@binkert.org    Exit(1)
7414781Snate@binkert.org
7424781Snate@binkert.org# Check for librt.
7434781Snate@binkert.orghave_posix_clock = \
7444781Snate@binkert.org    conf.CheckLibWithHeader(None, 'time.h', 'C',
7454781Snate@binkert.org                            'clock_nanosleep(0,0,NULL,NULL);') or \
7465863Snate@binkert.org    conf.CheckLibWithHeader('rt', 'time.h', 'C',
7474781Snate@binkert.org                            'clock_nanosleep(0,0,NULL,NULL);')
7484781Snate@binkert.org
7494781Snate@binkert.orgif not have_posix_clock:
7504781Snate@binkert.org    print "Can't find library for POSIX clocks."
7513546Sgblack@eecs.umich.edu
7523546Sgblack@eecs.umich.edu# Check for <fenv.h> (C99 FP environment control)
7533546Sgblack@eecs.umich.eduhave_fenv = conf.CheckHeader('fenv.h', '<>')
7544781Snate@binkert.orgif not have_fenv:
7553546Sgblack@eecs.umich.edu    print "Warning: Header file <fenv.h> not found."
7563546Sgblack@eecs.umich.edu    print "         This host has no IEEE FP rounding mode control."
7573546Sgblack@eecs.umich.edu
7583546Sgblack@eecs.umich.edu######################################################################
7593546Sgblack@eecs.umich.edu#
7603546Sgblack@eecs.umich.edu# Finish the configuration
7613546Sgblack@eecs.umich.edu#
7623546Sgblack@eecs.umich.edumain = conf.Finish()
7633546Sgblack@eecs.umich.edu
7643546Sgblack@eecs.umich.edu######################################################################
7654202Sbinkertn@umich.edu#
7663546Sgblack@eecs.umich.edu# Collect all non-global variables
7673546Sgblack@eecs.umich.edu#
7683546Sgblack@eecs.umich.edu
769955SN/A# Define the universe of supported ISAs
770955SN/Aall_isa_list = [ ]
771955SN/AExport('all_isa_list')
772955SN/A
7735863Snate@binkert.orgclass CpuModel(object):
7745863Snate@binkert.org    '''The CpuModel class encapsulates everything the ISA parser needs to
7755343Sstever@gmail.com    know about a particular CPU model.'''
7765343Sstever@gmail.com
7776121Snate@binkert.org    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
7785863Snate@binkert.org    dict = {}
7794773Snate@binkert.org    list = []
7805863Snate@binkert.org    defaults = []
7812632Sstever@eecs.umich.edu
7825863Snate@binkert.org    # Constructor.  Automatically adds models to CpuModel.dict.
7832023SN/A    def __init__(self, name, filename, includes, strings, default=False):
7845863Snate@binkert.org        self.name = name           # name of model
7855863Snate@binkert.org        self.filename = filename   # filename for output exec code
7865863Snate@binkert.org        self.includes = includes   # include files needed in exec file
7875863Snate@binkert.org        # The 'strings' dict holds all the per-CPU symbols we can
7885863Snate@binkert.org        # substitute into templates etc.
7895863Snate@binkert.org        self.strings = strings
7905863Snate@binkert.org
7915863Snate@binkert.org        # This cpu is enabled by default
7925863Snate@binkert.org        self.default = default
7932632Sstever@eecs.umich.edu
7945863Snate@binkert.org        # Add self to dict
7952023SN/A        if name in CpuModel.dict:
7962632Sstever@eecs.umich.edu            raise AttributeError, "CpuModel '%s' already registered" % name
7975863Snate@binkert.org        CpuModel.dict[name] = self
7985342Sstever@gmail.com        CpuModel.list.append(name)
7995863Snate@binkert.org
8002632Sstever@eecs.umich.eduExport('CpuModel')
8015863Snate@binkert.org
8025863Snate@binkert.org# Sticky variables get saved in the variables file so they persist from
8032632Sstever@eecs.umich.edu# one invocation to the next (unless overridden, in which case the new
8045863Snate@binkert.org# value becomes sticky).
8055863Snate@binkert.orgsticky_vars = Variables(args=ARGUMENTS)
8065863Snate@binkert.orgExport('sticky_vars')
8075863Snate@binkert.org
8085863Snate@binkert.org# Sticky variables that should be exported
8095863Snate@binkert.orgexport_vars = []
8102632Sstever@eecs.umich.eduExport('export_vars')
8115863Snate@binkert.org
8125863Snate@binkert.org# Walk the tree and execute all SConsopts scripts that wil add to the
8132632Sstever@eecs.umich.edu# above variables
8141888SN/Aif not GetOption('verbose'):
8155863Snate@binkert.org    print "Reading SConsopts"
8165863Snate@binkert.orgfor bdir in [ base_dir ] + extras_dir_list:
8175863Snate@binkert.org    if not isdir(bdir):
8181858SN/A        print "Error: directory '%s' does not exist" % bdir
8195863Snate@binkert.org        Exit(1)
8205863Snate@binkert.org    for root, dirs, files in os.walk(bdir):
8215863Snate@binkert.org        if 'SConsopts' in files:
8225863Snate@binkert.org            if GetOption('verbose'):
8232598SN/A                print "Reading", joinpath(root, 'SConsopts')
8245863Snate@binkert.org            SConscript(joinpath(root, 'SConsopts'))
8251858SN/A
8261858SN/Aall_isa_list.sort()
8271858SN/A
8285863Snate@binkert.orgsticky_vars.AddVariables(
8291858SN/A    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
8301858SN/A    ListVariable('CPU_MODELS', 'CPU models',
8311858SN/A                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
8325863Snate@binkert.org                 sorted(CpuModel.list)),
8331871SN/A    BoolVariable('NO_FAST_ALLOC', 'Disable fast object allocator', False),
8341858SN/A    BoolVariable('FORCE_FAST_ALLOC',
8351858SN/A                 'Enable fast object allocator, even for gem5.debug', False),
8361858SN/A    BoolVariable('FAST_ALLOC_STATS', 'Enable fast object allocator statistics',
8371858SN/A                 False),
8381858SN/A    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
8391858SN/A                 False),
8401858SN/A    BoolVariable('SS_COMPATIBLE_FP',
8415863Snate@binkert.org                 'Make floating-point results compatible with SimpleScalar',
8421858SN/A                 False),
8431858SN/A    BoolVariable('USE_SSE2',
8445863Snate@binkert.org                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
8451859SN/A                 False),
8461859SN/A    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
8471869SN/A    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
8485863Snate@binkert.org    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
8495863Snate@binkert.org    )
8501869SN/A
8511965SN/A# These variables get exported to #defines in config/*.hh (see src/SConscript).
8521965SN/Aexport_vars += ['USE_FENV', 'NO_FAST_ALLOC', 'FORCE_FAST_ALLOC',
8531965SN/A                'FAST_ALLOC_STATS', 'SS_COMPATIBLE_FP',
8542761Sstever@eecs.umich.edu                'TARGET_ISA', 'CP_ANNOTATE', 'USE_POSIX_CLOCK' ]
8555863Snate@binkert.org
8561869SN/A###################################################
8575863Snate@binkert.org#
8582667Sstever@eecs.umich.edu# Define a SCons builder for configuration flag headers.
8591869SN/A#
8601869SN/A###################################################
8612929Sktlim@umich.edu
8622929Sktlim@umich.edu# This function generates a config header file that #defines the
8635863Snate@binkert.org# variable symbol to the current variable setting (0 or 1).  The source
8642929Sktlim@umich.edu# operands are the name of the variable and a Value node containing the
865955SN/A# value of the variable.
8662598SN/Adef build_config_file(target, source, env):
867    (variable, value) = [s.get_contents() for s in source]
868    f = file(str(target[0]), 'w')
869    print >> f, '#define', variable, value
870    f.close()
871    return None
872
873# Combine the two functions into a scons Action object.
874config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
875
876# The emitter munges the source & target node lists to reflect what
877# we're really doing.
878def config_emitter(target, source, env):
879    # extract variable name from Builder arg
880    variable = str(target[0])
881    # True target is config header file
882    target = joinpath('config', variable.lower() + '.hh')
883    val = env[variable]
884    if isinstance(val, bool):
885        # Force value to 0/1
886        val = int(val)
887    elif isinstance(val, str):
888        val = '"' + val + '"'
889
890    # Sources are variable name & value (packaged in SCons Value nodes)
891    return ([target], [Value(variable), Value(val)])
892
893config_builder = Builder(emitter = config_emitter, action = config_action)
894
895main.Append(BUILDERS = { 'ConfigFile' : config_builder })
896
897# libelf build is shared across all configs in the build root.
898main.SConscript('ext/libelf/SConscript',
899                variant_dir = joinpath(build_root, 'libelf'))
900
901# gzstream build is shared across all configs in the build root.
902main.SConscript('ext/gzstream/SConscript',
903                variant_dir = joinpath(build_root, 'gzstream'))
904
905###################################################
906#
907# This function is used to set up a directory with switching headers
908#
909###################################################
910
911main['ALL_ISA_LIST'] = all_isa_list
912def make_switching_dir(dname, switch_headers, env):
913    # Generate the header.  target[0] is the full path of the output
914    # header to generate.  'source' is a dummy variable, since we get the
915    # list of ISAs from env['ALL_ISA_LIST'].
916    def gen_switch_hdr(target, source, env):
917        fname = str(target[0])
918        f = open(fname, 'w')
919        isa = env['TARGET_ISA'].lower()
920        print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
921        f.close()
922
923    # Build SCons Action object. 'varlist' specifies env vars that this
924    # action depends on; when env['ALL_ISA_LIST'] changes these actions
925    # should get re-executed.
926    switch_hdr_action = MakeAction(gen_switch_hdr,
927                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
928
929    # Instantiate actions for each header
930    for hdr in switch_headers:
931        env.Command(hdr, [], switch_hdr_action)
932Export('make_switching_dir')
933
934###################################################
935#
936# Define build environments for selected configurations.
937#
938###################################################
939
940for variant_path in variant_paths:
941    print "Building in", variant_path
942
943    # Make a copy of the build-root environment to use for this config.
944    env = main.Clone()
945    env['BUILDDIR'] = variant_path
946
947    # variant_dir is the tail component of build path, and is used to
948    # determine the build parameters (e.g., 'ALPHA_SE')
949    (build_root, variant_dir) = splitpath(variant_path)
950
951    # Set env variables according to the build directory config.
952    sticky_vars.files = []
953    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
954    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
955    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
956    current_vars_file = joinpath(build_root, 'variables', variant_dir)
957    if isfile(current_vars_file):
958        sticky_vars.files.append(current_vars_file)
959        print "Using saved variables file %s" % current_vars_file
960    else:
961        # Build dir-specific variables file doesn't exist.
962
963        # Make sure the directory is there so we can create it later
964        opt_dir = dirname(current_vars_file)
965        if not isdir(opt_dir):
966            mkdir(opt_dir)
967
968        # Get default build variables from source tree.  Variables are
969        # normally determined by name of $VARIANT_DIR, but can be
970        # overridden by '--default=' arg on command line.
971        default = GetOption('default')
972        opts_dir = joinpath(main.root.abspath, 'build_opts')
973        if default:
974            default_vars_files = [joinpath(build_root, 'variables', default),
975                                  joinpath(opts_dir, default)]
976        else:
977            default_vars_files = [joinpath(opts_dir, variant_dir)]
978        existing_files = filter(isfile, default_vars_files)
979        if existing_files:
980            default_vars_file = existing_files[0]
981            sticky_vars.files.append(default_vars_file)
982            print "Variables file %s not found,\n  using defaults in %s" \
983                  % (current_vars_file, default_vars_file)
984        else:
985            print "Error: cannot find variables file %s or " \
986                  "default file(s) %s" \
987                  % (current_vars_file, ' or '.join(default_vars_files))
988            Exit(1)
989
990    # Apply current variable settings to env
991    sticky_vars.Update(env)
992
993    help_texts["local_vars"] += \
994        "Build variables for %s:\n" % variant_dir \
995                 + sticky_vars.GenerateHelpText(env)
996
997    # Process variable settings.
998
999    if not have_fenv and env['USE_FENV']:
1000        print "Warning: <fenv.h> not available; " \
1001              "forcing USE_FENV to False in", variant_dir + "."
1002        env['USE_FENV'] = False
1003
1004    if not env['USE_FENV']:
1005        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1006        print "         FP results may deviate slightly from other platforms."
1007
1008    if env['EFENCE']:
1009        env.Append(LIBS=['efence'])
1010
1011    # Save sticky variable settings back to current variables file
1012    sticky_vars.Save(current_vars_file, env)
1013
1014    if env['USE_SSE2']:
1015        env.Append(CCFLAGS=['-msse2'])
1016
1017    # The src/SConscript file sets up the build rules in 'env' according
1018    # to the configured variables.  It returns a list of environments,
1019    # one for each variant build (debug, opt, etc.)
1020    envList = SConscript('src/SConscript', variant_dir = variant_path,
1021                         exports = 'env')
1022
1023    # Set up the regression tests for each build.
1024    for e in envList:
1025        SConscript('tests/SConscript',
1026                   variant_dir = joinpath(variant_path, 'tests', e.Label),
1027                   exports = { 'env' : e }, duplicate = False)
1028
1029# base help text
1030Help('''
1031Usage: scons [scons options] [build variables] [target(s)]
1032
1033Extra scons options:
1034%(options)s
1035
1036Global build variables:
1037%(global_vars)s
1038
1039%(local_vars)s
1040''' % help_texts)
1041