SConstruct revision 9883
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2013 ARM Limited 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# The license below extends only to copyright in the software and shall 7955SN/A# not be construed as granting a license to any other intellectual 8955SN/A# property including but not limited to intellectual property relating 9955SN/A# to a hardware implementation of the functionality of the software 10955SN/A# licensed hereunder. You may use the software subject to the license 11955SN/A# terms below provided that you ensure that this notice is replicated 12955SN/A# unmodified and in its entirety in all distributions of the software, 13955SN/A# modified or unmodified, in source code or in binary form. 14955SN/A# 15955SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc. 16955SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company 17955SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 18955SN/A# All rights reserved. 19955SN/A# 20955SN/A# Redistribution and use in source and binary forms, with or without 21955SN/A# modification, are permitted provided that the following conditions are 22955SN/A# met: redistributions of source code must retain the above copyright 23955SN/A# notice, this list of conditions and the following disclaimer; 24955SN/A# redistributions in binary form must reproduce the above copyright 25955SN/A# notice, this list of conditions and the following disclaimer in the 26955SN/A# documentation and/or other materials provided with the distribution; 27955SN/A# neither the name of the copyright holders nor the names of its 282665Ssaidi@eecs.umich.edu# contributors may be used to endorse or promote products derived from 292665Ssaidi@eecs.umich.edu# this software without specific prior written permission. 30955SN/A# 31955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 32955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 33955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 34955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 352632Sstever@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 362632Sstever@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 372632Sstever@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 382632Sstever@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 39955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 402632Sstever@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 412632Sstever@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 422761Sstever@eecs.umich.edu# 432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt 442632Sstever@eecs.umich.edu# Nathan Binkert 452632Sstever@eecs.umich.edu 462761Sstever@eecs.umich.edu################################################### 472761Sstever@eecs.umich.edu# 482761Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file. 492632Sstever@eecs.umich.edu# 502632Sstever@eecs.umich.edu# While in this directory ('gem5'), just type 'scons' to build the default 512761Sstever@eecs.umich.edu# configuration (see below), or type 'scons build/<CONFIG>/<binary>' 522761Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for 532761Sstever@eecs.umich.edu# the optimized full-system version). 542761Sstever@eecs.umich.edu# 552761Sstever@eecs.umich.edu# You can build gem5 in a different directory as long as there is a 562632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path. The build system 572632Sstever@eecs.umich.edu# expects that all configs under the same build directory are being 582632Sstever@eecs.umich.edu# built for the same host system. 592632Sstever@eecs.umich.edu# 602632Sstever@eecs.umich.edu# Examples: 612632Sstever@eecs.umich.edu# 622632Sstever@eecs.umich.edu# The following two commands are equivalent. The '-u' option tells 63955SN/A# scons to search up the directory tree for this SConstruct file. 64955SN/A# % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug 65955SN/A# % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug 66955SN/A# 67955SN/A# The following two commands are equivalent and demonstrate building 68955SN/A# in a directory outside of the source tree. The '-C' option tells 69955SN/A# scons to chdir to the specified directory to find this SConstruct 702656Sstever@eecs.umich.edu# file. 712656Sstever@eecs.umich.edu# % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug 722656Sstever@eecs.umich.edu# % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug 732656Sstever@eecs.umich.edu# 742656Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options. If you're in this 752656Sstever@eecs.umich.edu# 'gem5' directory (or use -u or -C to tell scons where to find this 762656Sstever@eecs.umich.edu# file), you can use 'scons -h' to print all the gem5-specific build 772653Sstever@eecs.umich.edu# options as well. 782653Sstever@eecs.umich.edu# 792653Sstever@eecs.umich.edu################################################### 802653Sstever@eecs.umich.edu 812653Sstever@eecs.umich.edu# Check for recent-enough Python and SCons versions. 822653Sstever@eecs.umich.edutry: 832653Sstever@eecs.umich.edu # Really old versions of scons only take two options for the 842653Sstever@eecs.umich.edu # function, so check once without the revision and once with the 852653Sstever@eecs.umich.edu # revision, the first instance will fail for stuff other than 862653Sstever@eecs.umich.edu # 0.98, and the second will fail for 0.98.0 872653Sstever@eecs.umich.edu EnsureSConsVersion(0, 98) 881852SN/A EnsureSConsVersion(0, 98, 1) 89955SN/Aexcept SystemExit, e: 90955SN/A print """ 91955SN/AFor more details, see: 922632Sstever@eecs.umich.edu http://gem5.org/Dependencies 932632Sstever@eecs.umich.edu""" 94955SN/A raise 951533SN/A 962632Sstever@eecs.umich.edu# We ensure the python version early because because python-config 971533SN/A# requires python 2.5 98955SN/Atry: 99955SN/A EnsurePythonVersion(2, 5) 1002632Sstever@eecs.umich.eduexcept SystemExit, e: 1012632Sstever@eecs.umich.edu print """ 102955SN/AYou can use a non-default installation of the Python interpreter by 103955SN/Arearranging your PATH so that scons finds the non-default 'python' and 104955SN/A'python-config' first. 105955SN/A 1062632Sstever@eecs.umich.eduFor more details, see: 107955SN/A http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 1082632Sstever@eecs.umich.edu""" 109955SN/A raise 110955SN/A 1112632Sstever@eecs.umich.edu# Global Python includes 1122632Sstever@eecs.umich.eduimport os 1132632Sstever@eecs.umich.eduimport re 1142632Sstever@eecs.umich.eduimport subprocess 1152632Sstever@eecs.umich.eduimport sys 1162632Sstever@eecs.umich.edu 1172632Sstever@eecs.umich.edufrom os import mkdir, environ 1182632Sstever@eecs.umich.edufrom os.path import abspath, basename, dirname, expanduser, normpath 1192632Sstever@eecs.umich.edufrom os.path import exists, isdir, isfile 1202632Sstever@eecs.umich.edufrom os.path import join as joinpath, split as splitpath 1212632Sstever@eecs.umich.edu 1222632Sstever@eecs.umich.edu# SCons includes 1232632Sstever@eecs.umich.eduimport SCons 1242632Sstever@eecs.umich.eduimport SCons.Node 1252632Sstever@eecs.umich.edu 1262632Sstever@eecs.umich.eduextra_python_paths = [ 1272632Sstever@eecs.umich.edu Dir('src/python').srcnode().abspath, # gem5 includes 1282634Sstever@eecs.umich.edu Dir('ext/ply').srcnode().abspath, # ply is used by several files 1292634Sstever@eecs.umich.edu ] 1302632Sstever@eecs.umich.edu 1312638Sstever@eecs.umich.edusys.path[1:1] = extra_python_paths 1322632Sstever@eecs.umich.edu 1332632Sstever@eecs.umich.edufrom m5.util import compareVersions, readCommand 1342632Sstever@eecs.umich.edufrom m5.util.terminal import get_termcap 1352632Sstever@eecs.umich.edu 1362632Sstever@eecs.umich.eduhelp_texts = { 1372632Sstever@eecs.umich.edu "options" : "", 1381858SN/A "global_vars" : "", 1392638Sstever@eecs.umich.edu "local_vars" : "" 1402638Sstever@eecs.umich.edu} 1412638Sstever@eecs.umich.edu 1422638Sstever@eecs.umich.eduExport("help_texts") 1432638Sstever@eecs.umich.edu 1442638Sstever@eecs.umich.edu 1452638Sstever@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from 1462638Sstever@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h' 1472634Sstever@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the 1482634Sstever@eecs.umich.edu# Help() function, but these two features are incompatible: once 1492634Sstever@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get 150955SN/A# at the help texts from AddOptions. See: 151955SN/A# http://scons.tigris.org/issues/show_bug.cgi?id=2356 152955SN/A# http://scons.tigris.org/issues/show_bug.cgi?id=2611 153955SN/A# This hack lets us extract the help text from AddOptions and 154955SN/A# re-inject it via Help(). Ideally someday this bug will be fixed and 155955SN/A# we can just use AddOption directly. 156955SN/Adef AddLocalOption(*args, **kwargs): 157955SN/A col_width = 30 1581858SN/A 1591858SN/A help = " " + ", ".join(args) 1602632Sstever@eecs.umich.edu if "help" in kwargs: 161955SN/A length = len(help) 1622776Sstever@eecs.umich.edu if length >= col_width: 1631105SN/A help += "\n" + " " * col_width 1642667Sstever@eecs.umich.edu else: 1652667Sstever@eecs.umich.edu help += " " * (col_width - length) 1662667Sstever@eecs.umich.edu help += kwargs["help"] 1672667Sstever@eecs.umich.edu help_texts["options"] += help + "\n" 1682667Sstever@eecs.umich.edu 1692667Sstever@eecs.umich.edu AddOption(*args, **kwargs) 1701869SN/A 1711869SN/AAddLocalOption('--colors', dest='use_colors', action='store_true', 1721869SN/A help="Add color to abbreviated scons output") 1731869SN/AAddLocalOption('--no-colors', dest='use_colors', action='store_false', 1741869SN/A help="Don't add color to abbreviated scons output") 1751065SN/AAddLocalOption('--default', dest='default', type='string', action='store', 1762632Sstever@eecs.umich.edu help='Override which build_opts file to use for defaults') 1772632Sstever@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 178955SN/A help='Disable style checking hooks') 1791858SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true', 1801858SN/A help='Disable Link-Time Optimization for fast') 1811858SN/AAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1821858SN/A help='Update test reference outputs') 1831851SN/AAddLocalOption('--verbose', dest='verbose', action='store_true', 1841851SN/A help='Print full tool command lines') 1851858SN/A 1862632Sstever@eecs.umich.edutermcap = get_termcap(GetOption('use_colors')) 187955SN/A 1882656Sstever@eecs.umich.edu######################################################################## 1892656Sstever@eecs.umich.edu# 1902656Sstever@eecs.umich.edu# Set up the main build environment. 1912656Sstever@eecs.umich.edu# 1922656Sstever@eecs.umich.edu######################################################################## 1932656Sstever@eecs.umich.eduuse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 1942656Sstever@eecs.umich.edu 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH', 1952656Sstever@eecs.umich.edu 'RANLIB', 'SWIG' ]) 1962656Sstever@eecs.umich.edu 1972656Sstever@eecs.umich.eduuse_prefixes = [ 1982656Sstever@eecs.umich.edu "M5", # M5 configuration (e.g., path to kernels) 1992656Sstever@eecs.umich.edu "DISTCC_", # distcc (distributed compiler wrapper) configuration 2002656Sstever@eecs.umich.edu "CCACHE_", # ccache (caching compiler wrapper) configuration 2012656Sstever@eecs.umich.edu "CCC_", # clang static analyzer configuration 2022656Sstever@eecs.umich.edu ] 2032656Sstever@eecs.umich.edu 2042655Sstever@eecs.umich.eduuse_env = {} 2052667Sstever@eecs.umich.edufor key,val in os.environ.iteritems(): 2062667Sstever@eecs.umich.edu if key in use_vars or \ 2072667Sstever@eecs.umich.edu any([key.startswith(prefix) for prefix in use_prefixes]): 2082667Sstever@eecs.umich.edu use_env[key] = val 2092667Sstever@eecs.umich.edu 2102667Sstever@eecs.umich.edumain = Environment(ENV=use_env) 2112667Sstever@eecs.umich.edumain.Decider('MD5-timestamp') 2122667Sstever@eecs.umich.edumain.root = Dir(".") # The current directory (where this file lives). 2132667Sstever@eecs.umich.edumain.srcdir = Dir("src") # The source directory 2142667Sstever@eecs.umich.edu 2152667Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 2162667Sstever@eecs.umich.edu 2172667Sstever@eecs.umich.edu# Check that we have a C/C++ compiler 2182655Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 2191858SN/A print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 2201858SN/A Exit(1) 2212638Sstever@eecs.umich.edu 2222638Sstever@eecs.umich.edu# Check that swig is present 2232638Sstever@eecs.umich.eduif not 'SWIG' in main_dict_keys: 2242638Sstever@eecs.umich.edu print "swig is not installed (package swig on Ubuntu and RedHat)" 2252638Sstever@eecs.umich.edu Exit(1) 2261858SN/A 2271858SN/A# add useful python code PYTHONPATH so it can be used by subprocesses 2281858SN/A# as well 2291858SN/Amain.AppendENVPath('PYTHONPATH', extra_python_paths) 2301858SN/A 2311858SN/A######################################################################## 2321858SN/A# 2331859SN/A# Mercurial Stuff. 2341858SN/A# 2351858SN/A# If the gem5 directory is a mercurial repository, we should do some 2361858SN/A# extra things. 2371859SN/A# 2381859SN/A######################################################################## 2391862SN/A 2401862SN/Ahgdir = main.root.Dir(".hg") 2411862SN/A 2421862SN/Amercurial_style_message = """ 2431859SN/AYou're missing the gem5 style hook, which automatically checks your code 2441859SN/Aagainst the gem5 style rules on hg commit and qrefresh commands. This 2451963SN/Ascript will now install the hook in your .hg/hgrc file. 2461963SN/APress enter to continue, or ctrl-c to abort: """ 2471859SN/A 2481859SN/Amercurial_style_hook = """ 2491859SN/A# The following lines were automatically added by gem5/SConstruct 2501859SN/A# to provide the gem5 style-checking hooks 2511859SN/A[extensions] 2521859SN/Astyle = %s/util/style.py 2531859SN/A 2541859SN/A[hooks] 2551862SN/Apretxncommit.style = python:style.check_style 2561859SN/Apre-qrefresh.style = python:style.check_style 2571859SN/A# End of SConstruct additions 2581859SN/A 2591858SN/A""" % (main.root.abspath) 2601858SN/A 2612139SN/Amercurial_lib_not_found = """ 2622139SN/AMercurial libraries cannot be found, ignoring style hook. If 2632139SN/Ayou are a gem5 developer, please fix this and run the style 2642155SN/Ahook. It is important. 2652623SN/A""" 2662817Sksewell@umich.edu 2672792Sktlim@umich.edu# Check for style hook and prompt for installation if it's not there. 2682155SN/A# Skip this if --ignore-style was specified, there's no .hg dir to 2691869SN/A# install a hook in, or there's no interactive terminal to prompt. 2701869SN/Aif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty(): 2711869SN/A style_hook = True 2721869SN/A try: 2731869SN/A from mercurial import ui 2742139SN/A ui = ui.ui() 2751869SN/A ui.readconfig(hgdir.File('hgrc').abspath) 2762508SN/A style_hook = ui.config('hooks', 'pretxncommit.style', None) and \ 2772508SN/A ui.config('hooks', 'pre-qrefresh.style', None) 2782508SN/A except ImportError: 2792508SN/A print mercurial_lib_not_found 2802635Sstever@eecs.umich.edu 2812635Sstever@eecs.umich.edu if not style_hook: 2821869SN/A print mercurial_style_message, 2831869SN/A # continue unless user does ctrl-c/ctrl-d etc. 2841869SN/A try: 2851869SN/A raw_input() 2861869SN/A except: 2871869SN/A print "Input exception, exiting scons.\n" 2881869SN/A sys.exit(1) 2891869SN/A hgrc_path = '%s/.hg/hgrc' % main.root.abspath 2901965SN/A print "Adding style hook to", hgrc_path, "\n" 2911965SN/A try: 2921965SN/A hgrc = open(hgrc_path, 'a') 2931869SN/A hgrc.write(mercurial_style_hook) 2941869SN/A hgrc.close() 2952733Sktlim@umich.edu except: 2961869SN/A print "Error updating", hgrc_path 2971884SN/A sys.exit(1) 2981884SN/A 2991884SN/A 3001869SN/A################################################### 3011858SN/A# 3021869SN/A# Figure out which configurations to set up based on the path(s) of 3031869SN/A# the target(s). 3041869SN/A# 3051869SN/A################################################### 3061869SN/A 3071858SN/A# Find default configuration & binary. 3082761Sstever@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 3091869SN/A 3102733Sktlim@umich.edu# helper function: find last occurrence of element in list 3112733Sktlim@umich.edudef rfind(l, elt, offs = -1): 3121869SN/A for i in range(len(l)+offs, 0, -1): 3131869SN/A if l[i] == elt: 3141869SN/A return i 3151869SN/A raise ValueError, "element not found" 3161869SN/A 3171869SN/A# Take a list of paths (or SCons Nodes) and return a list with all 3181858SN/A# paths made absolute and ~-expanded. Paths will be interpreted 319955SN/A# relative to the launch directory unless a different root is provided 320955SN/Adef makePathListAbsolute(path_list, root=GetLaunchDir()): 3211869SN/A return [abspath(joinpath(root, expanduser(str(p)))) 3221869SN/A for p in path_list] 3231869SN/A 3241869SN/A# Each target must have 'build' in the interior of the path; the 3251869SN/A# directory below this will determine the build parameters. For 3261869SN/A# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 3271869SN/A# recognize that ALPHA_SE specifies the configuration because it 3281869SN/A# follow 'build' in the build path. 3291869SN/A 3301869SN/A# The funky assignment to "[:]" is needed to replace the list contents 3311869SN/A# in place rather than reassign the symbol to a new list, which 3321869SN/A# doesn't work (obviously!). 3331869SN/ABUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 3341869SN/A 3351869SN/A# Generate a list of the unique build roots and configs that the 3361869SN/A# collected targets reference. 3371869SN/Avariant_paths = [] 3381869SN/Abuild_root = None 3391869SN/Afor t in BUILD_TARGETS: 3401869SN/A path_dirs = t.split('/') 3411869SN/A try: 3421869SN/A build_top = rfind(path_dirs, 'build', -2) 3431869SN/A except: 3441869SN/A print "Error: no non-leaf 'build' dir found on target path", t 3451869SN/A Exit(1) 3461869SN/A this_build_root = joinpath('/',*path_dirs[:build_top+1]) 3471869SN/A if not build_root: 3481869SN/A build_root = this_build_root 3491869SN/A else: 3501869SN/A if this_build_root != build_root: 3511869SN/A print "Error: build targets not under same build root\n"\ 3521869SN/A " %s\n %s" % (build_root, this_build_root) 3531869SN/A Exit(1) 3541869SN/A variant_path = joinpath('/',*path_dirs[:build_top+2]) 3551869SN/A if variant_path not in variant_paths: 3561869SN/A variant_paths.append(variant_path) 3571869SN/A 3581869SN/A# Make sure build_root exists (might not if this is the first build there) 3591869SN/Aif not isdir(build_root): 3602655Sstever@eecs.umich.edu mkdir(build_root) 3612655Sstever@eecs.umich.edumain['BUILDROOT'] = build_root 3622655Sstever@eecs.umich.edu 3632655Sstever@eecs.umich.eduExport('main') 3642655Sstever@eecs.umich.edu 3652655Sstever@eecs.umich.edumain.SConsignFile(joinpath(build_root, "sconsign")) 3662655Sstever@eecs.umich.edu 3672655Sstever@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up 3682655Sstever@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves 3692655Sstever@eecs.umich.edu# file to file~ then copies to file, breaking the link. Symbolic 3702655Sstever@eecs.umich.edu# (soft) links work better. 3712655Sstever@eecs.umich.edumain.SetOption('duplicate', 'soft-copy') 3722655Sstever@eecs.umich.edu 3732655Sstever@eecs.umich.edu# 3742655Sstever@eecs.umich.edu# Set up global sticky variables... these are common to an entire build 3752655Sstever@eecs.umich.edu# tree (not specific to a particular build like ALPHA_SE) 3762655Sstever@eecs.umich.edu# 3772655Sstever@eecs.umich.edu 3782655Sstever@eecs.umich.eduglobal_vars_file = joinpath(build_root, 'variables.global') 3792655Sstever@eecs.umich.edu 3802655Sstever@eecs.umich.eduglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 3812655Sstever@eecs.umich.edu 3822655Sstever@eecs.umich.eduglobal_vars.AddVariables( 3832655Sstever@eecs.umich.edu ('CC', 'C compiler', environ.get('CC', main['CC'])), 3842655Sstever@eecs.umich.edu ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 3852655Sstever@eecs.umich.edu ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])), 3862634Sstever@eecs.umich.edu ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 3872634Sstever@eecs.umich.edu ('BATCH', 'Use batch pool for build and tests', False), 3882634Sstever@eecs.umich.edu ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 3892634Sstever@eecs.umich.edu ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 3902634Sstever@eecs.umich.edu ('EXTRAS', 'Add extra directories to the compilation', '') 3912634Sstever@eecs.umich.edu ) 3922638Sstever@eecs.umich.edu 3932638Sstever@eecs.umich.edu# Update main environment with values from ARGUMENTS & global_vars_file 3942638Sstever@eecs.umich.eduglobal_vars.Update(main) 3952638Sstever@eecs.umich.eduhelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 3962638Sstever@eecs.umich.edu 3971869SN/A# Save sticky variable settings back to current variables file 3981869SN/Aglobal_vars.Save(global_vars_file, main) 399955SN/A 400955SN/A# Parse EXTRAS variable to build list of all directories where we're 401955SN/A# look for sources etc. This list is exported as extras_dir_list. 402955SN/Abase_dir = main.srcdir.abspath 4031858SN/Aif main['EXTRAS']: 4041858SN/A extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 4051858SN/Aelse: 4062632Sstever@eecs.umich.edu extras_dir_list = [] 4072632Sstever@eecs.umich.edu 4082632Sstever@eecs.umich.eduExport('base_dir') 4092632Sstever@eecs.umich.eduExport('extras_dir_list') 4102632Sstever@eecs.umich.edu 4112634Sstever@eecs.umich.edu# the ext directory should be on the #includes path 4122638Sstever@eecs.umich.edumain.Append(CPPPATH=[Dir('ext')]) 4132023SN/A 4142632Sstever@eecs.umich.edudef strip_build_path(path, env): 4152632Sstever@eecs.umich.edu path = str(path) 4162632Sstever@eecs.umich.edu variant_base = env['BUILDROOT'] + os.path.sep 4172632Sstever@eecs.umich.edu if path.startswith(variant_base): 4182632Sstever@eecs.umich.edu path = path[len(variant_base):] 4192632Sstever@eecs.umich.edu elif path.startswith('build/'): 4202632Sstever@eecs.umich.edu path = path[6:] 4212632Sstever@eecs.umich.edu return path 4222632Sstever@eecs.umich.edu 4232632Sstever@eecs.umich.edu# Generate a string of the form: 4242632Sstever@eecs.umich.edu# common/path/prefix/src1, src2 -> tgt1, tgt2 4252023SN/A# to print while building. 4262632Sstever@eecs.umich.educlass Transform(object): 4272632Sstever@eecs.umich.edu # all specific color settings should be here and nowhere else 4281889SN/A tool_color = termcap.Normal 4291889SN/A pfx_color = termcap.Yellow 4302632Sstever@eecs.umich.edu srcs_color = termcap.Yellow + termcap.Bold 4312632Sstever@eecs.umich.edu arrow_color = termcap.Blue + termcap.Bold 4322632Sstever@eecs.umich.edu tgts_color = termcap.Yellow + termcap.Bold 4332632Sstever@eecs.umich.edu 4342632Sstever@eecs.umich.edu def __init__(self, tool, max_sources=99): 4352632Sstever@eecs.umich.edu self.format = self.tool_color + (" [%8s] " % tool) \ 4362632Sstever@eecs.umich.edu + self.pfx_color + "%s" \ 4372632Sstever@eecs.umich.edu + self.srcs_color + "%s" \ 4382632Sstever@eecs.umich.edu + self.arrow_color + " -> " \ 4392632Sstever@eecs.umich.edu + self.tgts_color + "%s" \ 4402632Sstever@eecs.umich.edu + termcap.Normal 4412632Sstever@eecs.umich.edu self.max_sources = max_sources 4422632Sstever@eecs.umich.edu 4432632Sstever@eecs.umich.edu def __call__(self, target, source, env, for_signature=None): 4441888SN/A # truncate source list according to max_sources param 4451888SN/A source = source[0:self.max_sources] 4461869SN/A def strip(f): 4471869SN/A return strip_build_path(str(f), env) 4481858SN/A if len(source) > 0: 4492598SN/A srcs = map(strip, source) 4502598SN/A else: 4512598SN/A srcs = [''] 4522598SN/A tgts = map(strip, target) 4532598SN/A # surprisingly, os.path.commonprefix is a dumb char-by-char string 4541858SN/A # operation that has nothing to do with paths. 4551858SN/A com_pfx = os.path.commonprefix(srcs + tgts) 4561858SN/A com_pfx_len = len(com_pfx) 4571858SN/A if com_pfx: 4581858SN/A # do some cleanup and sanity checking on common prefix 4591858SN/A if com_pfx[-1] == ".": 4601858SN/A # prefix matches all but file extension: ok 4611858SN/A # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 4621858SN/A com_pfx = com_pfx[0:-1] 4631871SN/A elif com_pfx[-1] == "/": 4641858SN/A # common prefix is directory path: OK 4651858SN/A pass 4661858SN/A else: 4671858SN/A src0_len = len(srcs[0]) 4681858SN/A tgt0_len = len(tgts[0]) 4691858SN/A if src0_len == com_pfx_len: 4701858SN/A # source is a substring of target, OK 4711858SN/A pass 4721858SN/A elif tgt0_len == com_pfx_len: 4731858SN/A # target is a substring of source, need to back up to 4741858SN/A # avoid empty string on RHS of arrow 4751859SN/A sep_idx = com_pfx.rfind(".") 4761859SN/A if sep_idx != -1: 4771869SN/A com_pfx = com_pfx[0:sep_idx] 4781888SN/A else: 4792632Sstever@eecs.umich.edu com_pfx = '' 4801869SN/A elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 4811884SN/A # still splitting at file extension: ok 4821884SN/A pass 4831884SN/A else: 4841884SN/A # probably a fluke; ignore it 4851884SN/A com_pfx = '' 4861884SN/A # recalculate length in case com_pfx was modified 4871965SN/A com_pfx_len = len(com_pfx) 4881965SN/A def fmt(files): 4891965SN/A f = map(lambda s: s[com_pfx_len:], files) 4902761Sstever@eecs.umich.edu return ', '.join(f) 4911869SN/A return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 4921869SN/A 4932632Sstever@eecs.umich.eduExport('Transform') 4942667Sstever@eecs.umich.edu 4951869SN/A# enable the regression script to use the termcap 4961869SN/Amain['TERMCAP'] = termcap 4972929Sktlim@umich.edu 4982929Sktlim@umich.eduif GetOption('verbose'): 4992929Sktlim@umich.edu def MakeAction(action, string, *args, **kwargs): 5002929Sktlim@umich.edu return Action(action, *args, **kwargs) 501955SN/Aelse: 5022598SN/A MakeAction = Action 5032598SN/A main['CCCOMSTR'] = Transform("CC") 504955SN/A main['CXXCOMSTR'] = Transform("CXX") 505955SN/A main['ASCOMSTR'] = Transform("AS") 506955SN/A main['SWIGCOMSTR'] = Transform("SWIG") 5071530SN/A main['ARCOMSTR'] = Transform("AR", 0) 508955SN/A main['LINKCOMSTR'] = Transform("LINK", 0) 509955SN/A main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 510955SN/A main['M4COMSTR'] = Transform("M4") 511 main['SHCCCOMSTR'] = Transform("SHCC") 512 main['SHCXXCOMSTR'] = Transform("SHCXX") 513Export('MakeAction') 514 515# Initialize the Link-Time Optimization (LTO) flags 516main['LTO_CCFLAGS'] = [] 517main['LTO_LDFLAGS'] = [] 518 519# According to the readme, tcmalloc works best if the compiler doesn't 520# assume that we're using the builtin malloc and friends. These flags 521# are compiler-specific, so we need to set them after we detect which 522# compiler we're using. 523main['TCMALLOC_CCFLAGS'] = [] 524 525CXX_version = readCommand([main['CXX'],'--version'], exception=False) 526CXX_V = readCommand([main['CXX'],'-V'], exception=False) 527 528main['GCC'] = CXX_version and CXX_version.find('g++') >= 0 529main['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 530if main['GCC'] + main['CLANG'] > 1: 531 print 'Error: How can we have two at the same time?' 532 Exit(1) 533 534# Set up default C++ compiler flags 535if main['GCC'] or main['CLANG']: 536 # As gcc and clang share many flags, do the common parts here 537 main.Append(CCFLAGS=['-pipe']) 538 main.Append(CCFLAGS=['-fno-strict-aliasing']) 539 # Enable -Wall and then disable the few warnings that we 540 # consistently violate 541 main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef']) 542 # We always compile using C++11, but only gcc >= 4.7 and clang 3.1 543 # actually use that name, so we stick with c++0x 544 main.Append(CXXFLAGS=['-std=c++0x']) 545 # Add selected sanity checks from -Wextra 546 main.Append(CXXFLAGS=['-Wmissing-field-initializers', 547 '-Woverloaded-virtual']) 548else: 549 print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 550 print "Don't know what compiler options to use for your compiler." 551 print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 552 print termcap.Yellow + ' version:' + termcap.Normal, 553 if not CXX_version: 554 print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 555 termcap.Normal 556 else: 557 print CXX_version.replace('\n', '<nl>') 558 print " If you're trying to use a compiler other than GCC" 559 print " or clang, there appears to be something wrong with your" 560 print " environment." 561 print " " 562 print " If you are trying to use a compiler other than those listed" 563 print " above you will need to ease fix SConstruct and " 564 print " src/SConscript to support that compiler." 565 Exit(1) 566 567if main['GCC']: 568 # Check for a supported version of gcc, >= 4.4 is needed for c++0x 569 # support. See http://gcc.gnu.org/projects/cxx0x.html for details 570 gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 571 if compareVersions(gcc_version, "4.4") < 0: 572 print 'Error: gcc version 4.4 or newer required.' 573 print ' Installed version:', gcc_version 574 Exit(1) 575 576 main['GCC_VERSION'] = gcc_version 577 578 # Check for versions with bugs 579 if not compareVersions(gcc_version, '4.4.1') or \ 580 not compareVersions(gcc_version, '4.4.2'): 581 print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.' 582 main.Append(CCFLAGS=['-fno-tree-vectorize']) 583 584 # LTO support is only really working properly from 4.6 and beyond 585 if compareVersions(gcc_version, '4.6') >= 0: 586 # Add the appropriate Link-Time Optimization (LTO) flags 587 # unless LTO is explicitly turned off. Note that these flags 588 # are only used by the fast target. 589 if not GetOption('no_lto'): 590 # Pass the LTO flag when compiling to produce GIMPLE 591 # output, we merely create the flags here and only append 592 # them later/ 593 main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 594 595 # Use the same amount of jobs for LTO as we are running 596 # scons with, we hardcode the use of the linker plugin 597 # which requires either gold or GNU ld >= 2.21 598 main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs'), 599 '-fuse-linker-plugin'] 600 601 main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc', 602 '-fno-builtin-realloc', '-fno-builtin-free']) 603 604elif main['CLANG']: 605 # Check for a supported version of clang, >= 2.9 is needed to 606 # support similar features as gcc 4.4. See 607 # http://clang.llvm.org/cxx_status.html for details 608 clang_version_re = re.compile(".* version (\d+\.\d+)") 609 clang_version_match = clang_version_re.match(CXX_version) 610 if (clang_version_match): 611 clang_version = clang_version_match.groups()[0] 612 if compareVersions(clang_version, "2.9") < 0: 613 print 'Error: clang version 2.9 or newer required.' 614 print ' Installed version:', clang_version 615 Exit(1) 616 else: 617 print 'Error: Unable to determine clang version.' 618 Exit(1) 619 620 # clang has a few additional warnings that we disable, 621 # tautological comparisons are allowed due to unsigned integers 622 # being compared to constants that happen to be 0, and extraneous 623 # parantheses are allowed due to Ruby's printing of the AST, 624 # finally self assignments are allowed as the generated CPU code 625 # is relying on this 626 main.Append(CCFLAGS=['-Wno-tautological-compare', 627 '-Wno-parentheses', 628 '-Wno-self-assign']) 629 630 main.Append(TCMALLOC_CCFLAGS=['-fno-builtin']) 631 632 # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 633 # opposed to libstdc++, as the later is dated. 634 if sys.platform == "darwin": 635 main.Append(CXXFLAGS=['-stdlib=libc++']) 636 main.Append(LIBS=['c++']) 637 638else: 639 print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 640 print "Don't know what compiler options to use for your compiler." 641 print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 642 print termcap.Yellow + ' version:' + termcap.Normal, 643 if not CXX_version: 644 print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 645 termcap.Normal 646 else: 647 print CXX_version.replace('\n', '<nl>') 648 print " If you're trying to use a compiler other than GCC" 649 print " or clang, there appears to be something wrong with your" 650 print " environment." 651 print " " 652 print " If you are trying to use a compiler other than those listed" 653 print " above you will need to ease fix SConstruct and " 654 print " src/SConscript to support that compiler." 655 Exit(1) 656 657# Set up common yacc/bison flags (needed for Ruby) 658main['YACCFLAGS'] = '-d' 659main['YACCHXXFILESUFFIX'] = '.hh' 660 661# Do this after we save setting back, or else we'll tack on an 662# extra 'qdo' every time we run scons. 663if main['BATCH']: 664 main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 665 main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 666 main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 667 main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 668 main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 669 670if sys.platform == 'cygwin': 671 # cygwin has some header file issues... 672 main.Append(CCFLAGS=["-Wno-uninitialized"]) 673 674# Check for the protobuf compiler 675protoc_version = readCommand([main['PROTOC'], '--version'], 676 exception='').split() 677 678# First two words should be "libprotoc x.y.z" 679if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 680 print termcap.Yellow + termcap.Bold + \ 681 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 682 ' Please install protobuf-compiler for tracing support.' + \ 683 termcap.Normal 684 main['PROTOC'] = False 685else: 686 # Based on the availability of the compress stream wrappers, 687 # require 2.1.0 688 min_protoc_version = '2.1.0' 689 if compareVersions(protoc_version[1], min_protoc_version) < 0: 690 print termcap.Yellow + termcap.Bold + \ 691 'Warning: protoc version', min_protoc_version, \ 692 'or newer required.\n' + \ 693 ' Installed version:', protoc_version[1], \ 694 termcap.Normal 695 main['PROTOC'] = False 696 else: 697 # Attempt to determine the appropriate include path and 698 # library path using pkg-config, that means we also need to 699 # check for pkg-config. Note that it is possible to use 700 # protobuf without the involvement of pkg-config. Later on we 701 # check go a library config check and at that point the test 702 # will fail if libprotobuf cannot be found. 703 if readCommand(['pkg-config', '--version'], exception=''): 704 try: 705 # Attempt to establish what linking flags to add for protobuf 706 # using pkg-config 707 main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 708 except: 709 print termcap.Yellow + termcap.Bold + \ 710 'Warning: pkg-config could not get protobuf flags.' + \ 711 termcap.Normal 712 713# Check for SWIG 714if not main.has_key('SWIG'): 715 print 'Error: SWIG utility not found.' 716 print ' Please install (see http://www.swig.org) and retry.' 717 Exit(1) 718 719# Check for appropriate SWIG version 720swig_version = readCommand([main['SWIG'], '-version'], exception='').split() 721# First 3 words should be "SWIG Version x.y.z" 722if len(swig_version) < 3 or \ 723 swig_version[0] != 'SWIG' or swig_version[1] != 'Version': 724 print 'Error determining SWIG version.' 725 Exit(1) 726 727min_swig_version = '1.3.34' 728if compareVersions(swig_version[2], min_swig_version) < 0: 729 print 'Error: SWIG version', min_swig_version, 'or newer required.' 730 print ' Installed version:', swig_version[2] 731 Exit(1) 732 733# Older versions of swig do not play well with more recent versions of 734# gcc due to assumptions on implicit includes (cstddef) and use of 735# namespaces 736if main['GCC'] and compareVersions(gcc_version, '4.6') > 0 and \ 737 compareVersions(swig_version[2], '2') < 0: 738 print '\n' + termcap.Yellow + termcap.Bold + \ 739 'Warning: SWIG 1.x cause issues with gcc 4.6 and later.\n' + \ 740 termcap.Normal + \ 741 'Use SWIG 2.x to avoid assumptions on implicit includes\n' + \ 742 'and use of namespaces\n' 743 744# Set up SWIG flags & scanner 745swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS') 746main.Append(SWIGFLAGS=swig_flags) 747 748# filter out all existing swig scanners, they mess up the dependency 749# stuff for some reason 750scanners = [] 751for scanner in main['SCANNERS']: 752 skeys = scanner.skeys 753 if skeys == '.i': 754 continue 755 756 if isinstance(skeys, (list, tuple)) and '.i' in skeys: 757 continue 758 759 scanners.append(scanner) 760 761# add the new swig scanner that we like better 762from SCons.Scanner import ClassicCPP as CPPScanner 763swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")' 764scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re)) 765 766# replace the scanners list that has what we want 767main['SCANNERS'] = scanners 768 769# Add a custom Check function to the Configure context so that we can 770# figure out if the compiler adds leading underscores to global 771# variables. This is needed for the autogenerated asm files that we 772# use for embedding the python code. 773def CheckLeading(context): 774 context.Message("Checking for leading underscore in global variables...") 775 # 1) Define a global variable called x from asm so the C compiler 776 # won't change the symbol at all. 777 # 2) Declare that variable. 778 # 3) Use the variable 779 # 780 # If the compiler prepends an underscore, this will successfully 781 # link because the external symbol 'x' will be called '_x' which 782 # was defined by the asm statement. If the compiler does not 783 # prepend an underscore, this will not successfully link because 784 # '_x' will have been defined by assembly, while the C portion of 785 # the code will be trying to use 'x' 786 ret = context.TryLink(''' 787 asm(".globl _x; _x: .byte 0"); 788 extern int x; 789 int main() { return x; } 790 ''', extension=".c") 791 context.env.Append(LEADING_UNDERSCORE=ret) 792 context.Result(ret) 793 return ret 794 795# Platform-specific configuration. Note again that we assume that all 796# builds under a given build root run on the same host platform. 797conf = Configure(main, 798 conf_dir = joinpath(build_root, '.scons_config'), 799 log_file = joinpath(build_root, 'scons_config.log'), 800 custom_tests = { 'CheckLeading' : CheckLeading }) 801 802# Check for leading underscores. Don't really need to worry either 803# way so don't need to check the return code. 804conf.CheckLeading() 805 806# Check if we should compile a 64 bit binary on Mac OS X/Darwin 807try: 808 import platform 809 uname = platform.uname() 810 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 811 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 812 main.Append(CCFLAGS=['-arch', 'x86_64']) 813 main.Append(CFLAGS=['-arch', 'x86_64']) 814 main.Append(LINKFLAGS=['-arch', 'x86_64']) 815 main.Append(ASFLAGS=['-arch', 'x86_64']) 816except: 817 pass 818 819# Recent versions of scons substitute a "Null" object for Configure() 820# when configuration isn't necessary, e.g., if the "--help" option is 821# present. Unfortuantely this Null object always returns false, 822# breaking all our configuration checks. We replace it with our own 823# more optimistic null object that returns True instead. 824if not conf: 825 def NullCheck(*args, **kwargs): 826 return True 827 828 class NullConf: 829 def __init__(self, env): 830 self.env = env 831 def Finish(self): 832 return self.env 833 def __getattr__(self, mname): 834 return NullCheck 835 836 conf = NullConf(main) 837 838# Cache build files in the supplied directory. 839if main['M5_BUILD_CACHE']: 840 print 'Using build cache located at', main['M5_BUILD_CACHE'] 841 CacheDir(main['M5_BUILD_CACHE']) 842 843# Find Python include and library directories for embedding the 844# interpreter. We rely on python-config to resolve the appropriate 845# includes and linker flags. ParseConfig does not seem to understand 846# the more exotic linker flags such as -Xlinker and -export-dynamic so 847# we add them explicitly below. If you want to link in an alternate 848# version of python, see above for instructions on how to invoke 849# scons with the appropriate PATH set. 850py_includes = readCommand(['python-config', '--includes'], 851 exception='').split() 852# Strip the -I from the include folders before adding them to the 853# CPPPATH 854main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes)) 855 856# Read the linker flags and split them into libraries and other link 857# flags. The libraries are added later through the call the CheckLib. 858py_ld_flags = readCommand(['python-config', '--ldflags'], exception='').split() 859py_libs = [] 860for lib in py_ld_flags: 861 if not lib.startswith('-l'): 862 main.Append(LINKFLAGS=[lib]) 863 else: 864 lib = lib[2:] 865 if lib not in py_libs: 866 py_libs.append(lib) 867 868# verify that this stuff works 869if not conf.CheckHeader('Python.h', '<>'): 870 print "Error: can't find Python.h header in", py_includes 871 print "Install Python headers (package python-dev on Ubuntu and RedHat)" 872 Exit(1) 873 874for lib in py_libs: 875 if not conf.CheckLib(lib): 876 print "Error: can't find library %s required by python" % lib 877 Exit(1) 878 879# On Solaris you need to use libsocket for socket ops 880if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 881 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 882 print "Can't find library with socket calls (e.g. accept())" 883 Exit(1) 884 885# Check for zlib. If the check passes, libz will be automatically 886# added to the LIBS environment variable. 887if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 888 print 'Error: did not find needed zlib compression library '\ 889 'and/or zlib.h header file.' 890 print ' Please install zlib and try again.' 891 Exit(1) 892 893# If we have the protobuf compiler, also make sure we have the 894# development libraries. If the check passes, libprotobuf will be 895# automatically added to the LIBS environment variable. After 896# this, we can use the HAVE_PROTOBUF flag to determine if we have 897# got both protoc and libprotobuf available. 898main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 899 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 900 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 901 902# If we have the compiler but not the library, print another warning. 903if main['PROTOC'] and not main['HAVE_PROTOBUF']: 904 print termcap.Yellow + termcap.Bold + \ 905 'Warning: did not find protocol buffer library and/or headers.\n' + \ 906 ' Please install libprotobuf-dev for tracing support.' + \ 907 termcap.Normal 908 909# Check for librt. 910have_posix_clock = \ 911 conf.CheckLibWithHeader(None, 'time.h', 'C', 912 'clock_nanosleep(0,0,NULL,NULL);') or \ 913 conf.CheckLibWithHeader('rt', 'time.h', 'C', 914 'clock_nanosleep(0,0,NULL,NULL);') 915 916if conf.CheckLib('tcmalloc'): 917 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 918elif conf.CheckLib('tcmalloc_minimal'): 919 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 920else: 921 print termcap.Yellow + termcap.Bold + \ 922 "You can get a 12% performance improvement by installing tcmalloc "\ 923 "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \ 924 termcap.Normal 925 926if not have_posix_clock: 927 print "Can't find library for POSIX clocks." 928 929# Check for <fenv.h> (C99 FP environment control) 930have_fenv = conf.CheckHeader('fenv.h', '<>') 931if not have_fenv: 932 print "Warning: Header file <fenv.h> not found." 933 print " This host has no IEEE FP rounding mode control." 934 935# Check if we should enable KVM-based hardware virtualization 936have_kvm = conf.CheckHeader('linux/kvm.h', '<>') 937if not have_kvm: 938 print "Info: Header file <linux/kvm.h> not found, " \ 939 "disabling KVM support." 940 941# Check if the requested target ISA is compatible with the host 942def is_isa_kvm_compatible(isa): 943 isa_comp_table = { 944 "arm" : ( "armv7l" ), 945 "x86" : ( "x86_64" ), 946 } 947 try: 948 import platform 949 host_isa = platform.machine() 950 except: 951 print "Warning: Failed to determine host ISA." 952 return False 953 954 return host_isa in isa_comp_table.get(isa, []) 955 956 957###################################################################### 958# 959# Finish the configuration 960# 961main = conf.Finish() 962 963###################################################################### 964# 965# Collect all non-global variables 966# 967 968# Define the universe of supported ISAs 969all_isa_list = [ ] 970Export('all_isa_list') 971 972class CpuModel(object): 973 '''The CpuModel class encapsulates everything the ISA parser needs to 974 know about a particular CPU model.''' 975 976 # Dict of available CPU model objects. Accessible as CpuModel.dict. 977 dict = {} 978 list = [] 979 defaults = [] 980 981 # Constructor. Automatically adds models to CpuModel.dict. 982 def __init__(self, name, filename, includes, strings, default=False): 983 self.name = name # name of model 984 self.filename = filename # filename for output exec code 985 self.includes = includes # include files needed in exec file 986 # The 'strings' dict holds all the per-CPU symbols we can 987 # substitute into templates etc. 988 self.strings = strings 989 990 # This cpu is enabled by default 991 self.default = default 992 993 # Add self to dict 994 if name in CpuModel.dict: 995 raise AttributeError, "CpuModel '%s' already registered" % name 996 CpuModel.dict[name] = self 997 CpuModel.list.append(name) 998 999Export('CpuModel') 1000 1001# Sticky variables get saved in the variables file so they persist from 1002# one invocation to the next (unless overridden, in which case the new 1003# value becomes sticky). 1004sticky_vars = Variables(args=ARGUMENTS) 1005Export('sticky_vars') 1006 1007# Sticky variables that should be exported 1008export_vars = [] 1009Export('export_vars') 1010 1011# For Ruby 1012all_protocols = [] 1013Export('all_protocols') 1014protocol_dirs = [] 1015Export('protocol_dirs') 1016slicc_includes = [] 1017Export('slicc_includes') 1018 1019# Walk the tree and execute all SConsopts scripts that wil add to the 1020# above variables 1021if not GetOption('verbose'): 1022 print "Reading SConsopts" 1023for bdir in [ base_dir ] + extras_dir_list: 1024 if not isdir(bdir): 1025 print "Error: directory '%s' does not exist" % bdir 1026 Exit(1) 1027 for root, dirs, files in os.walk(bdir): 1028 if 'SConsopts' in files: 1029 if GetOption('verbose'): 1030 print "Reading", joinpath(root, 'SConsopts') 1031 SConscript(joinpath(root, 'SConsopts')) 1032 1033all_isa_list.sort() 1034 1035sticky_vars.AddVariables( 1036 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 1037 ListVariable('CPU_MODELS', 'CPU models', 1038 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 1039 sorted(CpuModel.list)), 1040 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 1041 False), 1042 BoolVariable('SS_COMPATIBLE_FP', 1043 'Make floating-point results compatible with SimpleScalar', 1044 False), 1045 BoolVariable('USE_SSE2', 1046 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 1047 False), 1048 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 1049 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 1050 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 1051 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm), 1052 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1053 all_protocols), 1054 ) 1055 1056# These variables get exported to #defines in config/*.hh (see src/SConscript). 1057export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE', 1058 'USE_POSIX_CLOCK', 'PROTOCOL', 'HAVE_PROTOBUF'] 1059 1060################################################### 1061# 1062# Define a SCons builder for configuration flag headers. 1063# 1064################################################### 1065 1066# This function generates a config header file that #defines the 1067# variable symbol to the current variable setting (0 or 1). The source 1068# operands are the name of the variable and a Value node containing the 1069# value of the variable. 1070def build_config_file(target, source, env): 1071 (variable, value) = [s.get_contents() for s in source] 1072 f = file(str(target[0]), 'w') 1073 print >> f, '#define', variable, value 1074 f.close() 1075 return None 1076 1077# Combine the two functions into a scons Action object. 1078config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1079 1080# The emitter munges the source & target node lists to reflect what 1081# we're really doing. 1082def config_emitter(target, source, env): 1083 # extract variable name from Builder arg 1084 variable = str(target[0]) 1085 # True target is config header file 1086 target = joinpath('config', variable.lower() + '.hh') 1087 val = env[variable] 1088 if isinstance(val, bool): 1089 # Force value to 0/1 1090 val = int(val) 1091 elif isinstance(val, str): 1092 val = '"' + val + '"' 1093 1094 # Sources are variable name & value (packaged in SCons Value nodes) 1095 return ([target], [Value(variable), Value(val)]) 1096 1097config_builder = Builder(emitter = config_emitter, action = config_action) 1098 1099main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1100 1101# libelf build is shared across all configs in the build root. 1102main.SConscript('ext/libelf/SConscript', 1103 variant_dir = joinpath(build_root, 'libelf')) 1104 1105# gzstream build is shared across all configs in the build root. 1106main.SConscript('ext/gzstream/SConscript', 1107 variant_dir = joinpath(build_root, 'gzstream')) 1108 1109# libfdt build is shared across all configs in the build root. 1110main.SConscript('ext/libfdt/SConscript', 1111 variant_dir = joinpath(build_root, 'libfdt')) 1112 1113################################################### 1114# 1115# This function is used to set up a directory with switching headers 1116# 1117################################################### 1118 1119main['ALL_ISA_LIST'] = all_isa_list 1120def make_switching_dir(dname, switch_headers, env): 1121 # Generate the header. target[0] is the full path of the output 1122 # header to generate. 'source' is a dummy variable, since we get the 1123 # list of ISAs from env['ALL_ISA_LIST']. 1124 def gen_switch_hdr(target, source, env): 1125 fname = str(target[0]) 1126 f = open(fname, 'w') 1127 isa = env['TARGET_ISA'].lower() 1128 print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname)) 1129 f.close() 1130 1131 # Build SCons Action object. 'varlist' specifies env vars that this 1132 # action depends on; when env['ALL_ISA_LIST'] changes these actions 1133 # should get re-executed. 1134 switch_hdr_action = MakeAction(gen_switch_hdr, 1135 Transform("GENERATE"), varlist=['ALL_ISA_LIST']) 1136 1137 # Instantiate actions for each header 1138 for hdr in switch_headers: 1139 env.Command(hdr, [], switch_hdr_action) 1140Export('make_switching_dir') 1141 1142################################################### 1143# 1144# Define build environments for selected configurations. 1145# 1146################################################### 1147 1148for variant_path in variant_paths: 1149 print "Building in", variant_path 1150 1151 # Make a copy of the build-root environment to use for this config. 1152 env = main.Clone() 1153 env['BUILDDIR'] = variant_path 1154 1155 # variant_dir is the tail component of build path, and is used to 1156 # determine the build parameters (e.g., 'ALPHA_SE') 1157 (build_root, variant_dir) = splitpath(variant_path) 1158 1159 # Set env variables according to the build directory config. 1160 sticky_vars.files = [] 1161 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1162 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1163 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1164 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1165 if isfile(current_vars_file): 1166 sticky_vars.files.append(current_vars_file) 1167 print "Using saved variables file %s" % current_vars_file 1168 else: 1169 # Build dir-specific variables file doesn't exist. 1170 1171 # Make sure the directory is there so we can create it later 1172 opt_dir = dirname(current_vars_file) 1173 if not isdir(opt_dir): 1174 mkdir(opt_dir) 1175 1176 # Get default build variables from source tree. Variables are 1177 # normally determined by name of $VARIANT_DIR, but can be 1178 # overridden by '--default=' arg on command line. 1179 default = GetOption('default') 1180 opts_dir = joinpath(main.root.abspath, 'build_opts') 1181 if default: 1182 default_vars_files = [joinpath(build_root, 'variables', default), 1183 joinpath(opts_dir, default)] 1184 else: 1185 default_vars_files = [joinpath(opts_dir, variant_dir)] 1186 existing_files = filter(isfile, default_vars_files) 1187 if existing_files: 1188 default_vars_file = existing_files[0] 1189 sticky_vars.files.append(default_vars_file) 1190 print "Variables file %s not found,\n using defaults in %s" \ 1191 % (current_vars_file, default_vars_file) 1192 else: 1193 print "Error: cannot find variables file %s or " \ 1194 "default file(s) %s" \ 1195 % (current_vars_file, ' or '.join(default_vars_files)) 1196 Exit(1) 1197 1198 # Apply current variable settings to env 1199 sticky_vars.Update(env) 1200 1201 help_texts["local_vars"] += \ 1202 "Build variables for %s:\n" % variant_dir \ 1203 + sticky_vars.GenerateHelpText(env) 1204 1205 # Process variable settings. 1206 1207 if not have_fenv and env['USE_FENV']: 1208 print "Warning: <fenv.h> not available; " \ 1209 "forcing USE_FENV to False in", variant_dir + "." 1210 env['USE_FENV'] = False 1211 1212 if not env['USE_FENV']: 1213 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1214 print " FP results may deviate slightly from other platforms." 1215 1216 if env['EFENCE']: 1217 env.Append(LIBS=['efence']) 1218 1219 if env['USE_KVM']: 1220 if not have_kvm: 1221 print "Warning: Can not enable KVM, host seems to lack KVM support" 1222 env['USE_KVM'] = False 1223 elif not is_isa_kvm_compatible(env['TARGET_ISA']): 1224 print "Info: KVM support disabled due to unsupported host and " \ 1225 "target ISA combination" 1226 env['USE_KVM'] = False 1227 1228 # Save sticky variable settings back to current variables file 1229 sticky_vars.Save(current_vars_file, env) 1230 1231 if env['USE_SSE2']: 1232 env.Append(CCFLAGS=['-msse2']) 1233 1234 # The src/SConscript file sets up the build rules in 'env' according 1235 # to the configured variables. It returns a list of environments, 1236 # one for each variant build (debug, opt, etc.) 1237 envList = SConscript('src/SConscript', variant_dir = variant_path, 1238 exports = 'env') 1239 1240 # Set up the regression tests for each build. 1241 for e in envList: 1242 SConscript('tests/SConscript', 1243 variant_dir = joinpath(variant_path, 'tests', e.Label), 1244 exports = { 'env' : e }, duplicate = False) 1245 1246# base help text 1247Help(''' 1248Usage: scons [scons options] [build variables] [target(s)] 1249 1250Extra scons options: 1251%(options)s 1252 1253Global build variables: 1254%(global_vars)s 1255 1256%(local_vars)s 1257''' % help_texts) 1258