SConstruct revision 12034
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2013, 2015, 2016 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 685396Ssaidi@eecs.umich.edu# in a directory outside of the source tree. The '-C' option tells 694202Sbinkertn@umich.edu# scons to chdir to the specified directory to find this SConstruct 705342Sstever@gmail.com# file. 71955SN/A# % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug 725273Sstever@gmail.com# % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug 735273Sstever@gmail.com# 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 772656Sstever@eecs.umich.edu# options as well. 782656Sstever@eecs.umich.edu# 792656Sstever@eecs.umich.edu################################################### 802656Sstever@eecs.umich.edu 812653Sstever@eecs.umich.edu# Check for recent-enough Python and SCons versions. 825227Ssaidi@eecs.umich.edutry: 835227Ssaidi@eecs.umich.edu # Really old versions of scons only take two options for the 845227Ssaidi@eecs.umich.edu # function, so check once without the revision and once with the 855227Ssaidi@eecs.umich.edu # revision, the first instance will fail for stuff other than 865396Ssaidi@eecs.umich.edu # 0.98, and the second will fail for 0.98.0 875396Ssaidi@eecs.umich.edu EnsureSConsVersion(0, 98) 885396Ssaidi@eecs.umich.edu EnsureSConsVersion(0, 98, 1) 895396Ssaidi@eecs.umich.eduexcept SystemExit, e: 905396Ssaidi@eecs.umich.edu print """ 915396Ssaidi@eecs.umich.eduFor more details, see: 925396Ssaidi@eecs.umich.edu http://gem5.org/Dependencies 935396Ssaidi@eecs.umich.edu""" 945396Ssaidi@eecs.umich.edu raise 955396Ssaidi@eecs.umich.edu 965396Ssaidi@eecs.umich.edu# We ensure the python version early because because python-config 975396Ssaidi@eecs.umich.edu# requires python 2.5 985396Ssaidi@eecs.umich.edutry: 995396Ssaidi@eecs.umich.edu EnsurePythonVersion(2, 5) 1005396Ssaidi@eecs.umich.eduexcept SystemExit, e: 1015396Ssaidi@eecs.umich.edu print """ 1025396Ssaidi@eecs.umich.eduYou can use a non-default installation of the Python interpreter by 1035396Ssaidi@eecs.umich.edurearranging your PATH so that scons finds the non-default 'python' and 1045396Ssaidi@eecs.umich.edu'python-config' first. 1055396Ssaidi@eecs.umich.edu 1065396Ssaidi@eecs.umich.eduFor more details, see: 1075396Ssaidi@eecs.umich.edu http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 1085396Ssaidi@eecs.umich.edu""" 1095396Ssaidi@eecs.umich.edu raise 1105396Ssaidi@eecs.umich.edu 1115396Ssaidi@eecs.umich.edu# Global Python includes 1125396Ssaidi@eecs.umich.eduimport itertools 1135396Ssaidi@eecs.umich.eduimport os 1145396Ssaidi@eecs.umich.eduimport re 1155396Ssaidi@eecs.umich.eduimport shutil 1165396Ssaidi@eecs.umich.eduimport subprocess 1175396Ssaidi@eecs.umich.eduimport sys 1185396Ssaidi@eecs.umich.edu 1195396Ssaidi@eecs.umich.edufrom os import mkdir, environ 1205396Ssaidi@eecs.umich.edufrom os.path import abspath, basename, dirname, expanduser, normpath 1215396Ssaidi@eecs.umich.edufrom os.path import exists, isdir, isfile 1225396Ssaidi@eecs.umich.edufrom os.path import join as joinpath, split as splitpath 1235396Ssaidi@eecs.umich.edu 1245396Ssaidi@eecs.umich.edu# SCons includes 1255396Ssaidi@eecs.umich.eduimport SCons 1265396Ssaidi@eecs.umich.eduimport SCons.Node 1275396Ssaidi@eecs.umich.edu 1285396Ssaidi@eecs.umich.eduextra_python_paths = [ 1295396Ssaidi@eecs.umich.edu Dir('src/python').srcnode().abspath, # gem5 includes 1305396Ssaidi@eecs.umich.edu Dir('ext/ply').srcnode().abspath, # ply is used by several files 1315396Ssaidi@eecs.umich.edu ] 1325396Ssaidi@eecs.umich.edu 1335396Ssaidi@eecs.umich.edusys.path[1:1] = extra_python_paths 1345396Ssaidi@eecs.umich.edu 1355396Ssaidi@eecs.umich.edufrom m5.util import compareVersions, readCommand 1365396Ssaidi@eecs.umich.edufrom m5.util.terminal import get_termcap 1375396Ssaidi@eecs.umich.edu 1385396Ssaidi@eecs.umich.eduhelp_texts = { 1395396Ssaidi@eecs.umich.edu "options" : "", 1405396Ssaidi@eecs.umich.edu "global_vars" : "", 1415396Ssaidi@eecs.umich.edu "local_vars" : "" 1425396Ssaidi@eecs.umich.edu} 1435396Ssaidi@eecs.umich.edu 1445396Ssaidi@eecs.umich.eduExport("help_texts") 1455396Ssaidi@eecs.umich.edu 1465396Ssaidi@eecs.umich.edu 1475396Ssaidi@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from 1485396Ssaidi@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h' 1495396Ssaidi@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the 1504781Snate@binkert.org# Help() function, but these two features are incompatible: once 1511852SN/A# you've overridden the help text using Help(), there's no way to get 152955SN/A# at the help texts from AddOptions. See: 153955SN/A# http://scons.tigris.org/issues/show_bug.cgi?id=2356 154955SN/A# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1553717Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and 1563716Sstever@eecs.umich.edu# re-inject it via Help(). Ideally someday this bug will be fixed and 157955SN/A# we can just use AddOption directly. 1581533SN/Adef AddLocalOption(*args, **kwargs): 1593716Sstever@eecs.umich.edu col_width = 30 1601533SN/A 1614678Snate@binkert.org help = " " + ", ".join(args) 1624678Snate@binkert.org if "help" in kwargs: 1634678Snate@binkert.org length = len(help) 1644678Snate@binkert.org if length >= col_width: 1654678Snate@binkert.org help += "\n" + " " * col_width 1664678Snate@binkert.org else: 1674678Snate@binkert.org help += " " * (col_width - length) 1684678Snate@binkert.org help += kwargs["help"] 1694678Snate@binkert.org help_texts["options"] += help + "\n" 1704678Snate@binkert.org 1714678Snate@binkert.org AddOption(*args, **kwargs) 1724678Snate@binkert.org 1734678Snate@binkert.orgAddLocalOption('--colors', dest='use_colors', action='store_true', 1744678Snate@binkert.org help="Add color to abbreviated scons output") 1754678Snate@binkert.orgAddLocalOption('--no-colors', dest='use_colors', action='store_false', 1764678Snate@binkert.org help="Don't add color to abbreviated scons output") 1774678Snate@binkert.orgAddLocalOption('--with-cxx-config', dest='with_cxx_config', 1784678Snate@binkert.org action='store_true', 1794678Snate@binkert.org help="Build with support for C++-based configuration") 1804678Snate@binkert.orgAddLocalOption('--default', dest='default', type='string', action='store', 1814678Snate@binkert.org help='Override which build_opts file to use for defaults') 1824973Ssaidi@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 1834678Snate@binkert.org help='Disable style checking hooks') 1844678Snate@binkert.orgAddLocalOption('--no-lto', dest='no_lto', action='store_true', 1854678Snate@binkert.org help='Disable Link-Time Optimization for fast') 1864678Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1874678Snate@binkert.org help='Update test reference outputs') 1884678Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true', 189955SN/A help='Print full tool command lines') 190955SN/AAddLocalOption('--without-python', dest='without_python', 1912632Sstever@eecs.umich.edu action='store_true', 1922632Sstever@eecs.umich.edu help='Build without Python configuration support') 193955SN/AAddLocalOption('--without-tcmalloc', dest='without_tcmalloc', 194955SN/A action='store_true', 195955SN/A help='Disable linking against tcmalloc') 196955SN/AAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true', 1972632Sstever@eecs.umich.edu help='Build with Undefined Behavior Sanitizer if available') 198955SN/AAddLocalOption('--with-asan', dest='with_asan', action='store_true', 1992632Sstever@eecs.umich.edu help='Build with Address Sanitizer if available') 2002632Sstever@eecs.umich.edu 2012632Sstever@eecs.umich.edutermcap = get_termcap(GetOption('use_colors')) 2022632Sstever@eecs.umich.edu 2032632Sstever@eecs.umich.edu######################################################################## 2042632Sstever@eecs.umich.edu# 2052632Sstever@eecs.umich.edu# Set up the main build environment. 2062632Sstever@eecs.umich.edu# 2072632Sstever@eecs.umich.edu######################################################################## 2082632Sstever@eecs.umich.edu 2092632Sstever@eecs.umich.edu# export TERM so that clang reports errors in color 2102632Sstever@eecs.umich.eduuse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 2112632Sstever@eecs.umich.edu 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC', 2123718Sstever@eecs.umich.edu 'PYTHONPATH', 'RANLIB', 'TERM' ]) 2133718Sstever@eecs.umich.edu 2143718Sstever@eecs.umich.eduuse_prefixes = [ 2153718Sstever@eecs.umich.edu "ASAN_", # address sanitizer symbolizer path and settings 2163718Sstever@eecs.umich.edu "CCACHE_", # ccache (caching compiler wrapper) configuration 2173718Sstever@eecs.umich.edu "CCC_", # clang static analyzer configuration 2183718Sstever@eecs.umich.edu "DISTCC_", # distcc (distributed compiler wrapper) configuration 2193718Sstever@eecs.umich.edu "INCLUDE_SERVER_", # distcc pump server settings 2203718Sstever@eecs.umich.edu "M5", # M5 configuration (e.g., path to kernels) 2213718Sstever@eecs.umich.edu ] 2223718Sstever@eecs.umich.edu 2233718Sstever@eecs.umich.eduuse_env = {} 2243718Sstever@eecs.umich.edufor key,val in sorted(os.environ.iteritems()): 2252634Sstever@eecs.umich.edu if key in use_vars or \ 2262634Sstever@eecs.umich.edu any([key.startswith(prefix) for prefix in use_prefixes]): 2272632Sstever@eecs.umich.edu use_env[key] = val 2282638Sstever@eecs.umich.edu 2292632Sstever@eecs.umich.edu# Tell scons to avoid implicit command dependencies to avoid issues 2302632Sstever@eecs.umich.edu# with the param wrappes being compiled twice (see 2312632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2811) 2322632Sstever@eecs.umich.edumain = Environment(ENV=use_env, IMPLICIT_COMMAND_DEPENDENCIES=0) 2332632Sstever@eecs.umich.edumain.Decider('MD5-timestamp') 2342632Sstever@eecs.umich.edumain.root = Dir(".") # The current directory (where this file lives). 2351858SN/Amain.srcdir = Dir("src") # The source directory 2363716Sstever@eecs.umich.edu 2372638Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 2382638Sstever@eecs.umich.edu 2392638Sstever@eecs.umich.edu# Check that we have a C/C++ compiler 2402638Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 2412638Sstever@eecs.umich.edu print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 2422638Sstever@eecs.umich.edu Exit(1) 2432638Sstever@eecs.umich.edu 2443716Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses 2452634Sstever@eecs.umich.edu# as well 2462634Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths) 247955SN/A 2485341Sstever@gmail.com######################################################################## 2495341Sstever@gmail.com# 2505341Sstever@gmail.com# Mercurial Stuff. 2515341Sstever@gmail.com# 252955SN/A# If the gem5 directory is a mercurial repository, we should do some 253955SN/A# extra things. 254955SN/A# 255955SN/A######################################################################## 256955SN/A 257955SN/Ahgdir = main.root.Dir(".hg") 258955SN/A 2591858SN/A 2601858SN/Astyle_message = """ 2612632Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 262955SN/Aagainst the gem5 style rules on %s. 2634494Ssaidi@eecs.umich.eduThis script will now install the hook in your %s. 2644494Ssaidi@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2653716Sstever@eecs.umich.edu 2661105SN/Amercurial_style_message = """ 2672667Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2682667Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands. 2692667Sstever@eecs.umich.eduThis script will now install the hook in your .hg/hgrc file. 2702667Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2712667Sstever@eecs.umich.edu 2722667Sstever@eecs.umich.edugit_style_message = """ 2731869SN/AYou're missing the gem5 style or commit message hook. These hooks help 2741869SN/Ato ensure that your code follows gem5's style rules on git commit. 2751869SN/AThis script will now install the hook in your .git/hooks/ directory. 2761869SN/APress enter to continue, or ctrl-c to abort: """ 2771869SN/A 2781065SN/Amercurial_style_upgrade_message = """ 2795341Sstever@gmail.comYour Mercurial style hooks are not up-to-date. This script will now 2805341Sstever@gmail.comtry to automatically update them. A backup of your hgrc will be saved 2815341Sstever@gmail.comin .hg/hgrc.old. 2825341Sstever@gmail.comPress enter to continue, or ctrl-c to abort: """ 2835341Sstever@gmail.com 2845341Sstever@gmail.commercurial_style_hook = """ 2855341Sstever@gmail.com# The following lines were automatically added by gem5/SConstruct 2865341Sstever@gmail.com# to provide the gem5 style-checking hooks 2875341Sstever@gmail.com[extensions] 2885341Sstever@gmail.comhgstyle = %s/util/hgstyle.py 2895341Sstever@gmail.com 2905341Sstever@gmail.com[hooks] 2915341Sstever@gmail.compretxncommit.style = python:hgstyle.check_style 2925341Sstever@gmail.compre-qrefresh.style = python:hgstyle.check_style 2935341Sstever@gmail.com# End of SConstruct additions 2945341Sstever@gmail.com 2955341Sstever@gmail.com""" % (main.root.abspath) 2965341Sstever@gmail.com 2975341Sstever@gmail.commercurial_lib_not_found = """ 2985341Sstever@gmail.comMercurial libraries cannot be found, ignoring style hook. If 2995341Sstever@gmail.comyou are a gem5 developer, please fix this and run the style 3005341Sstever@gmail.comhook. It is important. 3015341Sstever@gmail.com""" 3025341Sstever@gmail.com 3035341Sstever@gmail.com# Check for style hook and prompt for installation if it's not there. 3045341Sstever@gmail.com# Skip this if --ignore-style was specified, there's no interactive 3055341Sstever@gmail.com# terminal to prompt, or no recognized revision control system can be 3065341Sstever@gmail.com# found. 3075341Sstever@gmail.comignore_style = GetOption('ignore_style') or not sys.stdin.isatty() 3085341Sstever@gmail.com 3095341Sstever@gmail.com# Try wire up Mercurial to the style hooks 3105341Sstever@gmail.comif not ignore_style and hgdir.exists(): 3115341Sstever@gmail.com style_hook = True 3125341Sstever@gmail.com style_hooks = tuple() 3135341Sstever@gmail.com hgrc = hgdir.File('hgrc') 3145341Sstever@gmail.com hgrc_old = hgdir.File('hgrc.old') 3155341Sstever@gmail.com try: 3165341Sstever@gmail.com from mercurial import ui 3175341Sstever@gmail.com ui = ui.ui() 3185341Sstever@gmail.com ui.readconfig(hgrc.abspath) 3195341Sstever@gmail.com style_hooks = (ui.config('hooks', 'pretxncommit.style', None), 3205341Sstever@gmail.com ui.config('hooks', 'pre-qrefresh.style', None)) 3215341Sstever@gmail.com style_hook = all(style_hooks) 3225341Sstever@gmail.com style_extension = ui.config('extensions', 'style', None) 3235341Sstever@gmail.com except ImportError: 3245341Sstever@gmail.com print mercurial_lib_not_found 3255341Sstever@gmail.com 3265341Sstever@gmail.com if "python:style.check_style" in style_hooks: 3275341Sstever@gmail.com # Try to upgrade the style hooks 3285344Sstever@gmail.com print mercurial_style_upgrade_message 3295341Sstever@gmail.com # continue unless user does ctrl-c/ctrl-d etc. 3305341Sstever@gmail.com try: 3315341Sstever@gmail.com raw_input() 3325341Sstever@gmail.com except: 3335341Sstever@gmail.com print "Input exception, exiting scons.\n" 3342632Sstever@eecs.umich.edu sys.exit(1) 3355199Sstever@gmail.com shutil.copyfile(hgrc.abspath, hgrc_old.abspath) 3363918Ssaidi@eecs.umich.edu re_style_hook = re.compile(r"^([^=#]+)\.style\s*=\s*([^#\s]+).*") 3373918Ssaidi@eecs.umich.edu re_style_extension = re.compile("style\s*=\s*([^#\s]+).*") 3383940Ssaidi@eecs.umich.edu old, new = open(hgrc_old.abspath, 'r'), open(hgrc.abspath, 'w') 3394781Snate@binkert.org for l in old: 3404781Snate@binkert.org m_hook = re_style_hook.match(l) 3413918Ssaidi@eecs.umich.edu m_ext = re_style_extension.match(l) 3424781Snate@binkert.org if m_hook: 3434781Snate@binkert.org hook, check = m_hook.groups() 3443918Ssaidi@eecs.umich.edu if check != "python:style.check_style": 3454781Snate@binkert.org print "Warning: %s.style is using a non-default " \ 3464781Snate@binkert.org "checker: %s" % (hook, check) 3473940Ssaidi@eecs.umich.edu if hook not in ("pretxncommit", "pre-qrefresh"): 3483942Ssaidi@eecs.umich.edu print "Warning: Updating unknown style hook: %s" % hook 3493940Ssaidi@eecs.umich.edu 3503918Ssaidi@eecs.umich.edu l = "%s.style = python:hgstyle.check_style\n" % hook 3513918Ssaidi@eecs.umich.edu elif m_ext and m_ext.group(1) == style_extension: 352955SN/A l = "hgstyle = %s/util/hgstyle.py\n" % main.root.abspath 3531858SN/A 3543918Ssaidi@eecs.umich.edu new.write(l) 3553918Ssaidi@eecs.umich.edu elif not style_hook: 3563918Ssaidi@eecs.umich.edu print mercurial_style_message, 3573918Ssaidi@eecs.umich.edu # continue unless user does ctrl-c/ctrl-d etc. 3583940Ssaidi@eecs.umich.edu try: 3593940Ssaidi@eecs.umich.edu raw_input() 3603918Ssaidi@eecs.umich.edu except: 3613918Ssaidi@eecs.umich.edu print "Input exception, exiting scons.\n" 3623918Ssaidi@eecs.umich.edu sys.exit(1) 3633918Ssaidi@eecs.umich.edu hgrc_path = '%s/.hg/hgrc' % main.root.abspath 3643918Ssaidi@eecs.umich.edu print "Adding style hook to", hgrc_path, "\n" 3653918Ssaidi@eecs.umich.edu try: 3663918Ssaidi@eecs.umich.edu with open(hgrc_path, 'a') as f: 3673918Ssaidi@eecs.umich.edu f.write(mercurial_style_hook) 3683918Ssaidi@eecs.umich.edu except: 3693940Ssaidi@eecs.umich.edu print "Error updating", hgrc_path 3703918Ssaidi@eecs.umich.edu sys.exit(1) 3713918Ssaidi@eecs.umich.edu 3721851SN/Adef install_git_style_hooks(): 3731851SN/A try: 3741858SN/A gitdir = Dir(readCommand( 3755200Sstever@gmail.com ["git", "rev-parse", "--git-dir"]).strip("\n")) 376955SN/A except Exception, e: 3773053Sstever@eecs.umich.edu print "Warning: Failed to find git repo directory: %s" % e 3783053Sstever@eecs.umich.edu return 3793053Sstever@eecs.umich.edu 3803053Sstever@eecs.umich.edu git_hooks = gitdir.Dir("hooks") 3813053Sstever@eecs.umich.edu def hook_exists(hook_name): 3823053Sstever@eecs.umich.edu hook = git_hooks.File(hook_name) 3833053Sstever@eecs.umich.edu return hook.exists() 3843053Sstever@eecs.umich.edu 3853053Sstever@eecs.umich.edu def hook_install(hook_name, script): 3864742Sstever@eecs.umich.edu hook = git_hooks.File(hook_name) 3874742Sstever@eecs.umich.edu if hook.exists(): 3883053Sstever@eecs.umich.edu print "Warning: Can't install %s, hook already exists." % hook_name 3893053Sstever@eecs.umich.edu return 3903053Sstever@eecs.umich.edu 3913053Sstever@eecs.umich.edu if hook.islink(): 3923053Sstever@eecs.umich.edu print "Warning: Removing broken symlink for hook %s." % hook_name 3933053Sstever@eecs.umich.edu os.unlink(hook.get_abspath()) 3943053Sstever@eecs.umich.edu 3953053Sstever@eecs.umich.edu if not git_hooks.exists(): 3963053Sstever@eecs.umich.edu mkdir(git_hooks.get_abspath()) 3972667Sstever@eecs.umich.edu git_hooks.clear() 3984554Sbinkertn@umich.edu 3994554Sbinkertn@umich.edu abs_symlink_hooks = git_hooks.islink() and \ 4002667Sstever@eecs.umich.edu os.path.isabs(os.readlink(git_hooks.get_abspath())) 4014554Sbinkertn@umich.edu 4024554Sbinkertn@umich.edu # Use a relative symlink if the hooks live in the source directory, 4034554Sbinkertn@umich.edu # and the hooks directory is not a symlink to an absolute path. 4044554Sbinkertn@umich.edu if hook.is_under(main.root) and not abs_symlink_hooks: 4054554Sbinkertn@umich.edu script_path = os.path.relpath( 4064554Sbinkertn@umich.edu os.path.realpath(script.get_abspath()), 4074554Sbinkertn@umich.edu os.path.realpath(hook.Dir(".").get_abspath())) 4084781Snate@binkert.org else: 4094554Sbinkertn@umich.edu script_path = script.get_abspath() 4104554Sbinkertn@umich.edu 4112667Sstever@eecs.umich.edu try: 4124554Sbinkertn@umich.edu os.symlink(script_path, hook.get_abspath()) 4134554Sbinkertn@umich.edu except: 4144554Sbinkertn@umich.edu print "Error updating git %s hook" % hook_name 4154554Sbinkertn@umich.edu raise 4162667Sstever@eecs.umich.edu 4174554Sbinkertn@umich.edu if hook_exists("pre-commit") and hook_exists("commit-msg"): 4182667Sstever@eecs.umich.edu return 4194554Sbinkertn@umich.edu 4204554Sbinkertn@umich.edu print git_style_message, 4212667Sstever@eecs.umich.edu try: 4222638Sstever@eecs.umich.edu raw_input() 4232638Sstever@eecs.umich.edu except: 4242638Sstever@eecs.umich.edu print "Input exception, exiting scons.\n" 4253716Sstever@eecs.umich.edu sys.exit(1) 4263716Sstever@eecs.umich.edu 4271858SN/A git_style_script = File("util/git-pre-commit.py") 4285227Ssaidi@eecs.umich.edu git_msg_script = File("ext/git-commit-msg") 4295227Ssaidi@eecs.umich.edu 4305227Ssaidi@eecs.umich.edu hook_install("pre-commit", git_style_script) 4315227Ssaidi@eecs.umich.edu hook_install("commit-msg", git_msg_script) 4325227Ssaidi@eecs.umich.edu 4335227Ssaidi@eecs.umich.edu# Try to wire up git to the style hooks 4345227Ssaidi@eecs.umich.eduif not ignore_style and main.root.Entry(".git").exists(): 4355227Ssaidi@eecs.umich.edu install_git_style_hooks() 4365227Ssaidi@eecs.umich.edu 4375227Ssaidi@eecs.umich.edu################################################### 4385227Ssaidi@eecs.umich.edu# 4395227Ssaidi@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of 4405274Ssaidi@eecs.umich.edu# the target(s). 4415227Ssaidi@eecs.umich.edu# 4425227Ssaidi@eecs.umich.edu################################################### 4435227Ssaidi@eecs.umich.edu 4445204Sstever@gmail.com# Find default configuration & binary. 4455204Sstever@gmail.comDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 4465204Sstever@gmail.com 4475204Sstever@gmail.com# helper function: find last occurrence of element in list 4485204Sstever@gmail.comdef rfind(l, elt, offs = -1): 4495204Sstever@gmail.com for i in range(len(l)+offs, 0, -1): 4505204Sstever@gmail.com if l[i] == elt: 4515204Sstever@gmail.com return i 4525204Sstever@gmail.com raise ValueError, "element not found" 4535204Sstever@gmail.com 4545204Sstever@gmail.com# Take a list of paths (or SCons Nodes) and return a list with all 4555204Sstever@gmail.com# paths made absolute and ~-expanded. Paths will be interpreted 4565204Sstever@gmail.com# relative to the launch directory unless a different root is provided 4575204Sstever@gmail.comdef makePathListAbsolute(path_list, root=GetLaunchDir()): 4585204Sstever@gmail.com return [abspath(joinpath(root, expanduser(str(p)))) 4595204Sstever@gmail.com for p in path_list] 4605204Sstever@gmail.com 4615204Sstever@gmail.com# Each target must have 'build' in the interior of the path; the 4625204Sstever@gmail.com# directory below this will determine the build parameters. For 4633118Sstever@eecs.umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 4643118Sstever@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it 4653118Sstever@eecs.umich.edu# follow 'build' in the build path. 4663118Sstever@eecs.umich.edu 4673118Sstever@eecs.umich.edu# The funky assignment to "[:]" is needed to replace the list contents 4683118Sstever@eecs.umich.edu# in place rather than reassign the symbol to a new list, which 4693118Sstever@eecs.umich.edu# doesn't work (obviously!). 4703118Sstever@eecs.umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 4713118Sstever@eecs.umich.edu 4723118Sstever@eecs.umich.edu# Generate a list of the unique build roots and configs that the 4733118Sstever@eecs.umich.edu# collected targets reference. 4743716Sstever@eecs.umich.eduvariant_paths = [] 4753118Sstever@eecs.umich.edubuild_root = None 4763118Sstever@eecs.umich.edufor t in BUILD_TARGETS: 4773118Sstever@eecs.umich.edu path_dirs = t.split('/') 4783118Sstever@eecs.umich.edu try: 4793118Sstever@eecs.umich.edu build_top = rfind(path_dirs, 'build', -2) 4803118Sstever@eecs.umich.edu except: 4813118Sstever@eecs.umich.edu print "Error: no non-leaf 'build' dir found on target path", t 4823118Sstever@eecs.umich.edu Exit(1) 4833118Sstever@eecs.umich.edu this_build_root = joinpath('/',*path_dirs[:build_top+1]) 4843716Sstever@eecs.umich.edu if not build_root: 4853118Sstever@eecs.umich.edu build_root = this_build_root 4863118Sstever@eecs.umich.edu else: 4873118Sstever@eecs.umich.edu if this_build_root != build_root: 4883118Sstever@eecs.umich.edu print "Error: build targets not under same build root\n"\ 4893118Sstever@eecs.umich.edu " %s\n %s" % (build_root, this_build_root) 4903118Sstever@eecs.umich.edu Exit(1) 4913118Sstever@eecs.umich.edu variant_path = joinpath('/',*path_dirs[:build_top+2]) 4923118Sstever@eecs.umich.edu if variant_path not in variant_paths: 4933118Sstever@eecs.umich.edu variant_paths.append(variant_path) 4943118Sstever@eecs.umich.edu 4953483Ssaidi@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there) 4963494Ssaidi@eecs.umich.eduif not isdir(build_root): 4973494Ssaidi@eecs.umich.edu mkdir(build_root) 4983483Ssaidi@eecs.umich.edumain['BUILDROOT'] = build_root 4993483Ssaidi@eecs.umich.edu 5003483Ssaidi@eecs.umich.eduExport('main') 5013053Sstever@eecs.umich.edu 5023053Sstever@eecs.umich.edumain.SConsignFile(joinpath(build_root, "sconsign")) 5033918Ssaidi@eecs.umich.edu 5043053Sstever@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up 5053053Sstever@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves 5063053Sstever@eecs.umich.edu# file to file~ then copies to file, breaking the link. Symbolic 5073053Sstever@eecs.umich.edu# (soft) links work better. 5083053Sstever@eecs.umich.edumain.SetOption('duplicate', 'soft-copy') 5091858SN/A 5101858SN/A# 5111858SN/A# Set up global sticky variables... these are common to an entire build 5121858SN/A# tree (not specific to a particular build like ALPHA_SE) 5131858SN/A# 5141858SN/A 5151859SN/Aglobal_vars_file = joinpath(build_root, 'variables.global') 5161858SN/A 5171858SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 5181858SN/A 5191859SN/Aglobal_vars.AddVariables( 5201859SN/A ('CC', 'C compiler', environ.get('CC', main['CC'])), 5211862SN/A ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 5223053Sstever@eecs.umich.edu ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 5233053Sstever@eecs.umich.edu ('BATCH', 'Use batch pool for build and tests', False), 5243053Sstever@eecs.umich.edu ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 5253053Sstever@eecs.umich.edu ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 5261859SN/A ('EXTRAS', 'Add extra directories to the compilation', '') 5271859SN/A ) 5281859SN/A 5291859SN/A# Update main environment with values from ARGUMENTS & global_vars_file 5301859SN/Aglobal_vars.Update(main) 5311859SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 5321859SN/A 5331859SN/A# Save sticky variable settings back to current variables file 5341862SN/Aglobal_vars.Save(global_vars_file, main) 5351859SN/A 5361859SN/A# Parse EXTRAS variable to build list of all directories where we're 5371859SN/A# look for sources etc. This list is exported as extras_dir_list. 5381858SN/Abase_dir = main.srcdir.abspath 5391858SN/Aif main['EXTRAS']: 5402139SN/A extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 5414202Sbinkertn@umich.eduelse: 5424202Sbinkertn@umich.edu extras_dir_list = [] 5432139SN/A 5442155SN/AExport('base_dir') 5454202Sbinkertn@umich.eduExport('extras_dir_list') 5464202Sbinkertn@umich.edu 5474202Sbinkertn@umich.edu# the ext directory should be on the #includes path 5482155SN/Amain.Append(CPPPATH=[Dir('ext')]) 5491869SN/A 5501869SN/Adef strip_build_path(path, env): 5511869SN/A path = str(path) 5521869SN/A variant_base = env['BUILDROOT'] + os.path.sep 5534202Sbinkertn@umich.edu if path.startswith(variant_base): 5544202Sbinkertn@umich.edu path = path[len(variant_base):] 5554202Sbinkertn@umich.edu elif path.startswith('build/'): 5564202Sbinkertn@umich.edu path = path[6:] 5574202Sbinkertn@umich.edu return path 5584202Sbinkertn@umich.edu 5594202Sbinkertn@umich.edu# Generate a string of the form: 5604202Sbinkertn@umich.edu# common/path/prefix/src1, src2 -> tgt1, tgt2 5615341Sstever@gmail.com# to print while building. 5625341Sstever@gmail.comclass Transform(object): 5635341Sstever@gmail.com # all specific color settings should be here and nowhere else 5645342Sstever@gmail.com tool_color = termcap.Normal 5655342Sstever@gmail.com pfx_color = termcap.Yellow 5664202Sbinkertn@umich.edu srcs_color = termcap.Yellow + termcap.Bold 5674202Sbinkertn@umich.edu arrow_color = termcap.Blue + termcap.Bold 5684202Sbinkertn@umich.edu tgts_color = termcap.Yellow + termcap.Bold 5694202Sbinkertn@umich.edu 5704202Sbinkertn@umich.edu def __init__(self, tool, max_sources=99): 5711869SN/A self.format = self.tool_color + (" [%8s] " % tool) \ 5724202Sbinkertn@umich.edu + self.pfx_color + "%s" \ 5731869SN/A + self.srcs_color + "%s" \ 5742508SN/A + self.arrow_color + " -> " \ 5752508SN/A + self.tgts_color + "%s" \ 5762508SN/A + termcap.Normal 5772508SN/A self.max_sources = max_sources 5784202Sbinkertn@umich.edu 5791869SN/A def __call__(self, target, source, env, for_signature=None): 5805385Sstever@gmail.com # truncate source list according to max_sources param 5815385Sstever@gmail.com source = source[0:self.max_sources] 5825385Sstever@gmail.com def strip(f): 5835385Sstever@gmail.com return strip_build_path(str(f), env) 5841869SN/A if len(source) > 0: 5851869SN/A srcs = map(strip, source) 5861869SN/A else: 5871869SN/A srcs = [''] 5881869SN/A tgts = map(strip, target) 5891965SN/A # surprisingly, os.path.commonprefix is a dumb char-by-char string 5901965SN/A # operation that has nothing to do with paths. 5911965SN/A com_pfx = os.path.commonprefix(srcs + tgts) 5921869SN/A com_pfx_len = len(com_pfx) 5931869SN/A if com_pfx: 5942733Sktlim@umich.edu # do some cleanup and sanity checking on common prefix 5951884SN/A if com_pfx[-1] == ".": 5963356Sbinkertn@umich.edu # prefix matches all but file extension: ok 5973356Sbinkertn@umich.edu # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 5983356Sbinkertn@umich.edu com_pfx = com_pfx[0:-1] 5994773Snate@binkert.org elif com_pfx[-1] == "/": 6001869SN/A # common prefix is directory path: OK 6011858SN/A pass 6021869SN/A else: 6031869SN/A src0_len = len(srcs[0]) 6041869SN/A tgt0_len = len(tgts[0]) 6051858SN/A if src0_len == com_pfx_len: 6062761Sstever@eecs.umich.edu # source is a substring of target, OK 6071869SN/A pass 6085385Sstever@gmail.com elif tgt0_len == com_pfx_len: 6095385Sstever@gmail.com # target is a substring of source, need to back up to 6103584Ssaidi@eecs.umich.edu # avoid empty string on RHS of arrow 6111869SN/A sep_idx = com_pfx.rfind(".") 6121869SN/A if sep_idx != -1: 6131869SN/A com_pfx = com_pfx[0:sep_idx] 6141869SN/A else: 6151869SN/A com_pfx = '' 6161869SN/A elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 6171858SN/A # still splitting at file extension: ok 618955SN/A pass 619955SN/A else: 6201869SN/A # probably a fluke; ignore it 6211869SN/A com_pfx = '' 6221869SN/A # recalculate length in case com_pfx was modified 6231869SN/A com_pfx_len = len(com_pfx) 6241869SN/A def fmt(files): 6251869SN/A f = map(lambda s: s[com_pfx_len:], files) 6261869SN/A return ', '.join(f) 6271869SN/A return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 6281869SN/A 6291869SN/AExport('Transform') 6301869SN/A 6311869SN/A# enable the regression script to use the termcap 6321869SN/Amain['TERMCAP'] = termcap 6331869SN/A 6341869SN/Aif GetOption('verbose'): 6351869SN/A def MakeAction(action, string, *args, **kwargs): 6361869SN/A return Action(action, *args, **kwargs) 6371869SN/Aelse: 6381869SN/A MakeAction = Action 6391869SN/A main['CCCOMSTR'] = Transform("CC") 6401869SN/A main['CXXCOMSTR'] = Transform("CXX") 6411869SN/A main['ASCOMSTR'] = Transform("AS") 6421869SN/A main['ARCOMSTR'] = Transform("AR", 0) 6431869SN/A main['LINKCOMSTR'] = Transform("LINK", 0) 6441869SN/A main['SHLINKCOMSTR'] = Transform("SHLINK", 0) 6451869SN/A main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 6461869SN/A main['M4COMSTR'] = Transform("M4") 6471869SN/A main['SHCCCOMSTR'] = Transform("SHCC") 6481869SN/A main['SHCXXCOMSTR'] = Transform("SHCXX") 6493716Sstever@eecs.umich.eduExport('MakeAction') 6503356Sbinkertn@umich.edu 6513356Sbinkertn@umich.edu# Initialize the Link-Time Optimization (LTO) flags 6523356Sbinkertn@umich.edumain['LTO_CCFLAGS'] = [] 6533356Sbinkertn@umich.edumain['LTO_LDFLAGS'] = [] 6543356Sbinkertn@umich.edu 6553356Sbinkertn@umich.edu# According to the readme, tcmalloc works best if the compiler doesn't 6564781Snate@binkert.org# assume that we're using the builtin malloc and friends. These flags 6571869SN/A# are compiler-specific, so we need to set them after we detect which 6581869SN/A# compiler we're using. 6591869SN/Amain['TCMALLOC_CCFLAGS'] = [] 6601869SN/A 6611869SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False) 6621869SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False) 6631869SN/A 6642655Sstever@eecs.umich.edumain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 6652655Sstever@eecs.umich.edumain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 6662655Sstever@eecs.umich.eduif main['GCC'] + main['CLANG'] > 1: 6672655Sstever@eecs.umich.edu print 'Error: How can we have two at the same time?' 6682655Sstever@eecs.umich.edu Exit(1) 6692655Sstever@eecs.umich.edu 6702655Sstever@eecs.umich.edu# Set up default C++ compiler flags 6712655Sstever@eecs.umich.eduif main['GCC'] or main['CLANG']: 6722655Sstever@eecs.umich.edu # As gcc and clang share many flags, do the common parts here 6732655Sstever@eecs.umich.edu main.Append(CCFLAGS=['-pipe']) 6742655Sstever@eecs.umich.edu main.Append(CCFLAGS=['-fno-strict-aliasing']) 6752655Sstever@eecs.umich.edu # Enable -Wall and -Wextra and then disable the few warnings that 6762655Sstever@eecs.umich.edu # we consistently violate 6772655Sstever@eecs.umich.edu main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra', 6782655Sstever@eecs.umich.edu '-Wno-sign-compare', '-Wno-unused-parameter']) 6792655Sstever@eecs.umich.edu # We always compile using C++11 6802655Sstever@eecs.umich.edu main.Append(CXXFLAGS=['-std=c++11']) 6812655Sstever@eecs.umich.edu if sys.platform.startswith('freebsd'): 6822655Sstever@eecs.umich.edu main.Append(CCFLAGS=['-I/usr/local/include']) 6832655Sstever@eecs.umich.edu main.Append(CXXFLAGS=['-I/usr/local/include']) 6842655Sstever@eecs.umich.edu 6852655Sstever@eecs.umich.edu main['FILTER_PSHLINKFLAGS'] = lambda x: str(x).replace(' -shared', '') 6862655Sstever@eecs.umich.edu main['PSHLINKFLAGS'] = main.subst('${FILTER_PSHLINKFLAGS(SHLINKFLAGS)}') 6872655Sstever@eecs.umich.edu main['PLINKFLAGS'] = main.subst('${LINKFLAGS}') 6882655Sstever@eecs.umich.edu shared_partial_flags = ['-r', '-nostdlib'] 6892655Sstever@eecs.umich.edu main.Append(PSHLINKFLAGS=shared_partial_flags) 6902638Sstever@eecs.umich.edu main.Append(PLINKFLAGS=shared_partial_flags) 6912638Sstever@eecs.umich.eduelse: 6923716Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 6932638Sstever@eecs.umich.edu print "Don't know what compiler options to use for your compiler." 6942638Sstever@eecs.umich.edu print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 6951869SN/A print termcap.Yellow + ' version:' + termcap.Normal, 6961869SN/A if not CXX_version: 6973546Sgblack@eecs.umich.edu print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 6983546Sgblack@eecs.umich.edu termcap.Normal 6993546Sgblack@eecs.umich.edu else: 7003546Sgblack@eecs.umich.edu print CXX_version.replace('\n', '<nl>') 7014202Sbinkertn@umich.edu print " If you're trying to use a compiler other than GCC" 7023546Sgblack@eecs.umich.edu print " or clang, there appears to be something wrong with your" 7033546Sgblack@eecs.umich.edu print " environment." 7043546Sgblack@eecs.umich.edu print " " 7053546Sgblack@eecs.umich.edu print " If you are trying to use a compiler other than those listed" 7063546Sgblack@eecs.umich.edu print " above you will need to ease fix SConstruct and " 7074781Snate@binkert.org print " src/SConscript to support that compiler." 7084781Snate@binkert.org Exit(1) 7094781Snate@binkert.org 7104781Snate@binkert.orgif main['GCC']: 7114781Snate@binkert.org # Check for a supported version of gcc. >= 4.8 is chosen for its 7124781Snate@binkert.org # level of c++11 support. See 7134781Snate@binkert.org # http://gcc.gnu.org/projects/cxx0x.html for details. 7144781Snate@binkert.org gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 7154781Snate@binkert.org if compareVersions(gcc_version, "4.8") < 0: 7164781Snate@binkert.org print 'Error: gcc version 4.8 or newer required.' 7174781Snate@binkert.org print ' Installed version:', gcc_version 7184781Snate@binkert.org Exit(1) 7193546Sgblack@eecs.umich.edu 7203546Sgblack@eecs.umich.edu main['GCC_VERSION'] = gcc_version 7213546Sgblack@eecs.umich.edu 7224781Snate@binkert.org # gcc from version 4.8 and above generates "rep; ret" instructions 7233546Sgblack@eecs.umich.edu # to avoid performance penalties on certain AMD chips. Older 7243546Sgblack@eecs.umich.edu # assemblers detect this as an error, "Error: expecting string 7253546Sgblack@eecs.umich.edu # instruction after `rep'" 7263546Sgblack@eecs.umich.edu as_version_raw = readCommand([main['AS'], '-v', '/dev/null', 7273546Sgblack@eecs.umich.edu '-o', '/dev/null'], 7283546Sgblack@eecs.umich.edu exception=False).split() 7293546Sgblack@eecs.umich.edu 7303546Sgblack@eecs.umich.edu # version strings may contain extra distro-specific 7313546Sgblack@eecs.umich.edu # qualifiers, so play it safe and keep only what comes before 7323546Sgblack@eecs.umich.edu # the first hyphen 7334202Sbinkertn@umich.edu as_version = as_version_raw[-1].split('-')[0] if as_version_raw else None 7343546Sgblack@eecs.umich.edu 7353546Sgblack@eecs.umich.edu if not as_version or compareVersions(as_version, "2.23") < 0: 7363546Sgblack@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 737955SN/A 'Warning: This combination of gcc and binutils have' + \ 738955SN/A ' known incompatibilities.\n' + \ 739955SN/A ' If you encounter build problems, please update ' + \ 740955SN/A 'binutils to 2.23.' + \ 7411858SN/A termcap.Normal 7421858SN/A 7431858SN/A # Make sure we warn if the user has requested to compile with the 7442632Sstever@eecs.umich.edu # Undefined Benahvior Sanitizer and this version of gcc does not 7452632Sstever@eecs.umich.edu # support it. 7465343Sstever@gmail.com if GetOption('with_ubsan') and \ 7475343Sstever@gmail.com compareVersions(gcc_version, '4.9') < 0: 7485343Sstever@gmail.com print termcap.Yellow + termcap.Bold + \ 7494773Snate@binkert.org 'Warning: UBSan is only supported using gcc 4.9 and later.' + \ 7504773Snate@binkert.org termcap.Normal 7512632Sstever@eecs.umich.edu 7522632Sstever@eecs.umich.edu # Add the appropriate Link-Time Optimization (LTO) flags 7532632Sstever@eecs.umich.edu # unless LTO is explicitly turned off. Note that these flags 7542023SN/A # are only used by the fast target. 7552632Sstever@eecs.umich.edu if not GetOption('no_lto'): 7562632Sstever@eecs.umich.edu # Pass the LTO flag when compiling to produce GIMPLE 7572632Sstever@eecs.umich.edu # output, we merely create the flags here and only append 7582632Sstever@eecs.umich.edu # them later 7592632Sstever@eecs.umich.edu main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 7603716Sstever@eecs.umich.edu 7615342Sstever@gmail.com # Use the same amount of jobs for LTO as we are running 7622632Sstever@eecs.umich.edu # scons with 7632632Sstever@eecs.umich.edu main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 7642632Sstever@eecs.umich.edu 7652632Sstever@eecs.umich.edu main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc', 7662023SN/A '-fno-builtin-realloc', '-fno-builtin-free']) 7672632Sstever@eecs.umich.edu 7682632Sstever@eecs.umich.edu # add option to check for undeclared overrides 7695342Sstever@gmail.com if compareVersions(gcc_version, "5.0") > 0: 7701889SN/A main.Append(CCFLAGS=['-Wno-error=suggest-override']) 7712632Sstever@eecs.umich.edu 7722632Sstever@eecs.umich.eduelif main['CLANG']: 7732632Sstever@eecs.umich.edu # Check for a supported version of clang, >= 3.1 is needed to 7742632Sstever@eecs.umich.edu # support similar features as gcc 4.8. See 7753716Sstever@eecs.umich.edu # http://clang.llvm.org/cxx_status.html for details 7763716Sstever@eecs.umich.edu clang_version_re = re.compile(".* version (\d+\.\d+)") 7775342Sstever@gmail.com clang_version_match = clang_version_re.search(CXX_version) 7782632Sstever@eecs.umich.edu if (clang_version_match): 7792632Sstever@eecs.umich.edu clang_version = clang_version_match.groups()[0] 7802632Sstever@eecs.umich.edu if compareVersions(clang_version, "3.1") < 0: 7812632Sstever@eecs.umich.edu print 'Error: clang version 3.1 or newer required.' 7822632Sstever@eecs.umich.edu print ' Installed version:', clang_version 7832632Sstever@eecs.umich.edu Exit(1) 7842632Sstever@eecs.umich.edu else: 7851888SN/A print 'Error: Unable to determine clang version.' 7861888SN/A Exit(1) 7871869SN/A 7881869SN/A # clang has a few additional warnings that we disable, extraneous 7891858SN/A # parantheses are allowed due to Ruby's printing of the AST, 7905341Sstever@gmail.com # finally self assignments are allowed as the generated CPU code 7912598SN/A # is relying on this 7922598SN/A main.Append(CCFLAGS=['-Wno-parentheses', 7932598SN/A '-Wno-self-assign', 7942598SN/A # Some versions of libstdc++ (4.8?) seem to 7951858SN/A # use struct hash and class hash 7961858SN/A # interchangeably. 7971858SN/A '-Wno-mismatched-tags', 7981858SN/A ]) 7991858SN/A 8001858SN/A main.Append(TCMALLOC_CCFLAGS=['-fno-builtin']) 8011858SN/A 8021858SN/A # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 8031858SN/A # opposed to libstdc++, as the later is dated. 8041871SN/A if sys.platform == "darwin": 8051858SN/A main.Append(CXXFLAGS=['-stdlib=libc++']) 8061858SN/A main.Append(LIBS=['c++']) 8071858SN/A 8081858SN/A # On FreeBSD we need libthr. 8091858SN/A if sys.platform.startswith('freebsd'): 8101858SN/A main.Append(LIBS=['thr']) 8111858SN/A 8121858SN/Aelse: 8131858SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 8141858SN/A print "Don't know what compiler options to use for your compiler." 8151858SN/A print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 8161859SN/A print termcap.Yellow + ' version:' + termcap.Normal, 8171859SN/A if not CXX_version: 8181869SN/A print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 8191888SN/A termcap.Normal 8202632Sstever@eecs.umich.edu else: 8211869SN/A print CXX_version.replace('\n', '<nl>') 8221884SN/A print " If you're trying to use a compiler other than GCC" 8231884SN/A print " or clang, there appears to be something wrong with your" 8241884SN/A print " environment." 8251884SN/A print " " 8261884SN/A print " If you are trying to use a compiler other than those listed" 8271884SN/A print " above you will need to ease fix SConstruct and " 8281965SN/A print " src/SConscript to support that compiler." 8291965SN/A Exit(1) 8301965SN/A 8312761Sstever@eecs.umich.edu# Set up common yacc/bison flags (needed for Ruby) 8321869SN/Amain['YACCFLAGS'] = '-d' 8331869SN/Amain['YACCHXXFILESUFFIX'] = '.hh' 8342632Sstever@eecs.umich.edu 8352667Sstever@eecs.umich.edu# Do this after we save setting back, or else we'll tack on an 8361869SN/A# extra 'qdo' every time we run scons. 8371869SN/Aif main['BATCH']: 8382929Sktlim@umich.edu main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 8392929Sktlim@umich.edu main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 8403716Sstever@eecs.umich.edu main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 8412929Sktlim@umich.edu main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 842955SN/A main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 8432598SN/A 8442598SN/Aif sys.platform == 'cygwin': 8453546Sgblack@eecs.umich.edu # cygwin has some header file issues... 846955SN/A main.Append(CCFLAGS=["-Wno-uninitialized"]) 847955SN/A 848955SN/A# Check for the protobuf compiler 8491530SN/Aprotoc_version = readCommand([main['PROTOC'], '--version'], 850955SN/A exception='').split() 851955SN/A 852955SN/A# First two words should be "libprotoc x.y.z" 853if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 854 print termcap.Yellow + termcap.Bold + \ 855 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 856 ' Please install protobuf-compiler for tracing support.' + \ 857 termcap.Normal 858 main['PROTOC'] = False 859else: 860 # Based on the availability of the compress stream wrappers, 861 # require 2.1.0 862 min_protoc_version = '2.1.0' 863 if compareVersions(protoc_version[1], min_protoc_version) < 0: 864 print termcap.Yellow + termcap.Bold + \ 865 'Warning: protoc version', min_protoc_version, \ 866 'or newer required.\n' + \ 867 ' Installed version:', protoc_version[1], \ 868 termcap.Normal 869 main['PROTOC'] = False 870 else: 871 # Attempt to determine the appropriate include path and 872 # library path using pkg-config, that means we also need to 873 # check for pkg-config. Note that it is possible to use 874 # protobuf without the involvement of pkg-config. Later on we 875 # check go a library config check and at that point the test 876 # will fail if libprotobuf cannot be found. 877 if readCommand(['pkg-config', '--version'], exception=''): 878 try: 879 # Attempt to establish what linking flags to add for protobuf 880 # using pkg-config 881 main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 882 except: 883 print termcap.Yellow + termcap.Bold + \ 884 'Warning: pkg-config could not get protobuf flags.' + \ 885 termcap.Normal 886 887 888# Check for 'timeout' from GNU coreutils. If present, regressions will 889# be run with a time limit. We require version 8.13 since we rely on 890# support for the '--foreground' option. 891if sys.platform.startswith('freebsd'): 892 timeout_lines = readCommand(['gtimeout', '--version'], 893 exception='').splitlines() 894else: 895 timeout_lines = readCommand(['timeout', '--version'], 896 exception='').splitlines() 897# Get the first line and tokenize it 898timeout_version = timeout_lines[0].split() if timeout_lines else [] 899main['TIMEOUT'] = timeout_version and \ 900 compareVersions(timeout_version[-1], '8.13') >= 0 901 902# Add a custom Check function to test for structure members. 903def CheckMember(context, include, decl, member, include_quotes="<>"): 904 context.Message("Checking for member %s in %s..." % 905 (member, decl)) 906 text = """ 907#include %(header)s 908int main(){ 909 %(decl)s test; 910 (void)test.%(member)s; 911 return 0; 912}; 913""" % { "header" : include_quotes[0] + include + include_quotes[1], 914 "decl" : decl, 915 "member" : member, 916 } 917 918 ret = context.TryCompile(text, extension=".cc") 919 context.Result(ret) 920 return ret 921 922# Platform-specific configuration. Note again that we assume that all 923# builds under a given build root run on the same host platform. 924conf = Configure(main, 925 conf_dir = joinpath(build_root, '.scons_config'), 926 log_file = joinpath(build_root, 'scons_config.log'), 927 custom_tests = { 928 'CheckMember' : CheckMember, 929 }) 930 931# Check if we should compile a 64 bit binary on Mac OS X/Darwin 932try: 933 import platform 934 uname = platform.uname() 935 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 936 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 937 main.Append(CCFLAGS=['-arch', 'x86_64']) 938 main.Append(CFLAGS=['-arch', 'x86_64']) 939 main.Append(LINKFLAGS=['-arch', 'x86_64']) 940 main.Append(ASFLAGS=['-arch', 'x86_64']) 941except: 942 pass 943 944# Recent versions of scons substitute a "Null" object for Configure() 945# when configuration isn't necessary, e.g., if the "--help" option is 946# present. Unfortuantely this Null object always returns false, 947# breaking all our configuration checks. We replace it with our own 948# more optimistic null object that returns True instead. 949if not conf: 950 def NullCheck(*args, **kwargs): 951 return True 952 953 class NullConf: 954 def __init__(self, env): 955 self.env = env 956 def Finish(self): 957 return self.env 958 def __getattr__(self, mname): 959 return NullCheck 960 961 conf = NullConf(main) 962 963# Cache build files in the supplied directory. 964if main['M5_BUILD_CACHE']: 965 print 'Using build cache located at', main['M5_BUILD_CACHE'] 966 CacheDir(main['M5_BUILD_CACHE']) 967 968main['USE_PYTHON'] = not GetOption('without_python') 969if main['USE_PYTHON']: 970 # Find Python include and library directories for embedding the 971 # interpreter. We rely on python-config to resolve the appropriate 972 # includes and linker flags. ParseConfig does not seem to understand 973 # the more exotic linker flags such as -Xlinker and -export-dynamic so 974 # we add them explicitly below. If you want to link in an alternate 975 # version of python, see above for instructions on how to invoke 976 # scons with the appropriate PATH set. 977 # 978 # First we check if python2-config exists, else we use python-config 979 python_config = readCommand(['which', 'python2-config'], 980 exception='').strip() 981 if not os.path.exists(python_config): 982 python_config = readCommand(['which', 'python-config'], 983 exception='').strip() 984 py_includes = readCommand([python_config, '--includes'], 985 exception='').split() 986 # Strip the -I from the include folders before adding them to the 987 # CPPPATH 988 main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes)) 989 990 # Read the linker flags and split them into libraries and other link 991 # flags. The libraries are added later through the call the CheckLib. 992 py_ld_flags = readCommand([python_config, '--ldflags'], 993 exception='').split() 994 py_libs = [] 995 for lib in py_ld_flags: 996 if not lib.startswith('-l'): 997 main.Append(LINKFLAGS=[lib]) 998 else: 999 lib = lib[2:] 1000 if lib not in py_libs: 1001 py_libs.append(lib) 1002 1003 # verify that this stuff works 1004 if not conf.CheckHeader('Python.h', '<>'): 1005 print "Error: can't find Python.h header in", py_includes 1006 print "Install Python headers (package python-dev on Ubuntu and RedHat)" 1007 Exit(1) 1008 1009 for lib in py_libs: 1010 if not conf.CheckLib(lib): 1011 print "Error: can't find library %s required by python" % lib 1012 Exit(1) 1013 1014# On Solaris you need to use libsocket for socket ops 1015if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1016 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1017 print "Can't find library with socket calls (e.g. accept())" 1018 Exit(1) 1019 1020# Check for zlib. If the check passes, libz will be automatically 1021# added to the LIBS environment variable. 1022if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 1023 print 'Error: did not find needed zlib compression library '\ 1024 'and/or zlib.h header file.' 1025 print ' Please install zlib and try again.' 1026 Exit(1) 1027 1028# If we have the protobuf compiler, also make sure we have the 1029# development libraries. If the check passes, libprotobuf will be 1030# automatically added to the LIBS environment variable. After 1031# this, we can use the HAVE_PROTOBUF flag to determine if we have 1032# got both protoc and libprotobuf available. 1033main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 1034 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 1035 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 1036 1037# If we have the compiler but not the library, print another warning. 1038if main['PROTOC'] and not main['HAVE_PROTOBUF']: 1039 print termcap.Yellow + termcap.Bold + \ 1040 'Warning: did not find protocol buffer library and/or headers.\n' + \ 1041 ' Please install libprotobuf-dev for tracing support.' + \ 1042 termcap.Normal 1043 1044# Check for librt. 1045have_posix_clock = \ 1046 conf.CheckLibWithHeader(None, 'time.h', 'C', 1047 'clock_nanosleep(0,0,NULL,NULL);') or \ 1048 conf.CheckLibWithHeader('rt', 'time.h', 'C', 1049 'clock_nanosleep(0,0,NULL,NULL);') 1050 1051have_posix_timers = \ 1052 conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C', 1053 'timer_create(CLOCK_MONOTONIC, NULL, NULL);') 1054 1055if not GetOption('without_tcmalloc'): 1056 if conf.CheckLib('tcmalloc'): 1057 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1058 elif conf.CheckLib('tcmalloc_minimal'): 1059 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1060 else: 1061 print termcap.Yellow + termcap.Bold + \ 1062 "You can get a 12% performance improvement by "\ 1063 "installing tcmalloc (libgoogle-perftools-dev package "\ 1064 "on Ubuntu or RedHat)." + termcap.Normal 1065 1066 1067# Detect back trace implementations. The last implementation in the 1068# list will be used by default. 1069backtrace_impls = [ "none" ] 1070 1071if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', 1072 'backtrace_symbols_fd((void*)0, 0, 0);'): 1073 backtrace_impls.append("glibc") 1074elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C', 1075 'backtrace_symbols_fd((void*)0, 0, 0);'): 1076 # NetBSD and FreeBSD need libexecinfo. 1077 backtrace_impls.append("glibc") 1078 main.Append(LIBS=['execinfo']) 1079 1080if backtrace_impls[-1] == "none": 1081 default_backtrace_impl = "none" 1082 print termcap.Yellow + termcap.Bold + \ 1083 "No suitable back trace implementation found." + \ 1084 termcap.Normal 1085 1086if not have_posix_clock: 1087 print "Can't find library for POSIX clocks." 1088 1089# Check for <fenv.h> (C99 FP environment control) 1090have_fenv = conf.CheckHeader('fenv.h', '<>') 1091if not have_fenv: 1092 print "Warning: Header file <fenv.h> not found." 1093 print " This host has no IEEE FP rounding mode control." 1094 1095# Check if we should enable KVM-based hardware virtualization. The API 1096# we rely on exists since version 2.6.36 of the kernel, but somehow 1097# the KVM_API_VERSION does not reflect the change. We test for one of 1098# the types as a fall back. 1099have_kvm = conf.CheckHeader('linux/kvm.h', '<>') 1100if not have_kvm: 1101 print "Info: Compatible header file <linux/kvm.h> not found, " \ 1102 "disabling KVM support." 1103 1104# x86 needs support for xsave. We test for the structure here since we 1105# won't be able to run new tests by the time we know which ISA we're 1106# targeting. 1107have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave', 1108 '#include <linux/kvm.h>') != 0 1109 1110# Check if the requested target ISA is compatible with the host 1111def is_isa_kvm_compatible(isa): 1112 try: 1113 import platform 1114 host_isa = platform.machine() 1115 except: 1116 print "Warning: Failed to determine host ISA." 1117 return False 1118 1119 if not have_posix_timers: 1120 print "Warning: Can not enable KVM, host seems to lack support " \ 1121 "for POSIX timers" 1122 return False 1123 1124 if isa == "arm": 1125 return host_isa in ( "armv7l", "aarch64" ) 1126 elif isa == "x86": 1127 if host_isa != "x86_64": 1128 return False 1129 1130 if not have_kvm_xsave: 1131 print "KVM on x86 requires xsave support in kernel headers." 1132 return False 1133 1134 return True 1135 else: 1136 return False 1137 1138 1139# Check if the exclude_host attribute is available. We want this to 1140# get accurate instruction counts in KVM. 1141main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember( 1142 'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host') 1143 1144 1145###################################################################### 1146# 1147# Finish the configuration 1148# 1149main = conf.Finish() 1150 1151###################################################################### 1152# 1153# Collect all non-global variables 1154# 1155 1156# Define the universe of supported ISAs 1157all_isa_list = [ ] 1158all_gpu_isa_list = [ ] 1159Export('all_isa_list') 1160Export('all_gpu_isa_list') 1161 1162class CpuModel(object): 1163 '''The CpuModel class encapsulates everything the ISA parser needs to 1164 know about a particular CPU model.''' 1165 1166 # Dict of available CPU model objects. Accessible as CpuModel.dict. 1167 dict = {} 1168 1169 # Constructor. Automatically adds models to CpuModel.dict. 1170 def __init__(self, name, default=False): 1171 self.name = name # name of model 1172 1173 # This cpu is enabled by default 1174 self.default = default 1175 1176 # Add self to dict 1177 if name in CpuModel.dict: 1178 raise AttributeError, "CpuModel '%s' already registered" % name 1179 CpuModel.dict[name] = self 1180 1181Export('CpuModel') 1182 1183# Sticky variables get saved in the variables file so they persist from 1184# one invocation to the next (unless overridden, in which case the new 1185# value becomes sticky). 1186sticky_vars = Variables(args=ARGUMENTS) 1187Export('sticky_vars') 1188 1189# Sticky variables that should be exported 1190export_vars = [] 1191Export('export_vars') 1192 1193# For Ruby 1194all_protocols = [] 1195Export('all_protocols') 1196protocol_dirs = [] 1197Export('protocol_dirs') 1198slicc_includes = [] 1199Export('slicc_includes') 1200 1201# Walk the tree and execute all SConsopts scripts that wil add to the 1202# above variables 1203if GetOption('verbose'): 1204 print "Reading SConsopts" 1205for bdir in [ base_dir ] + extras_dir_list: 1206 if not isdir(bdir): 1207 print "Error: directory '%s' does not exist" % bdir 1208 Exit(1) 1209 for root, dirs, files in os.walk(bdir): 1210 if 'SConsopts' in files: 1211 if GetOption('verbose'): 1212 print "Reading", joinpath(root, 'SConsopts') 1213 SConscript(joinpath(root, 'SConsopts')) 1214 1215all_isa_list.sort() 1216all_gpu_isa_list.sort() 1217 1218sticky_vars.AddVariables( 1219 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 1220 EnumVariable('TARGET_GPU_ISA', 'Target GPU ISA', 'hsail', all_gpu_isa_list), 1221 ListVariable('CPU_MODELS', 'CPU models', 1222 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 1223 sorted(CpuModel.dict.keys())), 1224 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 1225 False), 1226 BoolVariable('SS_COMPATIBLE_FP', 1227 'Make floating-point results compatible with SimpleScalar', 1228 False), 1229 BoolVariable('USE_SSE2', 1230 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 1231 False), 1232 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 1233 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 1234 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 1235 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm), 1236 BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False), 1237 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1238 all_protocols), 1239 EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation', 1240 backtrace_impls[-1], backtrace_impls) 1241 ) 1242 1243# These variables get exported to #defines in config/*.hh (see src/SConscript). 1244export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'TARGET_GPU_ISA', 1245 'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'USE_KVM', 'PROTOCOL', 1246 'HAVE_PROTOBUF', 'HAVE_PERF_ATTR_EXCLUDE_HOST'] 1247 1248################################################### 1249# 1250# Define a SCons builder for configuration flag headers. 1251# 1252################################################### 1253 1254# This function generates a config header file that #defines the 1255# variable symbol to the current variable setting (0 or 1). The source 1256# operands are the name of the variable and a Value node containing the 1257# value of the variable. 1258def build_config_file(target, source, env): 1259 (variable, value) = [s.get_contents() for s in source] 1260 f = file(str(target[0]), 'w') 1261 print >> f, '#define', variable, value 1262 f.close() 1263 return None 1264 1265# Combine the two functions into a scons Action object. 1266config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1267 1268# The emitter munges the source & target node lists to reflect what 1269# we're really doing. 1270def config_emitter(target, source, env): 1271 # extract variable name from Builder arg 1272 variable = str(target[0]) 1273 # True target is config header file 1274 target = joinpath('config', variable.lower() + '.hh') 1275 val = env[variable] 1276 if isinstance(val, bool): 1277 # Force value to 0/1 1278 val = int(val) 1279 elif isinstance(val, str): 1280 val = '"' + val + '"' 1281 1282 # Sources are variable name & value (packaged in SCons Value nodes) 1283 return ([target], [Value(variable), Value(val)]) 1284 1285config_builder = Builder(emitter = config_emitter, action = config_action) 1286 1287main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1288 1289################################################### 1290# 1291# Builders for static and shared partially linked object files. 1292# 1293################################################### 1294 1295partial_static_builder = Builder(action=SCons.Defaults.LinkAction, 1296 src_suffix='$OBJSUFFIX', 1297 src_builder=['StaticObject', 'Object'], 1298 LINKFLAGS='$PLINKFLAGS', 1299 LIBS='') 1300 1301def partial_shared_emitter(target, source, env): 1302 for tgt in target: 1303 tgt.attributes.shared = 1 1304 return (target, source) 1305partial_shared_builder = Builder(action=SCons.Defaults.ShLinkAction, 1306 emitter=partial_shared_emitter, 1307 src_suffix='$SHOBJSUFFIX', 1308 src_builder='SharedObject', 1309 SHLINKFLAGS='$PSHLINKFLAGS', 1310 LIBS='') 1311 1312main.Append(BUILDERS = { 'PartialShared' : partial_shared_builder, 1313 'PartialStatic' : partial_static_builder }) 1314 1315# builds in ext are shared across all configs in the build root. 1316ext_dir = abspath(joinpath(str(main.root), 'ext')) 1317ext_build_dirs = [] 1318for root, dirs, files in os.walk(ext_dir): 1319 if 'SConscript' in files: 1320 build_dir = os.path.relpath(root, ext_dir) 1321 ext_build_dirs.append(build_dir) 1322 main.SConscript(joinpath(root, 'SConscript'), 1323 variant_dir=joinpath(build_root, build_dir)) 1324 1325main.Prepend(CPPPATH=Dir('ext/pybind11/include/')) 1326 1327################################################### 1328# 1329# This builder and wrapper method are used to set up a directory with 1330# switching headers. Those are headers which are in a generic location and 1331# that include more specific headers from a directory chosen at build time 1332# based on the current build settings. 1333# 1334################################################### 1335 1336def build_switching_header(target, source, env): 1337 path = str(target[0]) 1338 subdir = str(source[0]) 1339 dp, fp = os.path.split(path) 1340 dp = os.path.relpath(os.path.realpath(dp), 1341 os.path.realpath(env['BUILDDIR'])) 1342 with open(path, 'w') as hdr: 1343 print >>hdr, '#include "%s/%s/%s"' % (dp, subdir, fp) 1344 1345switching_header_action = MakeAction(build_switching_header, 1346 Transform('GENERATE')) 1347 1348switching_header_builder = Builder(action=switching_header_action, 1349 source_factory=Value, 1350 single_source=True) 1351 1352main.Append(BUILDERS = { 'SwitchingHeader': switching_header_builder }) 1353 1354def switching_headers(self, headers, source): 1355 for header in headers: 1356 self.SwitchingHeader(header, source) 1357 1358main.AddMethod(switching_headers, 'SwitchingHeaders') 1359 1360# all-isas -> all-deps -> all-environs -> all_targets 1361main.Alias('#all-isas', []) 1362main.Alias('#all-deps', '#all-isas') 1363 1364# Dummy target to ensure all environments are created before telling 1365# SCons what to actually make (the command line arguments). We attach 1366# them to the dependence graph after the environments are complete. 1367ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work. 1368def environsComplete(target, source, env): 1369 for t in ORIG_BUILD_TARGETS: 1370 main.Depends('#all-targets', t) 1371 1372# Each build/* switching_dir attaches its *-environs target to #all-environs. 1373main.Append(BUILDERS = {'CompleteEnvirons' : 1374 Builder(action=MakeAction(environsComplete, None))}) 1375main.CompleteEnvirons('#all-environs', []) 1376 1377def doNothing(**ignored): pass 1378main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))}) 1379 1380# The final target to which all the original targets ultimately get attached. 1381main.Dummy('#all-targets', '#all-environs') 1382BUILD_TARGETS[:] = ['#all-targets'] 1383 1384################################################### 1385# 1386# Define build environments for selected configurations. 1387# 1388################################################### 1389 1390def variant_name(path): 1391 return os.path.basename(path).lower().replace('_', '-') 1392main['variant_name'] = variant_name 1393main['VARIANT_NAME'] = '${variant_name(BUILDDIR)}' 1394 1395for variant_path in variant_paths: 1396 if not GetOption('silent'): 1397 print "Building in", variant_path 1398 1399 # Make a copy of the build-root environment to use for this config. 1400 env = main.Clone() 1401 env['BUILDDIR'] = variant_path 1402 1403 # variant_dir is the tail component of build path, and is used to 1404 # determine the build parameters (e.g., 'ALPHA_SE') 1405 (build_root, variant_dir) = splitpath(variant_path) 1406 1407 # Set env variables according to the build directory config. 1408 sticky_vars.files = [] 1409 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1410 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1411 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1412 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1413 if isfile(current_vars_file): 1414 sticky_vars.files.append(current_vars_file) 1415 if not GetOption('silent'): 1416 print "Using saved variables file %s" % current_vars_file 1417 elif variant_dir in ext_build_dirs: 1418 # Things in ext are built without a variant directory. 1419 continue 1420 else: 1421 # Build dir-specific variables file doesn't exist. 1422 1423 # Make sure the directory is there so we can create it later 1424 opt_dir = dirname(current_vars_file) 1425 if not isdir(opt_dir): 1426 mkdir(opt_dir) 1427 1428 # Get default build variables from source tree. Variables are 1429 # normally determined by name of $VARIANT_DIR, but can be 1430 # overridden by '--default=' arg on command line. 1431 default = GetOption('default') 1432 opts_dir = joinpath(main.root.abspath, 'build_opts') 1433 if default: 1434 default_vars_files = [joinpath(build_root, 'variables', default), 1435 joinpath(opts_dir, default)] 1436 else: 1437 default_vars_files = [joinpath(opts_dir, variant_dir)] 1438 existing_files = filter(isfile, default_vars_files) 1439 if existing_files: 1440 default_vars_file = existing_files[0] 1441 sticky_vars.files.append(default_vars_file) 1442 print "Variables file %s not found,\n using defaults in %s" \ 1443 % (current_vars_file, default_vars_file) 1444 else: 1445 print "Error: cannot find variables file %s or " \ 1446 "default file(s) %s" \ 1447 % (current_vars_file, ' or '.join(default_vars_files)) 1448 Exit(1) 1449 1450 # Apply current variable settings to env 1451 sticky_vars.Update(env) 1452 1453 help_texts["local_vars"] += \ 1454 "Build variables for %s:\n" % variant_dir \ 1455 + sticky_vars.GenerateHelpText(env) 1456 1457 # Process variable settings. 1458 1459 if not have_fenv and env['USE_FENV']: 1460 print "Warning: <fenv.h> not available; " \ 1461 "forcing USE_FENV to False in", variant_dir + "." 1462 env['USE_FENV'] = False 1463 1464 if not env['USE_FENV']: 1465 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1466 print " FP results may deviate slightly from other platforms." 1467 1468 if env['EFENCE']: 1469 env.Append(LIBS=['efence']) 1470 1471 if env['USE_KVM']: 1472 if not have_kvm: 1473 print "Warning: Can not enable KVM, host seems to lack KVM support" 1474 env['USE_KVM'] = False 1475 elif not is_isa_kvm_compatible(env['TARGET_ISA']): 1476 print "Info: KVM support disabled due to unsupported host and " \ 1477 "target ISA combination" 1478 env['USE_KVM'] = False 1479 1480 if env['BUILD_GPU']: 1481 env.Append(CPPDEFINES=['BUILD_GPU']) 1482 1483 # Warn about missing optional functionality 1484 if env['USE_KVM']: 1485 if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']: 1486 print "Warning: perf_event headers lack support for the " \ 1487 "exclude_host attribute. KVM instruction counts will " \ 1488 "be inaccurate." 1489 1490 # Save sticky variable settings back to current variables file 1491 sticky_vars.Save(current_vars_file, env) 1492 1493 if env['USE_SSE2']: 1494 env.Append(CCFLAGS=['-msse2']) 1495 1496 # The src/SConscript file sets up the build rules in 'env' according 1497 # to the configured variables. It returns a list of environments, 1498 # one for each variant build (debug, opt, etc.) 1499 SConscript('src/SConscript', variant_dir = variant_path, exports = 'env') 1500 1501def pairwise(iterable): 1502 "s -> (s0,s1), (s1,s2), (s2, s3), ..." 1503 a, b = itertools.tee(iterable) 1504 b.next() 1505 return itertools.izip(a, b) 1506 1507variant_names = [variant_name(path) for path in variant_paths] 1508 1509# Create false dependencies so SCons will parse ISAs, establish 1510# dependencies, and setup the build Environments serially. Either 1511# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j 1512# greater than 1. It appears to be standard race condition stuff; it 1513# doesn't always fail, but usually, and the behaviors are different. 1514# Every time I tried to remove this, builds would fail in some 1515# creative new way. So, don't do that. You'll want to, though, because 1516# tests/SConscript takes a long time to make its Environments. 1517for t1, t2 in pairwise(sorted(variant_names)): 1518 main.Depends('#%s-deps' % t2, '#%s-deps' % t1) 1519 main.Depends('#%s-environs' % t2, '#%s-environs' % t1) 1520 1521# base help text 1522Help(''' 1523Usage: scons [scons options] [build variables] [target(s)] 1524 1525Extra scons options: 1526%(options)s 1527 1528Global build variables: 1529%(global_vars)s 1530 1531%(local_vars)s 1532''' % help_texts) 1533