SConstruct revision 9072
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###################################################
68955SN/A
69955SN/A# Check for recent-enough Python and SCons versions.
702656Sstever@eecs.umich.edutry:
712656Sstever@eecs.umich.edu    # 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)
772653Sstever@eecs.umich.eduexcept SystemExit, e:
782653Sstever@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)
881852SN/Aexcept SystemExit, e:
89955SN/A    print """
90955SN/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
922632Sstever@eecs.umich.edu'python' first or (2) explicitly invoking an alternative interpreter
932632Sstever@eecs.umich.eduon the scons script.
94955SN/A
951533SN/AFor more details, see:
962632Sstever@eecs.umich.edu    http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation
971533SN/A"""
98955SN/A    raise
99955SN/A
1002632Sstever@eecs.umich.edu# Global Python includes
1012632Sstever@eecs.umich.eduimport os
102955SN/Aimport re
103955SN/Aimport subprocess
104955SN/Aimport sys
105955SN/A
1062632Sstever@eecs.umich.edufrom os import mkdir, environ
107955SN/Afrom os.path import abspath, basename, dirname, expanduser, normpath
1082632Sstever@eecs.umich.edufrom os.path import exists,  isdir, isfile
109955SN/Afrom os.path import join as joinpath, split as splitpath
110955SN/A
1112632Sstever@eecs.umich.edu# SCons includes
1122632Sstever@eecs.umich.eduimport SCons
1132632Sstever@eecs.umich.eduimport SCons.Node
1142632Sstever@eecs.umich.edu
1152632Sstever@eecs.umich.eduextra_python_paths = [
1162632Sstever@eecs.umich.edu    Dir('src/python').srcnode().abspath, # gem5 includes
1172632Sstever@eecs.umich.edu    Dir('ext/ply').srcnode().abspath, # ply is used by several files
1182632Sstever@eecs.umich.edu    ]
1192632Sstever@eecs.umich.edu    
1202632Sstever@eecs.umich.edusys.path[1:1] = extra_python_paths
1212632Sstever@eecs.umich.edu
1222632Sstever@eecs.umich.edufrom m5.util import compareVersions, readCommand
1232632Sstever@eecs.umich.edufrom m5.util.terminal import get_termcap
1242632Sstever@eecs.umich.edu
1252632Sstever@eecs.umich.eduhelp_texts = {
1262632Sstever@eecs.umich.edu    "options" : "",
1272632Sstever@eecs.umich.edu    "global_vars" : "",
1282634Sstever@eecs.umich.edu    "local_vars" : ""
1292634Sstever@eecs.umich.edu}
1302632Sstever@eecs.umich.edu
1312638Sstever@eecs.umich.eduExport("help_texts")
1322632Sstever@eecs.umich.edu
1332632Sstever@eecs.umich.edu
1342632Sstever@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from
1352632Sstever@eecs.umich.edu# 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
1372632Sstever@eecs.umich.edu# Help() function, but these two features are incompatible: once
1381858SN/A# you've overridden the help text using Help(), there's no way to get
1392638Sstever@eecs.umich.edu# at the help texts from AddOptions.  See:
1402638Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1412638Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1422638Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and
1432638Sstever@eecs.umich.edu# re-inject it via Help().  Ideally someday this bug will be fixed and
1442638Sstever@eecs.umich.edu# we can just use AddOption directly.
1452638Sstever@eecs.umich.edudef AddLocalOption(*args, **kwargs):
1462638Sstever@eecs.umich.edu    col_width = 30
1472634Sstever@eecs.umich.edu
1482634Sstever@eecs.umich.edu    help = "  " + ", ".join(args)
1492634Sstever@eecs.umich.edu    if "help" in kwargs:
150955SN/A        length = len(help)
151955SN/A        if length >= col_width:
152955SN/A            help += "\n" + " " * col_width
153955SN/A        else:
154955SN/A            help += " " * (col_width - length)
155955SN/A        help += kwargs["help"]
156955SN/A    help_texts["options"] += help + "\n"
157955SN/A
1581858SN/A    AddOption(*args, **kwargs)
1591858SN/A
1602632Sstever@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true',
161955SN/A               help="Add color to abbreviated scons output")
1622776Sstever@eecs.umich.eduAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1631105SN/A               help="Don't add color to abbreviated scons output")
1642667Sstever@eecs.umich.eduAddLocalOption('--default', dest='default', type='string', action='store',
1652667Sstever@eecs.umich.edu               help='Override which build_opts file to use for defaults')
1662667Sstever@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1672667Sstever@eecs.umich.edu               help='Disable style checking hooks')
1682667Sstever@eecs.umich.eduAddLocalOption('--update-ref', dest='update_ref', action='store_true',
1692667Sstever@eecs.umich.edu               help='Update test reference outputs')
1701869SN/AAddLocalOption('--verbose', dest='verbose', action='store_true',
1711869SN/A               help='Print full tool command lines')
1721869SN/A
1731869SN/Atermcap = get_termcap(GetOption('use_colors'))
1741869SN/A
1751065SN/A########################################################################
1762632Sstever@eecs.umich.edu#
1772632Sstever@eecs.umich.edu# Set up the main build environment.
178955SN/A#
1791858SN/A########################################################################
1801858SN/Ause_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 'PATH',
1811858SN/A                 'PYTHONPATH', 'RANLIB', 'SWIG' ])
1821858SN/A
1831851SN/Ause_env = {}
1841851SN/Afor key,val in os.environ.iteritems():
1851858SN/A    if key in use_vars or key.startswith("M5"):
1862632Sstever@eecs.umich.edu        use_env[key] = val
187955SN/A
1882656Sstever@eecs.umich.edumain = Environment(ENV=use_env)
1892656Sstever@eecs.umich.edumain.Decider('MD5-timestamp')
1902656Sstever@eecs.umich.edumain.root = Dir(".")         # The current directory (where this file lives).
1912656Sstever@eecs.umich.edumain.srcdir = Dir("src")     # The source directory
1922656Sstever@eecs.umich.edu
1932656Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses
1942656Sstever@eecs.umich.edu# as well
1952656Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths)
1962656Sstever@eecs.umich.edu
1972656Sstever@eecs.umich.edu########################################################################
1982656Sstever@eecs.umich.edu#
1992656Sstever@eecs.umich.edu# Mercurial Stuff.
2002656Sstever@eecs.umich.edu#
2012656Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some
2022656Sstever@eecs.umich.edu# extra things.
2032656Sstever@eecs.umich.edu#
2042655Sstever@eecs.umich.edu########################################################################
2052667Sstever@eecs.umich.edu
2062667Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg")
2072667Sstever@eecs.umich.edu
2082667Sstever@eecs.umich.edumercurial_style_message = """
2092667Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code
2102667Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands.  This
2112667Sstever@eecs.umich.eduscript will now install the hook in your .hg/hgrc file.
2122667Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """
2132667Sstever@eecs.umich.edu
2142667Sstever@eecs.umich.edumercurial_style_hook = """
2152667Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct
2162667Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks
2172667Sstever@eecs.umich.edu[extensions]
2182655Sstever@eecs.umich.edustyle = %s/util/style.py
2191858SN/A
2201858SN/A[hooks]
2212638Sstever@eecs.umich.edupretxncommit.style = python:style.check_style
2222638Sstever@eecs.umich.edupre-qrefresh.style = python:style.check_style
2232638Sstever@eecs.umich.edu# End of SConstruct additions
2242638Sstever@eecs.umich.edu
2252638Sstever@eecs.umich.edu""" % (main.root.abspath)
2261858SN/A
2271858SN/Amercurial_lib_not_found = """
2281858SN/AMercurial libraries cannot be found, ignoring style hook.  If
2291858SN/Ayou are a gem5 developer, please fix this and run the style
2301858SN/Ahook. It is important.
2311858SN/A"""
2321858SN/A
2331859SN/A# Check for style hook and prompt for installation if it's not there.
2341858SN/A# Skip this if --ignore-style was specified, there's no .hg dir to
2351858SN/A# install a hook in, or there's no interactive terminal to prompt.
2361858SN/Aif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty():
2371859SN/A    style_hook = True
2381859SN/A    try:
2391862SN/A        from mercurial import ui
2401862SN/A        ui = ui.ui()
2411862SN/A        ui.readconfig(hgdir.File('hgrc').abspath)
2421862SN/A        style_hook = ui.config('hooks', 'pretxncommit.style', None) and \
2431859SN/A                     ui.config('hooks', 'pre-qrefresh.style', None)
2441859SN/A    except ImportError:
2451963SN/A        print mercurial_lib_not_found
2461963SN/A
2471859SN/A    if not style_hook:
2481859SN/A        print mercurial_style_message,
2491859SN/A        # continue unless user does ctrl-c/ctrl-d etc.
2501859SN/A        try:
2511859SN/A            raw_input()
2521859SN/A        except:
2531859SN/A            print "Input exception, exiting scons.\n"
2541859SN/A            sys.exit(1)
2551862SN/A        hgrc_path = '%s/.hg/hgrc' % main.root.abspath
2561859SN/A        print "Adding style hook to", hgrc_path, "\n"
2571859SN/A        try:
2581859SN/A            hgrc = open(hgrc_path, 'a')
2591858SN/A            hgrc.write(mercurial_style_hook)
2601858SN/A            hgrc.close()
2612139SN/A        except:
2622139SN/A            print "Error updating", hgrc_path
2632139SN/A            sys.exit(1)
2642155SN/A
2652623SN/A
2662817Sksewell@umich.edu###################################################
2672792Sktlim@umich.edu#
2682155SN/A# Figure out which configurations to set up based on the path(s) of
2691869SN/A# the target(s).
2701869SN/A#
2711869SN/A###################################################
2721869SN/A
2731869SN/A# Find default configuration & binary.
2742139SN/ADefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
2751869SN/A
2762508SN/A# helper function: find last occurrence of element in list
2772508SN/Adef rfind(l, elt, offs = -1):
2782508SN/A    for i in range(len(l)+offs, 0, -1):
2792508SN/A        if l[i] == elt:
2802635Sstever@eecs.umich.edu            return i
2812635Sstever@eecs.umich.edu    raise ValueError, "element not found"
2821869SN/A
2831869SN/A# Take a list of paths (or SCons Nodes) and return a list with all
2841869SN/A# paths made absolute and ~-expanded.  Paths will be interpreted
2851869SN/A# relative to the launch directory unless a different root is provided
2861869SN/Adef makePathListAbsolute(path_list, root=GetLaunchDir()):
2871869SN/A    return [abspath(joinpath(root, expanduser(str(p))))
2881869SN/A            for p in path_list]
2891869SN/A
2901965SN/A# Each target must have 'build' in the interior of the path; the
2911965SN/A# directory below this will determine the build parameters.  For
2921965SN/A# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
2931869SN/A# recognize that ALPHA_SE specifies the configuration because it
2941869SN/A# follow 'build' in the build path.
2952733Sktlim@umich.edu
2961869SN/A# The funky assignment to "[:]" is needed to replace the list contents
2971884SN/A# in place rather than reassign the symbol to a new list, which
2981884SN/A# doesn't work (obviously!).
2991884SN/ABUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
3001869SN/A
3011858SN/A# Generate a list of the unique build roots and configs that the
3021869SN/A# collected targets reference.
3031869SN/Avariant_paths = []
3041869SN/Abuild_root = None
3051869SN/Afor t in BUILD_TARGETS:
3061869SN/A    path_dirs = t.split('/')
3071858SN/A    try:
3082761Sstever@eecs.umich.edu        build_top = rfind(path_dirs, 'build', -2)
3091869SN/A    except:
3102733Sktlim@umich.edu        print "Error: no non-leaf 'build' dir found on target path", t
3112733Sktlim@umich.edu        Exit(1)
3121869SN/A    this_build_root = joinpath('/',*path_dirs[:build_top+1])
3131869SN/A    if not build_root:
3141869SN/A        build_root = this_build_root
3151869SN/A    else:
3161869SN/A        if this_build_root != build_root:
3171869SN/A            print "Error: build targets not under same build root\n"\
3181858SN/A                  "  %s\n  %s" % (build_root, this_build_root)
319955SN/A            Exit(1)
320955SN/A    variant_path = joinpath('/',*path_dirs[:build_top+2])
3211869SN/A    if variant_path not in variant_paths:
3221869SN/A        variant_paths.append(variant_path)
3231869SN/A
3241869SN/A# Make sure build_root exists (might not if this is the first build there)
3251869SN/Aif not isdir(build_root):
3261869SN/A    mkdir(build_root)
3271869SN/Amain['BUILDROOT'] = build_root
3281869SN/A
3291869SN/AExport('main')
3301869SN/A
3311869SN/Amain.SConsignFile(joinpath(build_root, "sconsign"))
3321869SN/A
3331869SN/A# Default duplicate option is to use hard links, but this messes up
3341869SN/A# when you use emacs to edit a file in the target dir, as emacs moves
3351869SN/A# file to file~ then copies to file, breaking the link.  Symbolic
3361869SN/A# (soft) links work better.
3371869SN/Amain.SetOption('duplicate', 'soft-copy')
3381869SN/A
3391869SN/A#
3401869SN/A# Set up global sticky variables... these are common to an entire build
3411869SN/A# tree (not specific to a particular build like ALPHA_SE)
3421869SN/A#
3431869SN/A
3441869SN/Aglobal_vars_file = joinpath(build_root, 'variables.global')
3451869SN/A
3461869SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
3471869SN/A
3481869SN/Aglobal_vars.AddVariables(
3491869SN/A    ('CC', 'C compiler', environ.get('CC', main['CC'])),
3501869SN/A    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
3511869SN/A    ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])),
3521869SN/A    ('BATCH', 'Use batch pool for build and tests', False),
3531869SN/A    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
3541869SN/A    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
3551869SN/A    ('EXTRAS', 'Add extra directories to the compilation', '')
3561869SN/A    )
3571869SN/A
3581869SN/A# Update main environment with values from ARGUMENTS & global_vars_file
3591869SN/Aglobal_vars.Update(main)
3602655Sstever@eecs.umich.eduhelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
3612655Sstever@eecs.umich.edu
3622655Sstever@eecs.umich.edu# Save sticky variable settings back to current variables file
3632655Sstever@eecs.umich.eduglobal_vars.Save(global_vars_file, main)
3642655Sstever@eecs.umich.edu
3652655Sstever@eecs.umich.edu# Parse EXTRAS variable to build list of all directories where we're
3662655Sstever@eecs.umich.edu# look for sources etc.  This list is exported as extras_dir_list.
3672655Sstever@eecs.umich.edubase_dir = main.srcdir.abspath
3682655Sstever@eecs.umich.eduif main['EXTRAS']:
3692655Sstever@eecs.umich.edu    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
3702655Sstever@eecs.umich.eduelse:
3712655Sstever@eecs.umich.edu    extras_dir_list = []
3722655Sstever@eecs.umich.edu
3732655Sstever@eecs.umich.eduExport('base_dir')
3742655Sstever@eecs.umich.eduExport('extras_dir_list')
3752655Sstever@eecs.umich.edu
3762655Sstever@eecs.umich.edu# the ext directory should be on the #includes path
3772655Sstever@eecs.umich.edumain.Append(CPPPATH=[Dir('ext')])
3782655Sstever@eecs.umich.edu
3792655Sstever@eecs.umich.edudef strip_build_path(path, env):
3802655Sstever@eecs.umich.edu    path = str(path)
3812655Sstever@eecs.umich.edu    variant_base = env['BUILDROOT'] + os.path.sep
3822655Sstever@eecs.umich.edu    if path.startswith(variant_base):
3832655Sstever@eecs.umich.edu        path = path[len(variant_base):]
3842655Sstever@eecs.umich.edu    elif path.startswith('build/'):
3852655Sstever@eecs.umich.edu        path = path[6:]
3862634Sstever@eecs.umich.edu    return path
3872634Sstever@eecs.umich.edu
3882634Sstever@eecs.umich.edu# Generate a string of the form:
3892634Sstever@eecs.umich.edu#   common/path/prefix/src1, src2 -> tgt1, tgt2
3902634Sstever@eecs.umich.edu# to print while building.
3912634Sstever@eecs.umich.educlass Transform(object):
3922638Sstever@eecs.umich.edu    # all specific color settings should be here and nowhere else
3932638Sstever@eecs.umich.edu    tool_color = termcap.Normal
3942638Sstever@eecs.umich.edu    pfx_color = termcap.Yellow
3952638Sstever@eecs.umich.edu    srcs_color = termcap.Yellow + termcap.Bold
3962638Sstever@eecs.umich.edu    arrow_color = termcap.Blue + termcap.Bold
3971869SN/A    tgts_color = termcap.Yellow + termcap.Bold
3981869SN/A
399955SN/A    def __init__(self, tool, max_sources=99):
400955SN/A        self.format = self.tool_color + (" [%8s] " % tool) \
401955SN/A                      + self.pfx_color + "%s" \
402955SN/A                      + self.srcs_color + "%s" \
4031858SN/A                      + self.arrow_color + " -> " \
4041858SN/A                      + self.tgts_color + "%s" \
4051858SN/A                      + termcap.Normal
4062632Sstever@eecs.umich.edu        self.max_sources = max_sources
4072632Sstever@eecs.umich.edu
4082632Sstever@eecs.umich.edu    def __call__(self, target, source, env, for_signature=None):
4092632Sstever@eecs.umich.edu        # truncate source list according to max_sources param
4102632Sstever@eecs.umich.edu        source = source[0:self.max_sources]
4112634Sstever@eecs.umich.edu        def strip(f):
4122638Sstever@eecs.umich.edu            return strip_build_path(str(f), env)
4132023SN/A        if len(source) > 0:
4142632Sstever@eecs.umich.edu            srcs = map(strip, source)
4152632Sstever@eecs.umich.edu        else:
4162632Sstever@eecs.umich.edu            srcs = ['']
4172632Sstever@eecs.umich.edu        tgts = map(strip, target)
4182632Sstever@eecs.umich.edu        # surprisingly, os.path.commonprefix is a dumb char-by-char string
4192632Sstever@eecs.umich.edu        # operation that has nothing to do with paths.
4202632Sstever@eecs.umich.edu        com_pfx = os.path.commonprefix(srcs + tgts)
4212632Sstever@eecs.umich.edu        com_pfx_len = len(com_pfx)
4222632Sstever@eecs.umich.edu        if com_pfx:
4232632Sstever@eecs.umich.edu            # do some cleanup and sanity checking on common prefix
4242632Sstever@eecs.umich.edu            if com_pfx[-1] == ".":
4252023SN/A                # prefix matches all but file extension: ok
4262632Sstever@eecs.umich.edu                # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
4272632Sstever@eecs.umich.edu                com_pfx = com_pfx[0:-1]
4281889SN/A            elif com_pfx[-1] == "/":
4291889SN/A                # common prefix is directory path: OK
4302632Sstever@eecs.umich.edu                pass
4312632Sstever@eecs.umich.edu            else:
4322632Sstever@eecs.umich.edu                src0_len = len(srcs[0])
4332632Sstever@eecs.umich.edu                tgt0_len = len(tgts[0])
4342632Sstever@eecs.umich.edu                if src0_len == com_pfx_len:
4352632Sstever@eecs.umich.edu                    # source is a substring of target, OK
4362632Sstever@eecs.umich.edu                    pass
4372632Sstever@eecs.umich.edu                elif tgt0_len == com_pfx_len:
4382632Sstever@eecs.umich.edu                    # target is a substring of source, need to back up to
4392632Sstever@eecs.umich.edu                    # avoid empty string on RHS of arrow
4402632Sstever@eecs.umich.edu                    sep_idx = com_pfx.rfind(".")
4412632Sstever@eecs.umich.edu                    if sep_idx != -1:
4422632Sstever@eecs.umich.edu                        com_pfx = com_pfx[0:sep_idx]
4432632Sstever@eecs.umich.edu                    else:
4441888SN/A                        com_pfx = ''
4451888SN/A                elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".":
4461869SN/A                    # still splitting at file extension: ok
4471869SN/A                    pass
4481858SN/A                else:
4492598SN/A                    # probably a fluke; ignore it
4502598SN/A                    com_pfx = ''
4512598SN/A        # recalculate length in case com_pfx was modified
4522598SN/A        com_pfx_len = len(com_pfx)
4532598SN/A        def fmt(files):
4541858SN/A            f = map(lambda s: s[com_pfx_len:], files)
4551858SN/A            return ', '.join(f)
4561858SN/A        return self.format % (com_pfx, fmt(srcs), fmt(tgts))
4571858SN/A
4581858SN/AExport('Transform')
4591858SN/A
4601858SN/A# enable the regression script to use the termcap
4611858SN/Amain['TERMCAP'] = termcap
4621858SN/A
4631871SN/Aif GetOption('verbose'):
4641858SN/A    def MakeAction(action, string, *args, **kwargs):
4651858SN/A        return Action(action, *args, **kwargs)
4661858SN/Aelse:
4671858SN/A    MakeAction = Action
4681858SN/A    main['CCCOMSTR']        = Transform("CC")
4691858SN/A    main['CXXCOMSTR']       = Transform("CXX")
4701858SN/A    main['ASCOMSTR']        = Transform("AS")
4711858SN/A    main['SWIGCOMSTR']      = Transform("SWIG")
4721858SN/A    main['ARCOMSTR']        = Transform("AR", 0)
4731858SN/A    main['LINKCOMSTR']      = Transform("LINK", 0)
4741858SN/A    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
4751859SN/A    main['M4COMSTR']        = Transform("M4")
4761859SN/A    main['SHCCCOMSTR']      = Transform("SHCC")
4771869SN/A    main['SHCXXCOMSTR']     = Transform("SHCXX")
4781888SN/AExport('MakeAction')
4792632Sstever@eecs.umich.edu
4801869SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False)
4811884SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False)
4821884SN/A
4831884SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
4841884SN/Amain['SUNCC'] = CXX_V and CXX_V.find('Sun C++') >= 0
4851884SN/Amain['ICC'] = CXX_V and CXX_V.find('Intel') >= 0
4861884SN/Amain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
4871965SN/Aif main['GCC'] + main['SUNCC'] + main['ICC'] + main['CLANG'] > 1:
4881965SN/A    print 'Error: How can we have two at the same time?'
4891965SN/A    Exit(1)
4902761Sstever@eecs.umich.edu
4911869SN/A# Set up default C++ compiler flags
4921869SN/Aif main['GCC']:
4932632Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-pipe'])
4942667Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-fno-strict-aliasing'])
4951869SN/A    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
4961869SN/A    # Read the GCC version to check for versions with bugs
4972632Sstever@eecs.umich.edu    # Note CCVERSION doesn't work here because it is run with the CC
4982632Sstever@eecs.umich.edu    # before we override it from the command line
4992632Sstever@eecs.umich.edu    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
5002632Sstever@eecs.umich.edu    main['GCC_VERSION'] = gcc_version
501955SN/A    if not compareVersions(gcc_version, '4.4.1') or \
5022598SN/A       not compareVersions(gcc_version, '4.4.2'):
5032598SN/A        print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.'
504955SN/A        main.Append(CCFLAGS=['-fno-tree-vectorize'])
505955SN/A    if compareVersions(gcc_version, '4.6') >= 0:
506955SN/A        main.Append(CXXFLAGS=['-std=c++0x'])
5071530SN/Aelif main['ICC']:
508955SN/A    pass #Fix me... add warning flags once we clean up icc warnings
509955SN/Aelif main['SUNCC']:
510955SN/A    main.Append(CCFLAGS=['-Qoption ccfe'])
511    main.Append(CCFLAGS=['-features=gcc'])
512    main.Append(CCFLAGS=['-features=extensions'])
513    main.Append(CCFLAGS=['-library=stlport4'])
514    main.Append(CCFLAGS=['-xar'])
515    #main.Append(CCFLAGS=['-instances=semiexplicit'])
516elif main['CLANG']:
517    clang_version_re = re.compile(".* version (\d+\.\d+)")
518    clang_version_match = clang_version_re.match(CXX_version)
519    if (clang_version_match):
520        clang_version = clang_version_match.groups()[0]
521        if compareVersions(clang_version, "2.9") < 0:
522            print 'Error: clang version 2.9 or newer required.'
523            print '       Installed version:', clang_version
524            Exit(1)
525    else:
526        print 'Error: Unable to determine clang version.'
527        Exit(1)
528
529    main.Append(CCFLAGS=['-pipe'])
530    main.Append(CCFLAGS=['-fno-strict-aliasing'])
531    main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef'])
532    main.Append(CCFLAGS=['-Wno-tautological-compare'])
533    main.Append(CCFLAGS=['-Wno-self-assign'])
534    # Ruby makes frequent use of extraneous parantheses in the printing
535    # of if-statements
536    main.Append(CCFLAGS=['-Wno-parentheses'])
537
538    if compareVersions(clang_version, "3") >= 0:
539        main.Append(CXXFLAGS=['-std=c++0x'])
540else:
541    print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal,
542    print "Don't know what compiler options to use for your compiler."
543    print termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX']
544    print termcap.Yellow + '       version:' + termcap.Normal,
545    if not CXX_version:
546        print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\
547               termcap.Normal
548    else:
549        print CXX_version.replace('\n', '<nl>')
550    print "       If you're trying to use a compiler other than GCC, ICC, SunCC,"
551    print "       or clang, there appears to be something wrong with your"
552    print "       environment."
553    print "       "
554    print "       If you are trying to use a compiler other than those listed"
555    print "       above you will need to ease fix SConstruct and "
556    print "       src/SConscript to support that compiler."
557    Exit(1)
558
559# Set up common yacc/bison flags (needed for Ruby)
560main['YACCFLAGS'] = '-d'
561main['YACCHXXFILESUFFIX'] = '.hh'
562
563# Do this after we save setting back, or else we'll tack on an
564# extra 'qdo' every time we run scons.
565if main['BATCH']:
566    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
567    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
568    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
569    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
570    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
571
572if sys.platform == 'cygwin':
573    # cygwin has some header file issues...
574    main.Append(CCFLAGS=["-Wno-uninitialized"])
575
576# Check for SWIG
577if not main.has_key('SWIG'):
578    print 'Error: SWIG utility not found.'
579    print '       Please install (see http://www.swig.org) and retry.'
580    Exit(1)
581
582# Check for appropriate SWIG version
583swig_version = readCommand([main['SWIG'], '-version'], exception='').split()
584# First 3 words should be "SWIG Version x.y.z"
585if len(swig_version) < 3 or \
586        swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
587    print 'Error determining SWIG version.'
588    Exit(1)
589
590min_swig_version = '1.3.34'
591if compareVersions(swig_version[2], min_swig_version) < 0:
592    print 'Error: SWIG version', min_swig_version, 'or newer required.'
593    print '       Installed version:', swig_version[2]
594    Exit(1)
595
596# Set up SWIG flags & scanner
597swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
598main.Append(SWIGFLAGS=swig_flags)
599
600# filter out all existing swig scanners, they mess up the dependency
601# stuff for some reason
602scanners = []
603for scanner in main['SCANNERS']:
604    skeys = scanner.skeys
605    if skeys == '.i':
606        continue
607
608    if isinstance(skeys, (list, tuple)) and '.i' in skeys:
609        continue
610
611    scanners.append(scanner)
612
613# add the new swig scanner that we like better
614from SCons.Scanner import ClassicCPP as CPPScanner
615swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
616scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re))
617
618# replace the scanners list that has what we want
619main['SCANNERS'] = scanners
620
621# Add a custom Check function to the Configure context so that we can
622# figure out if the compiler adds leading underscores to global
623# variables.  This is needed for the autogenerated asm files that we
624# use for embedding the python code.
625def CheckLeading(context):
626    context.Message("Checking for leading underscore in global variables...")
627    # 1) Define a global variable called x from asm so the C compiler
628    #    won't change the symbol at all.
629    # 2) Declare that variable.
630    # 3) Use the variable
631    #
632    # If the compiler prepends an underscore, this will successfully
633    # link because the external symbol 'x' will be called '_x' which
634    # was defined by the asm statement.  If the compiler does not
635    # prepend an underscore, this will not successfully link because
636    # '_x' will have been defined by assembly, while the C portion of
637    # the code will be trying to use 'x'
638    ret = context.TryLink('''
639        asm(".globl _x; _x: .byte 0");
640        extern int x;
641        int main() { return x; }
642        ''', extension=".c")
643    context.env.Append(LEADING_UNDERSCORE=ret)
644    context.Result(ret)
645    return ret
646
647# Platform-specific configuration.  Note again that we assume that all
648# builds under a given build root run on the same host platform.
649conf = Configure(main,
650                 conf_dir = joinpath(build_root, '.scons_config'),
651                 log_file = joinpath(build_root, 'scons_config.log'),
652                 custom_tests = { 'CheckLeading' : CheckLeading })
653
654# Check for leading underscores.  Don't really need to worry either
655# way so don't need to check the return code.
656conf.CheckLeading()
657
658# Check if we should compile a 64 bit binary on Mac OS X/Darwin
659try:
660    import platform
661    uname = platform.uname()
662    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
663        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
664            main.Append(CCFLAGS=['-arch', 'x86_64'])
665            main.Append(CFLAGS=['-arch', 'x86_64'])
666            main.Append(LINKFLAGS=['-arch', 'x86_64'])
667            main.Append(ASFLAGS=['-arch', 'x86_64'])
668except:
669    pass
670
671# Recent versions of scons substitute a "Null" object for Configure()
672# when configuration isn't necessary, e.g., if the "--help" option is
673# present.  Unfortuantely this Null object always returns false,
674# breaking all our configuration checks.  We replace it with our own
675# more optimistic null object that returns True instead.
676if not conf:
677    def NullCheck(*args, **kwargs):
678        return True
679
680    class NullConf:
681        def __init__(self, env):
682            self.env = env
683        def Finish(self):
684            return self.env
685        def __getattr__(self, mname):
686            return NullCheck
687
688    conf = NullConf(main)
689
690# Find Python include and library directories for embedding the
691# interpreter.  For consistency, we will use the same Python
692# installation used to run scons (and thus this script).  If you want
693# to link in an alternate version, see above for instructions on how
694# to invoke scons with a different copy of the Python interpreter.
695from distutils import sysconfig
696
697py_getvar = sysconfig.get_config_var
698
699py_debug = getattr(sys, 'pydebug', False)
700py_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "")
701
702py_general_include = sysconfig.get_python_inc()
703py_platform_include = sysconfig.get_python_inc(plat_specific=True)
704py_includes = [ py_general_include ]
705if py_platform_include != py_general_include:
706    py_includes.append(py_platform_include)
707
708py_lib_path = [ py_getvar('LIBDIR') ]
709# add the prefix/lib/pythonX.Y/config dir, but only if there is no
710# shared library in prefix/lib/.
711if not py_getvar('Py_ENABLE_SHARED'):
712    py_lib_path.append(py_getvar('LIBPL'))
713
714py_libs = []
715for lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split():
716    if not lib.startswith('-l'):
717        # Python requires some special flags to link (e.g. -framework
718        # common on OS X systems), assume appending preserves order
719        main.Append(LINKFLAGS=[lib])
720    else:
721        lib = lib[2:]
722        if lib not in py_libs:
723            py_libs.append(lib)
724py_libs.append(py_version)
725
726main.Append(CPPPATH=py_includes)
727main.Append(LIBPATH=py_lib_path)
728
729# Cache build files in the supplied directory.
730if main['M5_BUILD_CACHE']:
731    print 'Using build cache located at', main['M5_BUILD_CACHE']
732    CacheDir(main['M5_BUILD_CACHE'])
733
734
735# verify that this stuff works
736if not conf.CheckHeader('Python.h', '<>'):
737    print "Error: can't find Python.h header in", py_includes
738    Exit(1)
739
740for lib in py_libs:
741    if not conf.CheckLib(lib):
742        print "Error: can't find library %s required by python" % lib
743        Exit(1)
744
745# On Solaris you need to use libsocket for socket ops
746if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
747   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
748       print "Can't find library with socket calls (e.g. accept())"
749       Exit(1)
750
751# Check for zlib.  If the check passes, libz will be automatically
752# added to the LIBS environment variable.
753if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
754    print 'Error: did not find needed zlib compression library '\
755          'and/or zlib.h header file.'
756    print '       Please install zlib and try again.'
757    Exit(1)
758
759# Check for librt.
760have_posix_clock = \
761    conf.CheckLibWithHeader(None, 'time.h', 'C',
762                            'clock_nanosleep(0,0,NULL,NULL);') or \
763    conf.CheckLibWithHeader('rt', 'time.h', 'C',
764                            'clock_nanosleep(0,0,NULL,NULL);')
765
766if conf.CheckLib('tcmalloc_minimal'):
767    have_tcmalloc = True
768else:
769    have_tcmalloc = False
770    print termcap.Yellow + termcap.Bold + \
771          "You can get a 12% performance improvement by installing tcmalloc "\
772          "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \
773          termcap.Normal
774
775if not have_posix_clock:
776    print "Can't find library for POSIX clocks."
777
778# Check for <fenv.h> (C99 FP environment control)
779have_fenv = conf.CheckHeader('fenv.h', '<>')
780if not have_fenv:
781    print "Warning: Header file <fenv.h> not found."
782    print "         This host has no IEEE FP rounding mode control."
783
784######################################################################
785#
786# Finish the configuration
787#
788main = conf.Finish()
789
790######################################################################
791#
792# Collect all non-global variables
793#
794
795# Define the universe of supported ISAs
796all_isa_list = [ ]
797Export('all_isa_list')
798
799class CpuModel(object):
800    '''The CpuModel class encapsulates everything the ISA parser needs to
801    know about a particular CPU model.'''
802
803    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
804    dict = {}
805    list = []
806    defaults = []
807
808    # Constructor.  Automatically adds models to CpuModel.dict.
809    def __init__(self, name, filename, includes, strings, default=False):
810        self.name = name           # name of model
811        self.filename = filename   # filename for output exec code
812        self.includes = includes   # include files needed in exec file
813        # The 'strings' dict holds all the per-CPU symbols we can
814        # substitute into templates etc.
815        self.strings = strings
816
817        # This cpu is enabled by default
818        self.default = default
819
820        # Add self to dict
821        if name in CpuModel.dict:
822            raise AttributeError, "CpuModel '%s' already registered" % name
823        CpuModel.dict[name] = self
824        CpuModel.list.append(name)
825
826Export('CpuModel')
827
828# Sticky variables get saved in the variables file so they persist from
829# one invocation to the next (unless overridden, in which case the new
830# value becomes sticky).
831sticky_vars = Variables(args=ARGUMENTS)
832Export('sticky_vars')
833
834# Sticky variables that should be exported
835export_vars = []
836Export('export_vars')
837
838# Walk the tree and execute all SConsopts scripts that wil add to the
839# above variables
840if not GetOption('verbose'):
841    print "Reading SConsopts"
842for bdir in [ base_dir ] + extras_dir_list:
843    if not isdir(bdir):
844        print "Error: directory '%s' does not exist" % bdir
845        Exit(1)
846    for root, dirs, files in os.walk(bdir):
847        if 'SConsopts' in files:
848            if GetOption('verbose'):
849                print "Reading", joinpath(root, 'SConsopts')
850            SConscript(joinpath(root, 'SConsopts'))
851
852all_isa_list.sort()
853
854sticky_vars.AddVariables(
855    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
856    ListVariable('CPU_MODELS', 'CPU models',
857                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
858                 sorted(CpuModel.list)),
859    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
860                 False),
861    BoolVariable('SS_COMPATIBLE_FP',
862                 'Make floating-point results compatible with SimpleScalar',
863                 False),
864    BoolVariable('USE_SSE2',
865                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
866                 False),
867    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
868    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
869    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
870    )
871
872# These variables get exported to #defines in config/*.hh (see src/SConscript).
873export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP',
874                'TARGET_ISA', 'CP_ANNOTATE', 'USE_POSIX_CLOCK' ]
875
876###################################################
877#
878# Define a SCons builder for configuration flag headers.
879#
880###################################################
881
882# This function generates a config header file that #defines the
883# variable symbol to the current variable setting (0 or 1).  The source
884# operands are the name of the variable and a Value node containing the
885# value of the variable.
886def build_config_file(target, source, env):
887    (variable, value) = [s.get_contents() for s in source]
888    f = file(str(target[0]), 'w')
889    print >> f, '#define', variable, value
890    f.close()
891    return None
892
893# Combine the two functions into a scons Action object.
894config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
895
896# The emitter munges the source & target node lists to reflect what
897# we're really doing.
898def config_emitter(target, source, env):
899    # extract variable name from Builder arg
900    variable = str(target[0])
901    # True target is config header file
902    target = joinpath('config', variable.lower() + '.hh')
903    val = env[variable]
904    if isinstance(val, bool):
905        # Force value to 0/1
906        val = int(val)
907    elif isinstance(val, str):
908        val = '"' + val + '"'
909
910    # Sources are variable name & value (packaged in SCons Value nodes)
911    return ([target], [Value(variable), Value(val)])
912
913config_builder = Builder(emitter = config_emitter, action = config_action)
914
915main.Append(BUILDERS = { 'ConfigFile' : config_builder })
916
917# libelf build is shared across all configs in the build root.
918main.SConscript('ext/libelf/SConscript',
919                variant_dir = joinpath(build_root, 'libelf'))
920
921# gzstream build is shared across all configs in the build root.
922main.SConscript('ext/gzstream/SConscript',
923                variant_dir = joinpath(build_root, 'gzstream'))
924
925###################################################
926#
927# This function is used to set up a directory with switching headers
928#
929###################################################
930
931main['ALL_ISA_LIST'] = all_isa_list
932def make_switching_dir(dname, switch_headers, env):
933    # Generate the header.  target[0] is the full path of the output
934    # header to generate.  'source' is a dummy variable, since we get the
935    # list of ISAs from env['ALL_ISA_LIST'].
936    def gen_switch_hdr(target, source, env):
937        fname = str(target[0])
938        f = open(fname, 'w')
939        isa = env['TARGET_ISA'].lower()
940        print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname))
941        f.close()
942
943    # Build SCons Action object. 'varlist' specifies env vars that this
944    # action depends on; when env['ALL_ISA_LIST'] changes these actions
945    # should get re-executed.
946    switch_hdr_action = MakeAction(gen_switch_hdr,
947                          Transform("GENERATE"), varlist=['ALL_ISA_LIST'])
948
949    # Instantiate actions for each header
950    for hdr in switch_headers:
951        env.Command(hdr, [], switch_hdr_action)
952Export('make_switching_dir')
953
954###################################################
955#
956# Define build environments for selected configurations.
957#
958###################################################
959
960for variant_path in variant_paths:
961    print "Building in", variant_path
962
963    # Make a copy of the build-root environment to use for this config.
964    env = main.Clone()
965    env['BUILDDIR'] = variant_path
966
967    # variant_dir is the tail component of build path, and is used to
968    # determine the build parameters (e.g., 'ALPHA_SE')
969    (build_root, variant_dir) = splitpath(variant_path)
970
971    # Set env variables according to the build directory config.
972    sticky_vars.files = []
973    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
974    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
975    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
976    current_vars_file = joinpath(build_root, 'variables', variant_dir)
977    if isfile(current_vars_file):
978        sticky_vars.files.append(current_vars_file)
979        print "Using saved variables file %s" % current_vars_file
980    else:
981        # Build dir-specific variables file doesn't exist.
982
983        # Make sure the directory is there so we can create it later
984        opt_dir = dirname(current_vars_file)
985        if not isdir(opt_dir):
986            mkdir(opt_dir)
987
988        # Get default build variables from source tree.  Variables are
989        # normally determined by name of $VARIANT_DIR, but can be
990        # overridden by '--default=' arg on command line.
991        default = GetOption('default')
992        opts_dir = joinpath(main.root.abspath, 'build_opts')
993        if default:
994            default_vars_files = [joinpath(build_root, 'variables', default),
995                                  joinpath(opts_dir, default)]
996        else:
997            default_vars_files = [joinpath(opts_dir, variant_dir)]
998        existing_files = filter(isfile, default_vars_files)
999        if existing_files:
1000            default_vars_file = existing_files[0]
1001            sticky_vars.files.append(default_vars_file)
1002            print "Variables file %s not found,\n  using defaults in %s" \
1003                  % (current_vars_file, default_vars_file)
1004        else:
1005            print "Error: cannot find variables file %s or " \
1006                  "default file(s) %s" \
1007                  % (current_vars_file, ' or '.join(default_vars_files))
1008            Exit(1)
1009
1010    # Apply current variable settings to env
1011    sticky_vars.Update(env)
1012
1013    help_texts["local_vars"] += \
1014        "Build variables for %s:\n" % variant_dir \
1015                 + sticky_vars.GenerateHelpText(env)
1016
1017    # Process variable settings.
1018
1019    if not have_fenv and env['USE_FENV']:
1020        print "Warning: <fenv.h> not available; " \
1021              "forcing USE_FENV to False in", variant_dir + "."
1022        env['USE_FENV'] = False
1023
1024    if not env['USE_FENV']:
1025        print "Warning: No IEEE FP rounding mode control in", variant_dir + "."
1026        print "         FP results may deviate slightly from other platforms."
1027
1028    if env['EFENCE']:
1029        env.Append(LIBS=['efence'])
1030
1031    # Save sticky variable settings back to current variables file
1032    sticky_vars.Save(current_vars_file, env)
1033
1034    if env['USE_SSE2']:
1035        env.Append(CCFLAGS=['-msse2'])
1036
1037    if have_tcmalloc:
1038        env.Append(LIBS=['tcmalloc_minimal'])
1039
1040    # The src/SConscript file sets up the build rules in 'env' according
1041    # to the configured variables.  It returns a list of environments,
1042    # one for each variant build (debug, opt, etc.)
1043    envList = SConscript('src/SConscript', variant_dir = variant_path,
1044                         exports = 'env')
1045
1046    # Set up the regression tests for each build.
1047    for e in envList:
1048        SConscript('tests/SConscript',
1049                   variant_dir = joinpath(variant_path, 'tests', e.Label),
1050                   exports = { 'env' : e }, duplicate = False)
1051
1052# base help text
1053Help('''
1054Usage: scons [scons options] [build variables] [target(s)]
1055
1056Extra scons options:
1057%(options)s
1058
1059Global build variables:
1060%(global_vars)s
1061
1062%(local_vars)s
1063''' % help_texts)
1064