SConstruct revision 9227
12SN/A# -*- mode:python -*- 21762SN/A 32SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc. 42SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company 52SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 62SN/A# All rights reserved. 72SN/A# 82SN/A# Redistribution and use in source and binary forms, with or without 92SN/A# modification, are permitted provided that the following conditions are 102SN/A# met: redistributions of source code must retain the above copyright 112SN/A# notice, this list of conditions and the following disclaimer; 122SN/A# redistributions in binary form must reproduce the above copyright 132SN/A# notice, this list of conditions and the following disclaimer in the 142SN/A# documentation and/or other materials provided with the distribution; 152SN/A# neither the name of the copyright holders nor the names of its 162SN/A# contributors may be used to endorse or promote products derived from 172SN/A# this software without specific prior written permission. 182SN/A# 192SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 202SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 212SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 222SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 232SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 242SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 252SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 262SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 272665Ssaidi@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 282760Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 292760Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 302665Ssaidi@eecs.umich.edu# 312SN/A# Authors: Steve Reinhardt 322SN/A# Nathan Binkert 332SN/A 34363SN/A################################################### 35363SN/A# 361354SN/A# SCons top-level build description (SConstruct) file. 372SN/A# 382SN/A# While in this directory ('gem5'), just type 'scons' to build the default 392SN/A# configuration (see below), or type 'scons build/<CONFIG>/<binary>' 402SN/A# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for 412SN/A# the optimized full-system version). 422SN/A# 43363SN/A# You can build gem5 in a different directory as long as there is a 4456SN/A# 'build/<CONFIG>' somewhere along the target path. The build system 451388SN/A# expects that all configs under the same build directory are being 46217SN/A# built for the same host system. 47363SN/A# 4856SN/A# Examples: 4956SN/A# 5056SN/A# The following two commands are equivalent. The '-u' option tells 511638SN/A# scons to search up the directory tree for this SConstruct file. 5256SN/A# % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug 532SN/A# % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug 542356SN/A# 552356SN/A# The following two commands are equivalent and demonstrate building 562356SN/A# in a directory outside of the source tree. The '-C' option tells 572SN/A# scons to chdir to the specified directory to find this SConstruct 582SN/A# file. 594000Ssaidi@eecs.umich.edu# % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug 604000Ssaidi@eecs.umich.edu# % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug 614762Snate@binkert.org# 624762Snate@binkert.org# You can use 'scons -H' to print scons options. If you're in this 634762Snate@binkert.org# 'gem5' directory (or use -u or -C to tell scons where to find this 644762Snate@binkert.org# file), you can use 'scons -h' to print all the gem5-specific build 654762Snate@binkert.org# options as well. 664762Snate@binkert.org# 674762Snate@binkert.org################################################### 684762Snate@binkert.org 694762Snate@binkert.org# Check for recent-enough Python and SCons versions. 704762Snate@binkert.orgtry: 714762Snate@binkert.org # Really old versions of scons only take two options for the 724762Snate@binkert.org # function, so check once without the revision and once with the 734762Snate@binkert.org # revision, the first instance will fail for stuff other than 744762Snate@binkert.org # 0.98, and the second will fail for 0.98.0 754762Snate@binkert.org EnsureSConsVersion(0, 98) 764762Snate@binkert.org EnsureSConsVersion(0, 98, 1) 774762Snate@binkert.orgexcept SystemExit, e: 784762Snate@binkert.org print """ 794762Snate@binkert.orgFor more details, see: 804762Snate@binkert.org http://gem5.org/Dependencies 814762Snate@binkert.org""" 824762Snate@binkert.org raise 834762Snate@binkert.org 844762Snate@binkert.org# We ensure the python version early because we have stuff that 854762Snate@binkert.org# requires python 2.4 864762Snate@binkert.orgtry: 874762Snate@binkert.org EnsurePythonVersion(2, 4) 884762Snate@binkert.orgexcept SystemExit, e: 894762Snate@binkert.org print """ 904762Snate@binkert.orgYou can use a non-default installation of the Python interpreter by 914762Snate@binkert.orgeither (1) rearranging your PATH so that scons finds the non-default 924762Snate@binkert.org'python' first or (2) explicitly invoking an alternative interpreter 934762Snate@binkert.orgon the scons script. 944762Snate@binkert.org 954762Snate@binkert.orgFor more details, see: 964762Snate@binkert.org http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 974762Snate@binkert.org""" 984762Snate@binkert.org raise 994762Snate@binkert.org 1004762Snate@binkert.org# Global Python includes 1014762Snate@binkert.orgimport os 1024762Snate@binkert.orgimport re 1034762Snate@binkert.orgimport subprocess 1044762Snate@binkert.orgimport sys 1054762Snate@binkert.org 1064762Snate@binkert.orgfrom os import mkdir, environ 1074762Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath 1084762Snate@binkert.orgfrom os.path import exists, isdir, isfile 1094762Snate@binkert.orgfrom os.path import join as joinpath, split as splitpath 1104762Snate@binkert.org 1114762Snate@binkert.org# SCons includes 1124762Snate@binkert.orgimport SCons 1134762Snate@binkert.orgimport SCons.Node 1144762Snate@binkert.org 1154762Snate@binkert.orgextra_python_paths = [ 1164762Snate@binkert.org Dir('src/python').srcnode().abspath, # gem5 includes 1174762Snate@binkert.org Dir('ext/ply').srcnode().abspath, # ply is used by several files 1184762Snate@binkert.org ] 1194762Snate@binkert.org 1204762Snate@binkert.orgsys.path[1:1] = extra_python_paths 1214762Snate@binkert.org 1224762Snate@binkert.orgfrom m5.util import compareVersions, readCommand 1234762Snate@binkert.orgfrom m5.util.terminal import get_termcap 1244762Snate@binkert.org 1254762Snate@binkert.orghelp_texts = { 1264762Snate@binkert.org "options" : "", 1274762Snate@binkert.org "global_vars" : "", 1284762Snate@binkert.org "local_vars" : "" 1294762Snate@binkert.org} 1304762Snate@binkert.org 1314762Snate@binkert.orgExport("help_texts") 1324762Snate@binkert.org 1334762Snate@binkert.org 1344762Snate@binkert.org# There's a bug in scons in that (1) by default, the help texts from 1354762Snate@binkert.org# AddOption() are supposed to be displayed when you type 'scons -h' 1364762Snate@binkert.org# and (2) you can override the help displayed by 'scons -h' using the 1374762Snate@binkert.org# Help() function, but these two features are incompatible: once 1384762Snate@binkert.org# you've overridden the help text using Help(), there's no way to get 1394762Snate@binkert.org# at the help texts from AddOptions. See: 1404762Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2356 1414762Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1424762Snate@binkert.org# This hack lets us extract the help text from AddOptions and 1434762Snate@binkert.org# re-inject it via Help(). Ideally someday this bug will be fixed and 1444762Snate@binkert.org# we can just use AddOption directly. 1454762Snate@binkert.orgdef AddLocalOption(*args, **kwargs): 1464762Snate@binkert.org col_width = 30 1474762Snate@binkert.org 1484762Snate@binkert.org help = " " + ", ".join(args) 1494762Snate@binkert.org if "help" in kwargs: 1504762Snate@binkert.org length = len(help) 1514762Snate@binkert.org if length >= col_width: 1524762Snate@binkert.org help += "\n" + " " * col_width 1534762Snate@binkert.org else: 1544762Snate@binkert.org help += " " * (col_width - length) 1554762Snate@binkert.org help += kwargs["help"] 1562287SN/A help_texts["options"] += help + "\n" 1572287SN/A 1582287SN/A AddOption(*args, **kwargs) 1591637SN/A 1602SN/AAddLocalOption('--colors', dest='use_colors', action='store_true', 161395SN/A help="Add color to abbreviated scons output") 1622SN/AAddLocalOption('--no-colors', dest='use_colors', action='store_false', 163217SN/A help="Don't add color to abbreviated scons output") 1642SN/AAddLocalOption('--default', dest='default', type='string', action='store', 1652SN/A help='Override which build_opts file to use for defaults') 1662SN/AAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 167395SN/A help='Disable style checking hooks') 1682SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true', 169217SN/A help='Disable Link-Time Optimization for fast') 1702SN/AAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1712SN/A help='Update test reference outputs') 172217SN/AAddLocalOption('--verbose', dest='verbose', action='store_true', 1732SN/A help='Print full tool command lines') 174502SN/A 1752SN/Atermcap = get_termcap(GetOption('use_colors')) 176217SN/A 177217SN/A######################################################################## 178217SN/A# 1792SN/A# Set up the main build environment. 1802SN/A# 1814841Ssaidi@eecs.umich.edu######################################################################## 1824841Ssaidi@eecs.umich.eduuse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 1834841Ssaidi@eecs.umich.edu 'LIBRARY_PATH', 'PATH', 'PYTHONPATH', 'RANLIB', 'SWIG' ]) 1844841Ssaidi@eecs.umich.edu 1854841Ssaidi@eecs.umich.eduuse_env = {} 1864841Ssaidi@eecs.umich.edufor key,val in os.environ.iteritems(): 1874841Ssaidi@eecs.umich.edu if key in use_vars or key.startswith("M5"): 1884841Ssaidi@eecs.umich.edu use_env[key] = val 1894841Ssaidi@eecs.umich.edu 1904841Ssaidi@eecs.umich.edumain = Environment(ENV=use_env) 1914841Ssaidi@eecs.umich.edumain.Decider('MD5-timestamp') 1924841Ssaidi@eecs.umich.edumain.root = Dir(".") # The current directory (where this file lives). 1934841Ssaidi@eecs.umich.edumain.srcdir = Dir("src") # The source directory 1944841Ssaidi@eecs.umich.edu 1954841Ssaidi@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses 1964841Ssaidi@eecs.umich.edu# as well 197217SN/Amain.AppendENVPath('PYTHONPATH', extra_python_paths) 198217SN/A 199217SN/A######################################################################## 200237SN/A# 201502SN/A# Mercurial Stuff. 2022SN/A# 203217SN/A# If the gem5 directory is a mercurial repository, we should do some 204237SN/A# extra things. 205217SN/A# 206217SN/A######################################################################## 2072SN/A 2082SN/Ahgdir = main.root.Dir(".hg") 209217SN/A 210217SN/Amercurial_style_message = """ 211217SN/AYou're missing the gem5 style hook, which automatically checks your code 212217SN/Aagainst the gem5 style rules on hg commit and qrefresh commands. This 213217SN/Ascript will now install the hook in your .hg/hgrc file. 214217SN/APress enter to continue, or ctrl-c to abort: """ 215217SN/A 216217SN/Amercurial_style_hook = """ 217217SN/A# The following lines were automatically added by gem5/SConstruct 218217SN/A# to provide the gem5 style-checking hooks 219217SN/A[extensions] 220217SN/Astyle = %s/util/style.py 221217SN/A 222217SN/A[hooks] 223217SN/Apretxncommit.style = python:style.check_style 224217SN/Apre-qrefresh.style = python:style.check_style 225217SN/A# End of SConstruct additions 226217SN/A 227217SN/A""" % (main.root.abspath) 228237SN/A 229217SN/Amercurial_lib_not_found = """ 230217SN/AMercurial libraries cannot be found, ignoring style hook. If 231217SN/Ayou are a gem5 developer, please fix this and run the style 232237SN/Ahook. It is important. 233217SN/A""" 234217SN/A 235217SN/A# Check for style hook and prompt for installation if it's not there. 236217SN/A# Skip this if --ignore-style was specified, there's no .hg dir to 237217SN/A# install a hook in, or there's no interactive terminal to prompt. 238217SN/Aif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty(): 239217SN/A style_hook = True 240217SN/A try: 241217SN/A from mercurial import ui 242217SN/A ui = ui.ui() 243217SN/A ui.readconfig(hgdir.File('hgrc').abspath) 244217SN/A style_hook = ui.config('hooks', 'pretxncommit.style', None) and \ 245217SN/A ui.config('hooks', 'pre-qrefresh.style', None) 246217SN/A except ImportError: 247217SN/A print mercurial_lib_not_found 248217SN/A 249217SN/A if not style_hook: 250217SN/A print mercurial_style_message, 251217SN/A # continue unless user does ctrl-c/ctrl-d etc. 252217SN/A try: 253217SN/A raw_input() 254217SN/A except: 255217SN/A print "Input exception, exiting scons.\n" 256217SN/A sys.exit(1) 257217SN/A hgrc_path = '%s/.hg/hgrc' % main.root.abspath 258217SN/A print "Adding style hook to", hgrc_path, "\n" 259217SN/A try: 260217SN/A hgrc = open(hgrc_path, 'a') 261217SN/A hgrc.write(mercurial_style_hook) 262217SN/A hgrc.close() 263217SN/A except: 264217SN/A print "Error updating", hgrc_path 265217SN/A sys.exit(1) 266217SN/A 267217SN/A 268217SN/A################################################### 269217SN/A# 2704841Ssaidi@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of 2714841Ssaidi@eecs.umich.edu# the target(s). 2724841Ssaidi@eecs.umich.edu# 2734841Ssaidi@eecs.umich.edu################################################### 2744841Ssaidi@eecs.umich.edu 2754841Ssaidi@eecs.umich.edu# Find default configuration & binary. 2764841Ssaidi@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 2774841Ssaidi@eecs.umich.edu 2784841Ssaidi@eecs.umich.edu# helper function: find last occurrence of element in list 2794841Ssaidi@eecs.umich.edudef rfind(l, elt, offs = -1): 2804841Ssaidi@eecs.umich.edu for i in range(len(l)+offs, 0, -1): 2814841Ssaidi@eecs.umich.edu if l[i] == elt: 2824841Ssaidi@eecs.umich.edu return i 2834841Ssaidi@eecs.umich.edu raise ValueError, "element not found" 2844841Ssaidi@eecs.umich.edu 2854841Ssaidi@eecs.umich.edu# Take a list of paths (or SCons Nodes) and return a list with all 2864841Ssaidi@eecs.umich.edu# paths made absolute and ~-expanded. Paths will be interpreted 2874841Ssaidi@eecs.umich.edu# relative to the launch directory unless a different root is provided 2884841Ssaidi@eecs.umich.edudef makePathListAbsolute(path_list, root=GetLaunchDir()): 2894841Ssaidi@eecs.umich.edu return [abspath(joinpath(root, expanduser(str(p)))) 2904841Ssaidi@eecs.umich.edu for p in path_list] 2914841Ssaidi@eecs.umich.edu 2924841Ssaidi@eecs.umich.edu# Each target must have 'build' in the interior of the path; the 2934841Ssaidi@eecs.umich.edu# directory below this will determine the build parameters. For 2944841Ssaidi@eecs.umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 2954841Ssaidi@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it 2964841Ssaidi@eecs.umich.edu# follow 'build' in the build path. 2974841Ssaidi@eecs.umich.edu 2984841Ssaidi@eecs.umich.edu# The funky assignment to "[:]" is needed to replace the list contents 2994841Ssaidi@eecs.umich.edu# in place rather than reassign the symbol to a new list, which 3004841Ssaidi@eecs.umich.edu# doesn't work (obviously!). 3014841Ssaidi@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 3024841Ssaidi@eecs.umich.edu 3034841Ssaidi@eecs.umich.edu# Generate a list of the unique build roots and configs that the 3044841Ssaidi@eecs.umich.edu# collected targets reference. 3054841Ssaidi@eecs.umich.eduvariant_paths = [] 3064841Ssaidi@eecs.umich.edubuild_root = None 3074841Ssaidi@eecs.umich.edufor t in BUILD_TARGETS: 3084841Ssaidi@eecs.umich.edu path_dirs = t.split('/') 3094841Ssaidi@eecs.umich.edu try: 3104841Ssaidi@eecs.umich.edu build_top = rfind(path_dirs, 'build', -2) 3114841Ssaidi@eecs.umich.edu except: 3124841Ssaidi@eecs.umich.edu print "Error: no non-leaf 'build' dir found on target path", t 313217SN/A Exit(1) 314237SN/A this_build_root = joinpath('/',*path_dirs[:build_top+1]) 315237SN/A if not build_root: 3164000Ssaidi@eecs.umich.edu build_root = this_build_root 317237SN/A else: 318237SN/A if this_build_root != build_root: 319237SN/A print "Error: build targets not under same build root\n"\ 320237SN/A " %s\n %s" % (build_root, this_build_root) 321237SN/A Exit(1) 322237SN/A variant_path = joinpath('/',*path_dirs[:build_top+2]) 323237SN/A if variant_path not in variant_paths: 3245543Ssaidi@eecs.umich.edu variant_paths.append(variant_path) 3255543Ssaidi@eecs.umich.edu 3265543Ssaidi@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there) 3275543Ssaidi@eecs.umich.eduif not isdir(build_root): 3285543Ssaidi@eecs.umich.edu mkdir(build_root) 3295543Ssaidi@eecs.umich.edumain['BUILDROOT'] = build_root 3305543Ssaidi@eecs.umich.edu 3315543Ssaidi@eecs.umich.eduExport('main') 3325543Ssaidi@eecs.umich.edu 3335543Ssaidi@eecs.umich.edumain.SConsignFile(joinpath(build_root, "sconsign")) 3345543Ssaidi@eecs.umich.edu 3354841Ssaidi@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up 3365543Ssaidi@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves 3375543Ssaidi@eecs.umich.edu# file to file~ then copies to file, breaking the link. Symbolic 3385543Ssaidi@eecs.umich.edu# (soft) links work better. 3395543Ssaidi@eecs.umich.edumain.SetOption('duplicate', 'soft-copy') 3405543Ssaidi@eecs.umich.edu 3414841Ssaidi@eecs.umich.edu# 342217SN/A# Set up global sticky variables... these are common to an entire build 3431642SN/A# tree (not specific to a particular build like ALPHA_SE) 3441642SN/A# 3451642SN/A 3461642SN/Aglobal_vars_file = joinpath(build_root, 'variables.global') 3471642SN/A 3481642SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 3491642SN/A 3501642SN/Aglobal_vars.AddVariables( 3511642SN/A ('CC', 'C compiler', environ.get('CC', main['CC'])), 3521642SN/A ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 353219SN/A ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])), 354217SN/A ('BATCH', 'Use batch pool for build and tests', False), 355217SN/A ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 356217SN/A ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 357395SN/A ('EXTRAS', 'Add extra directories to the compilation', '') 358395SN/A ) 359395SN/A 360395SN/A# Update main environment with values from ARGUMENTS & global_vars_file 361395SN/Aglobal_vars.Update(main) 3622SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 363395SN/A 364512SN/A# Save sticky variable settings back to current variables file 365510SN/Aglobal_vars.Save(global_vars_file, main) 366395SN/A 367395SN/A# Parse EXTRAS variable to build list of all directories where we're 3682SN/A# look for sources etc. This list is exported as extras_dir_list. 369395SN/Abase_dir = main.srcdir.abspath 370395SN/Aif main['EXTRAS']: 3712SN/A extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 372512SN/Aelse: 373395SN/A extras_dir_list = [] 3742SN/A 375395SN/AExport('base_dir') 3762SN/AExport('extras_dir_list') 3772SN/A 3782SN/A# the ext directory should be on the #includes path 379510SN/Amain.Append(CPPPATH=[Dir('ext')]) 3802SN/A 381395SN/Adef strip_build_path(path, env): 382395SN/A path = str(path) 383395SN/A variant_base = env['BUILDROOT'] + os.path.sep 384395SN/A if path.startswith(variant_base): 385395SN/A path = path[len(variant_base):] 3862SN/A elif path.startswith('build/'): 3872SN/A path = path[6:] 3882SN/A return path 389395SN/A 3902SN/A# Generate a string of the form: 391395SN/A# common/path/prefix/src1, src2 -> tgt1, tgt2 392395SN/A# to print while building. 3932SN/Aclass Transform(object): 394395SN/A # all specific color settings should be here and nowhere else 3952SN/A tool_color = termcap.Normal 3962SN/A pfx_color = termcap.Yellow 3972SN/A srcs_color = termcap.Yellow + termcap.Bold 3982868Sktlim@umich.edu arrow_color = termcap.Blue + termcap.Bold 3992SN/A tgts_color = termcap.Yellow + termcap.Bold 4002868Sktlim@umich.edu 401449SN/A def __init__(self, tool, max_sources=99): 402363SN/A self.format = self.tool_color + (" [%8s] " % tool) \ 403449SN/A + self.pfx_color + "%s" \ 404363SN/A + self.srcs_color + "%s" \ 405449SN/A + self.arrow_color + " -> " \ 406395SN/A + self.tgts_color + "%s" \ 4072SN/A + termcap.Normal 4085581Ssaidi@eecs.umich.edu self.max_sources = max_sources 4095581Ssaidi@eecs.umich.edu 410395SN/A def __call__(self, target, source, env, for_signature=None): 4112SN/A # truncate source list according to max_sources param 412395SN/A source = source[0:self.max_sources] 413395SN/A def strip(f): 414395SN/A return strip_build_path(str(f), env) 4152SN/A if len(source) > 0: 4162797Sktlim@umich.edu srcs = map(strip, source) 4172868Sktlim@umich.edu else: 4182797Sktlim@umich.edu srcs = [''] 4192868Sktlim@umich.edu tgts = map(strip, target) 4202797Sktlim@umich.edu # surprisingly, os.path.commonprefix is a dumb char-by-char string 4212797Sktlim@umich.edu # operation that has nothing to do with paths. 4222797Sktlim@umich.edu com_pfx = os.path.commonprefix(srcs + tgts) 4232797Sktlim@umich.edu com_pfx_len = len(com_pfx) 4242797Sktlim@umich.edu if com_pfx: 4252797Sktlim@umich.edu # do some cleanup and sanity checking on common prefix 4262797Sktlim@umich.edu if com_pfx[-1] == ".": 4272797Sktlim@umich.edu # prefix matches all but file extension: ok 4282797Sktlim@umich.edu # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 4292797Sktlim@umich.edu com_pfx = com_pfx[0:-1] 4302SN/A elif com_pfx[-1] == "/": 431395SN/A # common prefix is directory path: OK 432395SN/A pass 433395SN/A else: 434395SN/A src0_len = len(srcs[0]) 435395SN/A tgt0_len = len(tgts[0]) 4362SN/A if src0_len == com_pfx_len: 437449SN/A # source is a substring of target, OK 438449SN/A pass 439449SN/A elif tgt0_len == com_pfx_len: 440294SN/A # target is a substring of source, need to back up to 4412797Sktlim@umich.edu # avoid empty string on RHS of arrow 4422797Sktlim@umich.edu sep_idx = com_pfx.rfind(".") 4432797Sktlim@umich.edu if sep_idx != -1: 4442797Sktlim@umich.edu com_pfx = com_pfx[0:sep_idx] 4452797Sktlim@umich.edu else: 4462797Sktlim@umich.edu com_pfx = '' 4472797Sktlim@umich.edu elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 4482797Sktlim@umich.edu # still splitting at file extension: ok 449294SN/A pass 450449SN/A else: 451294SN/A # probably a fluke; ignore it 452449SN/A com_pfx = '' 453449SN/A # recalculate length in case com_pfx was modified 454449SN/A com_pfx_len = len(com_pfx) 455449SN/A def fmt(files): 4562SN/A f = map(lambda s: s[com_pfx_len:], files) 4572SN/A return ', '.join(f) 4582SN/A return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 4592868Sktlim@umich.edu 4602SN/AExport('Transform') 4612868Sktlim@umich.edu 4622SN/A# enable the regression script to use the termcap 4632SN/Amain['TERMCAP'] = termcap 4642SN/A 4652SN/Aif GetOption('verbose'): 4662SN/A def MakeAction(action, string, *args, **kwargs): 467395SN/A return Action(action, *args, **kwargs) 4682SN/Aelse: 4692SN/A MakeAction = Action 4702SN/A main['CCCOMSTR'] = Transform("CC") 471395SN/A main['CXXCOMSTR'] = Transform("CXX") 4722SN/A main['ASCOMSTR'] = Transform("AS") 473395SN/A main['SWIGCOMSTR'] = Transform("SWIG") 4742SN/A main['ARCOMSTR'] = Transform("AR", 0) 475395SN/A main['LINKCOMSTR'] = Transform("LINK", 0) 4762SN/A main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 477395SN/A main['M4COMSTR'] = Transform("M4") 478395SN/A main['SHCCCOMSTR'] = Transform("SHCC") 4792SN/A main['SHCXXCOMSTR'] = Transform("SHCXX") 4802SN/AExport('MakeAction') 4812SN/A 482395SN/A# Initialize the Link-Time Optimization (LTO) flags 4832SN/Amain['LTO_CCFLAGS'] = [] 4842SN/Amain['LTO_LDFLAGS'] = [] 4852SN/A 4862SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False) 4872SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False) 4882SN/A 4892SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 4902SN/Amain['SUNCC'] = CXX_V and CXX_V.find('Sun C++') >= 0 4912SN/Amain['ICC'] = CXX_V and CXX_V.find('Intel') >= 0 4922SN/Amain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 4932SN/Aif main['GCC'] + main['SUNCC'] + main['ICC'] + main['CLANG'] > 1: 4942SN/A print 'Error: How can we have two at the same time?' 4952SN/A Exit(1) 4962SN/A 4972SN/A# Set up default C++ compiler flags 498395SN/Aif main['GCC']: 499395SN/A main.Append(CCFLAGS=['-pipe']) 500237SN/A main.Append(CCFLAGS=['-fno-strict-aliasing']) 5012SN/A main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef']) 502237SN/A # Read the GCC version to check for versions with bugs 5032SN/A # Note CCVERSION doesn't work here because it is run with the CC 504237SN/A # before we override it from the command line 505395SN/A gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 506237SN/A main['GCC_VERSION'] = gcc_version 5072SN/A if not compareVersions(gcc_version, '4.4.1') or \ 5082SN/A not compareVersions(gcc_version, '4.4.2'): 509237SN/A print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.' 510237SN/A main.Append(CCFLAGS=['-fno-tree-vectorize']) 511237SN/A # c++0x support in gcc is useful already from 4.4, see 512395SN/A # http://gcc.gnu.org/projects/cxx0x.html for details 513237SN/A if compareVersions(gcc_version, '4.4') >= 0: 5142SN/A main.Append(CXXFLAGS=['-std=c++0x']) 5152SN/A 516395SN/A # LTO support is only really working properly from 4.6 and beyond 5172SN/A if compareVersions(gcc_version, '4.6') >= 0: 5182SN/A # Add the appropriate Link-Time Optimization (LTO) flags 5192SN/A # unless LTO is explicitly turned off. Note that these flags 5202SN/A # are only used by the fast target. 5212SN/A if not GetOption('no_lto'): 5222SN/A # Pass the LTO flag when compiling to produce GIMPLE 523237SN/A # output, we merely create the flags here and only append 524395SN/A # them later/ 525395SN/A main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 526237SN/A 527395SN/A # Use the same amount of jobs for LTO as we are running 528237SN/A # scons with, we hardcode the use of the linker plugin 529237SN/A # which requires either gold or GNU ld >= 2.21 530237SN/A main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs'), 531237SN/A '-fuse-linker-plugin'] 532237SN/A 5332738Sstever@eecs.umich.eduelif main['ICC']: 5342738Sstever@eecs.umich.edu pass #Fix me... add warning flags once we clean up icc warnings 535237SN/Aelif main['SUNCC']: 536449SN/A main.Append(CCFLAGS=['-Qoption ccfe']) 537237SN/A main.Append(CCFLAGS=['-features=gcc']) 538237SN/A main.Append(CCFLAGS=['-features=extensions']) 539237SN/A main.Append(CCFLAGS=['-library=stlport4']) 540237SN/A main.Append(CCFLAGS=['-xar']) 541237SN/A #main.Append(CCFLAGS=['-instances=semiexplicit']) 542237SN/Aelif main['CLANG']: 543237SN/A clang_version_re = re.compile(".* version (\d+\.\d+)") 544237SN/A clang_version_match = clang_version_re.match(CXX_version) 545237SN/A if (clang_version_match): 546237SN/A clang_version = clang_version_match.groups()[0] 547237SN/A if compareVersions(clang_version, "2.9") < 0: 548237SN/A print 'Error: clang version 2.9 or newer required.' 549237SN/A print ' Installed version:', clang_version 550237SN/A Exit(1) 551237SN/A else: 552237SN/A print 'Error: Unable to determine clang version.' 5534000Ssaidi@eecs.umich.edu Exit(1) 554237SN/A 555237SN/A main.Append(CCFLAGS=['-pipe']) 556237SN/A main.Append(CCFLAGS=['-fno-strict-aliasing']) 557237SN/A main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef']) 558237SN/A main.Append(CCFLAGS=['-Wno-tautological-compare']) 559237SN/A main.Append(CCFLAGS=['-Wno-self-assign']) 5604000Ssaidi@eecs.umich.edu # Ruby makes frequent use of extraneous parantheses in the printing 5614000Ssaidi@eecs.umich.edu # of if-statements 562237SN/A main.Append(CCFLAGS=['-Wno-parentheses']) 563304SN/A 564304SN/A # clang 2.9 does not play well with c++0x as it ships with C++ 565304SN/A # headers that produce errors, this was fixed in 3.0 566304SN/A if compareVersions(clang_version, "3") >= 0: 567304SN/A main.Append(CXXFLAGS=['-std=c++0x']) 568304SN/Aelse: 569304SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 570 print "Don't know what compiler options to use for your compiler." 571 print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 572 print termcap.Yellow + ' version:' + termcap.Normal, 573 if not CXX_version: 574 print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 575 termcap.Normal 576 else: 577 print CXX_version.replace('\n', '<nl>') 578 print " If you're trying to use a compiler other than GCC, ICC, SunCC," 579 print " or clang, there appears to be something wrong with your" 580 print " environment." 581 print " " 582 print " If you are trying to use a compiler other than those listed" 583 print " above you will need to ease fix SConstruct and " 584 print " src/SConscript to support that compiler." 585 Exit(1) 586 587# Set up common yacc/bison flags (needed for Ruby) 588main['YACCFLAGS'] = '-d' 589main['YACCHXXFILESUFFIX'] = '.hh' 590 591# Do this after we save setting back, or else we'll tack on an 592# extra 'qdo' every time we run scons. 593if main['BATCH']: 594 main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 595 main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 596 main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 597 main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 598 main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 599 600if sys.platform == 'cygwin': 601 # cygwin has some header file issues... 602 main.Append(CCFLAGS=["-Wno-uninitialized"]) 603 604# Check for SWIG 605if not main.has_key('SWIG'): 606 print 'Error: SWIG utility not found.' 607 print ' Please install (see http://www.swig.org) and retry.' 608 Exit(1) 609 610# Check for appropriate SWIG version 611swig_version = readCommand([main['SWIG'], '-version'], exception='').split() 612# First 3 words should be "SWIG Version x.y.z" 613if len(swig_version) < 3 or \ 614 swig_version[0] != 'SWIG' or swig_version[1] != 'Version': 615 print 'Error determining SWIG version.' 616 Exit(1) 617 618min_swig_version = '1.3.34' 619if compareVersions(swig_version[2], min_swig_version) < 0: 620 print 'Error: SWIG version', min_swig_version, 'or newer required.' 621 print ' Installed version:', swig_version[2] 622 Exit(1) 623 624# Set up SWIG flags & scanner 625swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS') 626main.Append(SWIGFLAGS=swig_flags) 627 628# filter out all existing swig scanners, they mess up the dependency 629# stuff for some reason 630scanners = [] 631for scanner in main['SCANNERS']: 632 skeys = scanner.skeys 633 if skeys == '.i': 634 continue 635 636 if isinstance(skeys, (list, tuple)) and '.i' in skeys: 637 continue 638 639 scanners.append(scanner) 640 641# add the new swig scanner that we like better 642from SCons.Scanner import ClassicCPP as CPPScanner 643swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")' 644scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re)) 645 646# replace the scanners list that has what we want 647main['SCANNERS'] = scanners 648 649# Add a custom Check function to the Configure context so that we can 650# figure out if the compiler adds leading underscores to global 651# variables. This is needed for the autogenerated asm files that we 652# use for embedding the python code. 653def CheckLeading(context): 654 context.Message("Checking for leading underscore in global variables...") 655 # 1) Define a global variable called x from asm so the C compiler 656 # won't change the symbol at all. 657 # 2) Declare that variable. 658 # 3) Use the variable 659 # 660 # If the compiler prepends an underscore, this will successfully 661 # link because the external symbol 'x' will be called '_x' which 662 # was defined by the asm statement. If the compiler does not 663 # prepend an underscore, this will not successfully link because 664 # '_x' will have been defined by assembly, while the C portion of 665 # the code will be trying to use 'x' 666 ret = context.TryLink(''' 667 asm(".globl _x; _x: .byte 0"); 668 extern int x; 669 int main() { return x; } 670 ''', extension=".c") 671 context.env.Append(LEADING_UNDERSCORE=ret) 672 context.Result(ret) 673 return ret 674 675# Platform-specific configuration. Note again that we assume that all 676# builds under a given build root run on the same host platform. 677conf = Configure(main, 678 conf_dir = joinpath(build_root, '.scons_config'), 679 log_file = joinpath(build_root, 'scons_config.log'), 680 custom_tests = { 'CheckLeading' : CheckLeading }) 681 682# Check for leading underscores. Don't really need to worry either 683# way so don't need to check the return code. 684conf.CheckLeading() 685 686# Check if we should compile a 64 bit binary on Mac OS X/Darwin 687try: 688 import platform 689 uname = platform.uname() 690 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 691 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 692 main.Append(CCFLAGS=['-arch', 'x86_64']) 693 main.Append(CFLAGS=['-arch', 'x86_64']) 694 main.Append(LINKFLAGS=['-arch', 'x86_64']) 695 main.Append(ASFLAGS=['-arch', 'x86_64']) 696except: 697 pass 698 699# Recent versions of scons substitute a "Null" object for Configure() 700# when configuration isn't necessary, e.g., if the "--help" option is 701# present. Unfortuantely this Null object always returns false, 702# breaking all our configuration checks. We replace it with our own 703# more optimistic null object that returns True instead. 704if not conf: 705 def NullCheck(*args, **kwargs): 706 return True 707 708 class NullConf: 709 def __init__(self, env): 710 self.env = env 711 def Finish(self): 712 return self.env 713 def __getattr__(self, mname): 714 return NullCheck 715 716 conf = NullConf(main) 717 718# Find Python include and library directories for embedding the 719# interpreter. For consistency, we will use the same Python 720# installation used to run scons (and thus this script). If you want 721# to link in an alternate version, see above for instructions on how 722# to invoke scons with a different copy of the Python interpreter. 723from distutils import sysconfig 724 725py_getvar = sysconfig.get_config_var 726 727py_debug = getattr(sys, 'pydebug', False) 728py_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "") 729 730py_general_include = sysconfig.get_python_inc() 731py_platform_include = sysconfig.get_python_inc(plat_specific=True) 732py_includes = [ py_general_include ] 733if py_platform_include != py_general_include: 734 py_includes.append(py_platform_include) 735 736py_lib_path = [ py_getvar('LIBDIR') ] 737# add the prefix/lib/pythonX.Y/config dir, but only if there is no 738# shared library in prefix/lib/. 739if not py_getvar('Py_ENABLE_SHARED'): 740 py_lib_path.append(py_getvar('LIBPL')) 741 742py_libs = [] 743for lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split(): 744 if not lib.startswith('-l'): 745 # Python requires some special flags to link (e.g. -framework 746 # common on OS X systems), assume appending preserves order 747 main.Append(LINKFLAGS=[lib]) 748 else: 749 lib = lib[2:] 750 if lib not in py_libs: 751 py_libs.append(lib) 752py_libs.append(py_version) 753 754main.Append(CPPPATH=py_includes) 755main.Append(LIBPATH=py_lib_path) 756 757# Cache build files in the supplied directory. 758if main['M5_BUILD_CACHE']: 759 print 'Using build cache located at', main['M5_BUILD_CACHE'] 760 CacheDir(main['M5_BUILD_CACHE']) 761 762 763# verify that this stuff works 764if not conf.CheckHeader('Python.h', '<>'): 765 print "Error: can't find Python.h header in", py_includes 766 Exit(1) 767 768for lib in py_libs: 769 if not conf.CheckLib(lib): 770 print "Error: can't find library %s required by python" % lib 771 Exit(1) 772 773# On Solaris you need to use libsocket for socket ops 774if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 775 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 776 print "Can't find library with socket calls (e.g. accept())" 777 Exit(1) 778 779# Check for zlib. If the check passes, libz will be automatically 780# added to the LIBS environment variable. 781if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 782 print 'Error: did not find needed zlib compression library '\ 783 'and/or zlib.h header file.' 784 print ' Please install zlib and try again.' 785 Exit(1) 786 787# Check for librt. 788have_posix_clock = \ 789 conf.CheckLibWithHeader(None, 'time.h', 'C', 790 'clock_nanosleep(0,0,NULL,NULL);') or \ 791 conf.CheckLibWithHeader('rt', 'time.h', 'C', 792 'clock_nanosleep(0,0,NULL,NULL);') 793 794if conf.CheckLib('tcmalloc_minimal'): 795 have_tcmalloc = True 796else: 797 have_tcmalloc = False 798 print termcap.Yellow + termcap.Bold + \ 799 "You can get a 12% performance improvement by installing tcmalloc "\ 800 "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \ 801 termcap.Normal 802 803if not have_posix_clock: 804 print "Can't find library for POSIX clocks." 805 806# Check for <fenv.h> (C99 FP environment control) 807have_fenv = conf.CheckHeader('fenv.h', '<>') 808if not have_fenv: 809 print "Warning: Header file <fenv.h> not found." 810 print " This host has no IEEE FP rounding mode control." 811 812###################################################################### 813# 814# Finish the configuration 815# 816main = conf.Finish() 817 818###################################################################### 819# 820# Collect all non-global variables 821# 822 823# Define the universe of supported ISAs 824all_isa_list = [ ] 825Export('all_isa_list') 826 827class CpuModel(object): 828 '''The CpuModel class encapsulates everything the ISA parser needs to 829 know about a particular CPU model.''' 830 831 # Dict of available CPU model objects. Accessible as CpuModel.dict. 832 dict = {} 833 list = [] 834 defaults = [] 835 836 # Constructor. Automatically adds models to CpuModel.dict. 837 def __init__(self, name, filename, includes, strings, default=False): 838 self.name = name # name of model 839 self.filename = filename # filename for output exec code 840 self.includes = includes # include files needed in exec file 841 # The 'strings' dict holds all the per-CPU symbols we can 842 # substitute into templates etc. 843 self.strings = strings 844 845 # This cpu is enabled by default 846 self.default = default 847 848 # Add self to dict 849 if name in CpuModel.dict: 850 raise AttributeError, "CpuModel '%s' already registered" % name 851 CpuModel.dict[name] = self 852 CpuModel.list.append(name) 853 854Export('CpuModel') 855 856# Sticky variables get saved in the variables file so they persist from 857# one invocation to the next (unless overridden, in which case the new 858# value becomes sticky). 859sticky_vars = Variables(args=ARGUMENTS) 860Export('sticky_vars') 861 862# Sticky variables that should be exported 863export_vars = [] 864Export('export_vars') 865 866# For Ruby 867all_protocols = [] 868Export('all_protocols') 869protocol_dirs = [] 870Export('protocol_dirs') 871slicc_includes = [] 872Export('slicc_includes') 873 874# Walk the tree and execute all SConsopts scripts that wil add to the 875# above variables 876if not GetOption('verbose'): 877 print "Reading SConsopts" 878for bdir in [ base_dir ] + extras_dir_list: 879 if not isdir(bdir): 880 print "Error: directory '%s' does not exist" % bdir 881 Exit(1) 882 for root, dirs, files in os.walk(bdir): 883 if 'SConsopts' in files: 884 if GetOption('verbose'): 885 print "Reading", joinpath(root, 'SConsopts') 886 SConscript(joinpath(root, 'SConsopts')) 887 888all_isa_list.sort() 889 890sticky_vars.AddVariables( 891 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 892 ListVariable('CPU_MODELS', 'CPU models', 893 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 894 sorted(CpuModel.list)), 895 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 896 False), 897 BoolVariable('SS_COMPATIBLE_FP', 898 'Make floating-point results compatible with SimpleScalar', 899 False), 900 BoolVariable('USE_SSE2', 901 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 902 False), 903 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 904 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 905 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 906 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 907 all_protocols), 908 ) 909 910# These variables get exported to #defines in config/*.hh (see src/SConscript). 911export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 912 'TARGET_ISA', 'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'PROTOCOL', 913 ] 914 915################################################### 916# 917# Define a SCons builder for configuration flag headers. 918# 919################################################### 920 921# This function generates a config header file that #defines the 922# variable symbol to the current variable setting (0 or 1). The source 923# operands are the name of the variable and a Value node containing the 924# value of the variable. 925def build_config_file(target, source, env): 926 (variable, value) = [s.get_contents() for s in source] 927 f = file(str(target[0]), 'w') 928 print >> f, '#define', variable, value 929 f.close() 930 return None 931 932# Combine the two functions into a scons Action object. 933config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 934 935# The emitter munges the source & target node lists to reflect what 936# we're really doing. 937def config_emitter(target, source, env): 938 # extract variable name from Builder arg 939 variable = str(target[0]) 940 # True target is config header file 941 target = joinpath('config', variable.lower() + '.hh') 942 val = env[variable] 943 if isinstance(val, bool): 944 # Force value to 0/1 945 val = int(val) 946 elif isinstance(val, str): 947 val = '"' + val + '"' 948 949 # Sources are variable name & value (packaged in SCons Value nodes) 950 return ([target], [Value(variable), Value(val)]) 951 952config_builder = Builder(emitter = config_emitter, action = config_action) 953 954main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 955 956# libelf build is shared across all configs in the build root. 957main.SConscript('ext/libelf/SConscript', 958 variant_dir = joinpath(build_root, 'libelf')) 959 960# gzstream build is shared across all configs in the build root. 961main.SConscript('ext/gzstream/SConscript', 962 variant_dir = joinpath(build_root, 'gzstream')) 963 964################################################### 965# 966# This function is used to set up a directory with switching headers 967# 968################################################### 969 970main['ALL_ISA_LIST'] = all_isa_list 971def make_switching_dir(dname, switch_headers, env): 972 # Generate the header. target[0] is the full path of the output 973 # header to generate. 'source' is a dummy variable, since we get the 974 # list of ISAs from env['ALL_ISA_LIST']. 975 def gen_switch_hdr(target, source, env): 976 fname = str(target[0]) 977 f = open(fname, 'w') 978 isa = env['TARGET_ISA'].lower() 979 print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname)) 980 f.close() 981 982 # Build SCons Action object. 'varlist' specifies env vars that this 983 # action depends on; when env['ALL_ISA_LIST'] changes these actions 984 # should get re-executed. 985 switch_hdr_action = MakeAction(gen_switch_hdr, 986 Transform("GENERATE"), varlist=['ALL_ISA_LIST']) 987 988 # Instantiate actions for each header 989 for hdr in switch_headers: 990 env.Command(hdr, [], switch_hdr_action) 991Export('make_switching_dir') 992 993################################################### 994# 995# Define build environments for selected configurations. 996# 997################################################### 998 999for variant_path in variant_paths: 1000 print "Building in", variant_path 1001 1002 # Make a copy of the build-root environment to use for this config. 1003 env = main.Clone() 1004 env['BUILDDIR'] = variant_path 1005 1006 # variant_dir is the tail component of build path, and is used to 1007 # determine the build parameters (e.g., 'ALPHA_SE') 1008 (build_root, variant_dir) = splitpath(variant_path) 1009 1010 # Set env variables according to the build directory config. 1011 sticky_vars.files = [] 1012 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1013 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1014 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1015 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1016 if isfile(current_vars_file): 1017 sticky_vars.files.append(current_vars_file) 1018 print "Using saved variables file %s" % current_vars_file 1019 else: 1020 # Build dir-specific variables file doesn't exist. 1021 1022 # Make sure the directory is there so we can create it later 1023 opt_dir = dirname(current_vars_file) 1024 if not isdir(opt_dir): 1025 mkdir(opt_dir) 1026 1027 # Get default build variables from source tree. Variables are 1028 # normally determined by name of $VARIANT_DIR, but can be 1029 # overridden by '--default=' arg on command line. 1030 default = GetOption('default') 1031 opts_dir = joinpath(main.root.abspath, 'build_opts') 1032 if default: 1033 default_vars_files = [joinpath(build_root, 'variables', default), 1034 joinpath(opts_dir, default)] 1035 else: 1036 default_vars_files = [joinpath(opts_dir, variant_dir)] 1037 existing_files = filter(isfile, default_vars_files) 1038 if existing_files: 1039 default_vars_file = existing_files[0] 1040 sticky_vars.files.append(default_vars_file) 1041 print "Variables file %s not found,\n using defaults in %s" \ 1042 % (current_vars_file, default_vars_file) 1043 else: 1044 print "Error: cannot find variables file %s or " \ 1045 "default file(s) %s" \ 1046 % (current_vars_file, ' or '.join(default_vars_files)) 1047 Exit(1) 1048 1049 # Apply current variable settings to env 1050 sticky_vars.Update(env) 1051 1052 help_texts["local_vars"] += \ 1053 "Build variables for %s:\n" % variant_dir \ 1054 + sticky_vars.GenerateHelpText(env) 1055 1056 # Process variable settings. 1057 1058 if not have_fenv and env['USE_FENV']: 1059 print "Warning: <fenv.h> not available; " \ 1060 "forcing USE_FENV to False in", variant_dir + "." 1061 env['USE_FENV'] = False 1062 1063 if not env['USE_FENV']: 1064 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1065 print " FP results may deviate slightly from other platforms." 1066 1067 if env['EFENCE']: 1068 env.Append(LIBS=['efence']) 1069 1070 # Save sticky variable settings back to current variables file 1071 sticky_vars.Save(current_vars_file, env) 1072 1073 if env['USE_SSE2']: 1074 env.Append(CCFLAGS=['-msse2']) 1075 1076 if have_tcmalloc: 1077 env.Append(LIBS=['tcmalloc_minimal']) 1078 1079 # The src/SConscript file sets up the build rules in 'env' according 1080 # to the configured variables. It returns a list of environments, 1081 # one for each variant build (debug, opt, etc.) 1082 envList = SConscript('src/SConscript', variant_dir = variant_path, 1083 exports = 'env') 1084 1085 # Set up the regression tests for each build. 1086 for e in envList: 1087 SConscript('tests/SConscript', 1088 variant_dir = joinpath(variant_path, 'tests', e.Label), 1089 exports = { 'env' : e }, duplicate = False) 1090 1091# base help text 1092Help(''' 1093Usage: scons [scons options] [build variables] [target(s)] 1094 1095Extra scons options: 1096%(options)s 1097 1098Global build variables: 1099%(global_vars)s 1100 1101%(local_vars)s 1102''' % help_texts) 1103