SConstruct revision 12158
1955SN/A# -*- mode:python -*- 2955SN/A 37816Ssteve.reinhardt@amd.com# Copyright (c) 2013, 2015, 2016 ARM Limited 45871Snate@binkert.org# All rights reserved. 51762SN/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 28955SN/A# contributors may be used to endorse or promote products derived from 29955SN/A# this software without specific prior written permission. 302665Ssaidi@eecs.umich.edu# 312665Ssaidi@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 325863Snate@binkert.org# "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 35955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 37955SN/A# 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 392632Sstever@eecs.umich.edu# 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. 42955SN/A# 432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt 442632Sstever@eecs.umich.edu# Nathan Binkert 452761Sstever@eecs.umich.edu 462632Sstever@eecs.umich.edu################################################### 472632Sstever@eecs.umich.edu# 482632Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file. 492761Sstever@eecs.umich.edu# 502761Sstever@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>' 522632Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for 532632Sstever@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 562761Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path. The build system 572761Sstever@eecs.umich.edu# expects that all configs under the same build directory are being 582761Sstever@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 632632Sstever@eecs.umich.edu# scons to search up the directory tree for this SConstruct file. 642632Sstever@eecs.umich.edu# % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug 652632Sstever@eecs.umich.edu# % 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 695863Snate@binkert.org# scons to chdir to the specified directory to find this SConstruct 705863Snate@binkert.org# file. 715863Snate@binkert.org# % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug 725863Snate@binkert.org# % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug 735863Snate@binkert.org# 745863Snate@binkert.org# You can use 'scons -H' to print scons options. If you're in this 755863Snate@binkert.org# 'gem5' directory (or use -u or -C to tell scons where to find this 765863Snate@binkert.org# file), you can use 'scons -h' to print all the gem5-specific build 775863Snate@binkert.org# options as well. 785863Snate@binkert.org# 795863Snate@binkert.org################################################### 805863Snate@binkert.org 815863Snate@binkert.org# Check for recent-enough Python and SCons versions. 825863Snate@binkert.orgtry: 835863Snate@binkert.org # Really old versions of scons only take two options for the 845863Snate@binkert.org # function, so check once without the revision and once with the 855863Snate@binkert.org # revision, the first instance will fail for stuff other than 865863Snate@binkert.org # 0.98, and the second will fail for 0.98.0 875863Snate@binkert.org EnsureSConsVersion(0, 98) 885863Snate@binkert.org EnsureSConsVersion(0, 98, 1) 895863Snate@binkert.orgexcept SystemExit, e: 905863Snate@binkert.org print """ 915863Snate@binkert.orgFor more details, see: 925863Snate@binkert.org http://gem5.org/Dependencies 935863Snate@binkert.org""" 945863Snate@binkert.org raise 955863Snate@binkert.org 965863Snate@binkert.org# We ensure the python version early because because python-config 975863Snate@binkert.org# requires python 2.5 985863Snate@binkert.orgtry: 995863Snate@binkert.org EnsurePythonVersion(2, 5) 1006654Snate@binkert.orgexcept SystemExit, e: 101955SN/A print """ 1025396Ssaidi@eecs.umich.eduYou can use a non-default installation of the Python interpreter by 1035863Snate@binkert.orgrearranging your PATH so that scons finds the non-default 'python' and 1045863Snate@binkert.org'python-config' first. 1054202Sbinkertn@umich.edu 1065863Snate@binkert.orgFor more details, see: 1075863Snate@binkert.org http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 1085863Snate@binkert.org""" 1095863Snate@binkert.org raise 110955SN/A 1116654Snate@binkert.org# Global Python includes 1125273Sstever@gmail.comimport itertools 1135871Snate@binkert.orgimport os 1145273Sstever@gmail.comimport re 1156655Snate@binkert.orgimport shutil 1166655Snate@binkert.orgimport subprocess 1176655Snate@binkert.orgimport sys 1186655Snate@binkert.org 1196655Snate@binkert.orgfrom os import mkdir, environ 1206655Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath 1215871Snate@binkert.orgfrom os.path import exists, isdir, isfile 1226654Snate@binkert.orgfrom os.path import join as joinpath, split as splitpath 1235396Ssaidi@eecs.umich.edu 1247816Ssteve.reinhardt@amd.com# SCons includes 1257816Ssteve.reinhardt@amd.comimport SCons 1267816Ssteve.reinhardt@amd.comimport SCons.Node 1277816Ssteve.reinhardt@amd.com 1287816Ssteve.reinhardt@amd.comextra_python_paths = [ 1297816Ssteve.reinhardt@amd.com Dir('src/python').srcnode().abspath, # gem5 includes 1307816Ssteve.reinhardt@amd.com Dir('ext/ply').srcnode().abspath, # ply is used by several files 1317816Ssteve.reinhardt@amd.com ] 1327816Ssteve.reinhardt@amd.com 1337816Ssteve.reinhardt@amd.comsys.path[1:1] = extra_python_paths 1347816Ssteve.reinhardt@amd.com 1357816Ssteve.reinhardt@amd.comfrom m5.util import compareVersions, readCommand 1365871Snate@binkert.orgfrom m5.util.terminal import get_termcap 1375871Snate@binkert.org 1386121Snate@binkert.orghelp_texts = { 1395871Snate@binkert.org "options" : "", 1405871Snate@binkert.org "global_vars" : "", 1416003Snate@binkert.org "local_vars" : "" 1426655Snate@binkert.org} 143955SN/A 1445871Snate@binkert.orgExport("help_texts") 1455871Snate@binkert.org 1465871Snate@binkert.org 1475871Snate@binkert.org# There's a bug in scons in that (1) by default, the help texts from 148955SN/A# AddOption() are supposed to be displayed when you type 'scons -h' 1496121Snate@binkert.org# and (2) you can override the help displayed by 'scons -h' using the 1506121Snate@binkert.org# Help() function, but these two features are incompatible: once 1516121Snate@binkert.org# you've overridden the help text using Help(), there's no way to get 1521533SN/A# at the help texts from AddOptions. See: 1536655Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2356 1546655Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1556655Snate@binkert.org# This hack lets us extract the help text from AddOptions and 1566655Snate@binkert.org# re-inject it via Help(). Ideally someday this bug will be fixed and 1575871Snate@binkert.org# we can just use AddOption directly. 1585871Snate@binkert.orgdef AddLocalOption(*args, **kwargs): 1595863Snate@binkert.org col_width = 30 1605871Snate@binkert.org 1615871Snate@binkert.org help = " " + ", ".join(args) 1625871Snate@binkert.org if "help" in kwargs: 1635871Snate@binkert.org length = len(help) 1645871Snate@binkert.org if length >= col_width: 1655863Snate@binkert.org help += "\n" + " " * col_width 1666121Snate@binkert.org else: 1675863Snate@binkert.org help += " " * (col_width - length) 1685871Snate@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") 1807827Snate@binkert.orgAddLocalOption('--default', dest='default', type='string', action='store', 1817827Snate@binkert.org help='Override which build_opts file to use for defaults') 1826121Snate@binkert.orgAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 1834678Snate@binkert.org help='Disable style checking hooks') 1845871Snate@binkert.orgAddLocalOption('--no-lto', dest='no_lto', action='store_true', 1855871Snate@binkert.org help='Disable Link-Time Optimization for fast') 1865871Snate@binkert.orgAddLocalOption('--force-lto', dest='force_lto', action='store_true', 1875871Snate@binkert.org help='Use Link-Time Optimization instead of partial linking' + 1885871Snate@binkert.org ' when the compiler doesn\'t support using them together.') 1895871Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1905871Snate@binkert.org help='Update test reference outputs') 1915871Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true', 1925871Snate@binkert.org help='Print full tool command lines') 1935871Snate@binkert.orgAddLocalOption('--without-python', dest='without_python', 1945871Snate@binkert.org action='store_true', 1955871Snate@binkert.org help='Build without Python configuration support') 1965871Snate@binkert.orgAddLocalOption('--without-tcmalloc', dest='without_tcmalloc', 1975990Ssaidi@eecs.umich.edu action='store_true', 1985871Snate@binkert.org help='Disable linking against tcmalloc') 1995871Snate@binkert.orgAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true', 2005871Snate@binkert.org help='Build with Undefined Behavior Sanitizer if available') 2014678Snate@binkert.orgAddLocalOption('--with-asan', dest='with_asan', action='store_true', 2026654Snate@binkert.org help='Build with Address Sanitizer if available') 2035871Snate@binkert.org 2045871Snate@binkert.orgif GetOption('no_lto') and GetOption('force_lto'): 2055871Snate@binkert.org print '--no-lto and --force-lto are mutually exclusive' 2065871Snate@binkert.org Exit(1) 2075871Snate@binkert.org 2085871Snate@binkert.orgtermcap = get_termcap(GetOption('use_colors')) 2095871Snate@binkert.org 2105871Snate@binkert.org######################################################################## 2115871Snate@binkert.org# 2124678Snate@binkert.org# Set up the main build environment. 2135871Snate@binkert.org# 2144678Snate@binkert.org######################################################################## 2155871Snate@binkert.org 2165871Snate@binkert.org# export TERM so that clang reports errors in color 2175871Snate@binkert.orguse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 2185871Snate@binkert.org 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC', 2195871Snate@binkert.org 'PYTHONPATH', 'RANLIB', 'TERM' ]) 2205871Snate@binkert.org 2215871Snate@binkert.orguse_prefixes = [ 2225871Snate@binkert.org "ASAN_", # address sanitizer symbolizer path and settings 2235871Snate@binkert.org "CCACHE_", # ccache (caching compiler wrapper) configuration 2246121Snate@binkert.org "CCC_", # clang static analyzer configuration 2256121Snate@binkert.org "DISTCC_", # distcc (distributed compiler wrapper) configuration 2265863Snate@binkert.org "INCLUDE_SERVER_", # distcc pump server settings 227955SN/A "M5", # M5 configuration (e.g., path to kernels) 228955SN/A ] 2292632Sstever@eecs.umich.edu 2302632Sstever@eecs.umich.eduuse_env = {} 231955SN/Afor key,val in sorted(os.environ.iteritems()): 232955SN/A if key in use_vars or \ 233955SN/A any([key.startswith(prefix) for prefix in use_prefixes]): 234955SN/A use_env[key] = val 2355863Snate@binkert.org 236955SN/A# Tell scons to avoid implicit command dependencies to avoid issues 2372632Sstever@eecs.umich.edu# with the param wrappes being compiled twice (see 2382632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2811) 2392632Sstever@eecs.umich.edumain = Environment(ENV=use_env, IMPLICIT_COMMAND_DEPENDENCIES=0) 2402632Sstever@eecs.umich.edumain.Decider('MD5-timestamp') 2412632Sstever@eecs.umich.edumain.root = Dir(".") # The current directory (where this file lives). 2422632Sstever@eecs.umich.edumain.srcdir = Dir("src") # The source directory 2432632Sstever@eecs.umich.edu 2442632Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 2452632Sstever@eecs.umich.edu 2462632Sstever@eecs.umich.edu# Check that we have a C/C++ compiler 2472632Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 2482632Sstever@eecs.umich.edu print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 2492632Sstever@eecs.umich.edu Exit(1) 2503718Sstever@eecs.umich.edu 2513718Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses 2523718Sstever@eecs.umich.edu# as well 2533718Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths) 2543718Sstever@eecs.umich.edu 2555863Snate@binkert.org######################################################################## 2565863Snate@binkert.org# 2573718Sstever@eecs.umich.edu# Mercurial Stuff. 2583718Sstever@eecs.umich.edu# 2596121Snate@binkert.org# If the gem5 directory is a mercurial repository, we should do some 2605863Snate@binkert.org# extra things. 2613718Sstever@eecs.umich.edu# 2623718Sstever@eecs.umich.edu######################################################################## 2632634Sstever@eecs.umich.edu 2642634Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg") 2655863Snate@binkert.org 2662638Sstever@eecs.umich.edu 2672632Sstever@eecs.umich.edustyle_message = """ 2682632Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2692632Sstever@eecs.umich.eduagainst the gem5 style rules on %s. 2702632Sstever@eecs.umich.eduThis script will now install the hook in your %s. 2712632Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2722632Sstever@eecs.umich.edu 2731858SN/Amercurial_style_message = """ 2743716Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2752638Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands. 2762638Sstever@eecs.umich.eduThis script will now install the hook in your .hg/hgrc file. 2772638Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2782638Sstever@eecs.umich.edu 2792638Sstever@eecs.umich.edugit_style_message = """ 2802638Sstever@eecs.umich.eduYou're missing the gem5 style or commit message hook. These hooks help 2812638Sstever@eecs.umich.eduto ensure that your code follows gem5's style rules on git commit. 2825863Snate@binkert.orgThis script will now install the hook in your .git/hooks/ directory. 2835863Snate@binkert.orgPress enter to continue, or ctrl-c to abort: """ 2845863Snate@binkert.org 285955SN/Amercurial_style_upgrade_message = """ 2865341Sstever@gmail.comYour Mercurial style hooks are not up-to-date. This script will now 2875341Sstever@gmail.comtry to automatically update them. A backup of your hgrc will be saved 2885863Snate@binkert.orgin .hg/hgrc.old. 2897756SAli.Saidi@ARM.comPress enter to continue, or ctrl-c to abort: """ 2905341Sstever@gmail.com 2916121Snate@binkert.orgmercurial_style_hook = """ 2924494Ssaidi@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct 2936121Snate@binkert.org# to provide the gem5 style-checking hooks 2941105SN/A[extensions] 2952667Sstever@eecs.umich.eduhgstyle = %s/util/hgstyle.py 2962667Sstever@eecs.umich.edu 2972667Sstever@eecs.umich.edu[hooks] 2982667Sstever@eecs.umich.edupretxncommit.style = python:hgstyle.check_style 2996121Snate@binkert.orgpre-qrefresh.style = python:hgstyle.check_style 3002667Sstever@eecs.umich.edu# End of SConstruct additions 3015341Sstever@gmail.com 3025863Snate@binkert.org""" % (main.root.abspath) 3035341Sstever@gmail.com 3045341Sstever@gmail.commercurial_lib_not_found = """ 3055341Sstever@gmail.comMercurial libraries cannot be found, ignoring style hook. If 3065863Snate@binkert.orgyou are a gem5 developer, please fix this and run the style 3075341Sstever@gmail.comhook. It is important. 3085341Sstever@gmail.com""" 3095341Sstever@gmail.com 3105863Snate@binkert.org# Check for style hook and prompt for installation if it's not there. 3115341Sstever@gmail.com# Skip this if --ignore-style was specified, there's no interactive 3125341Sstever@gmail.com# terminal to prompt, or no recognized revision control system can be 3135341Sstever@gmail.com# found. 3145341Sstever@gmail.comignore_style = GetOption('ignore_style') or not sys.stdin.isatty() 3155341Sstever@gmail.com 3165341Sstever@gmail.com# Try wire up Mercurial to the style hooks 3175341Sstever@gmail.comif not ignore_style and hgdir.exists(): 3185341Sstever@gmail.com style_hook = True 3195341Sstever@gmail.com style_hooks = tuple() 3205341Sstever@gmail.com hgrc = hgdir.File('hgrc') 3215863Snate@binkert.org hgrc_old = hgdir.File('hgrc.old') 3225341Sstever@gmail.com try: 3235863Snate@binkert.org from mercurial import ui 3247756SAli.Saidi@ARM.com ui = ui.ui() 3255341Sstever@gmail.com ui.readconfig(hgrc.abspath) 3265863Snate@binkert.org style_hooks = (ui.config('hooks', 'pretxncommit.style', None), 3276121Snate@binkert.org ui.config('hooks', 'pre-qrefresh.style', None)) 3286121Snate@binkert.org style_hook = all(style_hooks) 3295397Ssaidi@eecs.umich.edu style_extension = ui.config('extensions', 'style', None) 3305397Ssaidi@eecs.umich.edu except ImportError: 3317727SAli.Saidi@ARM.com print mercurial_lib_not_found 3325341Sstever@gmail.com 3336168Snate@binkert.org if "python:style.check_style" in style_hooks: 3346168Snate@binkert.org # Try to upgrade the style hooks 3355341Sstever@gmail.com print mercurial_style_upgrade_message 3367756SAli.Saidi@ARM.com # continue unless user does ctrl-c/ctrl-d etc. 3377756SAli.Saidi@ARM.com try: 3387756SAli.Saidi@ARM.com raw_input() 3397756SAli.Saidi@ARM.com except: 3407756SAli.Saidi@ARM.com print "Input exception, exiting scons.\n" 3417756SAli.Saidi@ARM.com sys.exit(1) 3425341Sstever@gmail.com shutil.copyfile(hgrc.abspath, hgrc_old.abspath) 3435341Sstever@gmail.com re_style_hook = re.compile(r"^([^=#]+)\.style\s*=\s*([^#\s]+).*") 3445341Sstever@gmail.com re_style_extension = re.compile("style\s*=\s*([^#\s]+).*") 3455341Sstever@gmail.com old, new = open(hgrc_old.abspath, 'r'), open(hgrc.abspath, 'w') 3465863Snate@binkert.org for l in old: 3475341Sstever@gmail.com m_hook = re_style_hook.match(l) 3485341Sstever@gmail.com m_ext = re_style_extension.match(l) 3496121Snate@binkert.org if m_hook: 3506121Snate@binkert.org hook, check = m_hook.groups() 3517756SAli.Saidi@ARM.com if check != "python:style.check_style": 3525341Sstever@gmail.com print "Warning: %s.style is using a non-default " \ 3536814Sgblack@eecs.umich.edu "checker: %s" % (hook, check) 3547756SAli.Saidi@ARM.com if hook not in ("pretxncommit", "pre-qrefresh"): 3556814Sgblack@eecs.umich.edu print "Warning: Updating unknown style hook: %s" % hook 3565863Snate@binkert.org 3576121Snate@binkert.org l = "%s.style = python:hgstyle.check_style\n" % hook 3585341Sstever@gmail.com elif m_ext and m_ext.group(1) == style_extension: 3595863Snate@binkert.org l = "hgstyle = %s/util/hgstyle.py\n" % main.root.abspath 3605341Sstever@gmail.com 3616121Snate@binkert.org new.write(l) 3626121Snate@binkert.org elif not style_hook: 3636121Snate@binkert.org print mercurial_style_message, 3645742Snate@binkert.org # continue unless user does ctrl-c/ctrl-d etc. 3655742Snate@binkert.org try: 3665341Sstever@gmail.com raw_input() 3675742Snate@binkert.org except: 3685742Snate@binkert.org print "Input exception, exiting scons.\n" 3695341Sstever@gmail.com sys.exit(1) 3706017Snate@binkert.org hgrc_path = '%s/.hg/hgrc' % main.root.abspath 3716121Snate@binkert.org print "Adding style hook to", hgrc_path, "\n" 3726017Snate@binkert.org try: 3737816Ssteve.reinhardt@amd.com with open(hgrc_path, 'a') as f: 3747756SAli.Saidi@ARM.com f.write(mercurial_style_hook) 3757756SAli.Saidi@ARM.com except: 3767756SAli.Saidi@ARM.com print "Error updating", hgrc_path 3777756SAli.Saidi@ARM.com sys.exit(1) 3787756SAli.Saidi@ARM.com 3797756SAli.Saidi@ARM.comdef install_git_style_hooks(): 3807756SAli.Saidi@ARM.com try: 3817756SAli.Saidi@ARM.com gitdir = Dir(readCommand( 3827816Ssteve.reinhardt@amd.com ["git", "rev-parse", "--git-dir"]).strip("\n")) 3837816Ssteve.reinhardt@amd.com except Exception, e: 3847816Ssteve.reinhardt@amd.com print "Warning: Failed to find git repo directory: %s" % e 3857816Ssteve.reinhardt@amd.com return 3867816Ssteve.reinhardt@amd.com 3877816Ssteve.reinhardt@amd.com git_hooks = gitdir.Dir("hooks") 3887816Ssteve.reinhardt@amd.com def hook_exists(hook_name): 3897816Ssteve.reinhardt@amd.com hook = git_hooks.File(hook_name) 3907816Ssteve.reinhardt@amd.com return hook.exists() 3917816Ssteve.reinhardt@amd.com 3927756SAli.Saidi@ARM.com def hook_install(hook_name, script): 3937816Ssteve.reinhardt@amd.com hook = git_hooks.File(hook_name) 3947816Ssteve.reinhardt@amd.com if hook.exists(): 3957816Ssteve.reinhardt@amd.com print "Warning: Can't install %s, hook already exists." % hook_name 3967816Ssteve.reinhardt@amd.com return 3977816Ssteve.reinhardt@amd.com 3987816Ssteve.reinhardt@amd.com if hook.islink(): 3997816Ssteve.reinhardt@amd.com print "Warning: Removing broken symlink for hook %s." % hook_name 4007816Ssteve.reinhardt@amd.com os.unlink(hook.get_abspath()) 4017816Ssteve.reinhardt@amd.com 4027816Ssteve.reinhardt@amd.com if not git_hooks.exists(): 4037816Ssteve.reinhardt@amd.com mkdir(git_hooks.get_abspath()) 4047816Ssteve.reinhardt@amd.com git_hooks.clear() 4057816Ssteve.reinhardt@amd.com 4067816Ssteve.reinhardt@amd.com abs_symlink_hooks = git_hooks.islink() and \ 4077816Ssteve.reinhardt@amd.com os.path.isabs(os.readlink(git_hooks.get_abspath())) 4087816Ssteve.reinhardt@amd.com 4097816Ssteve.reinhardt@amd.com # Use a relative symlink if the hooks live in the source directory, 4107816Ssteve.reinhardt@amd.com # and the hooks directory is not a symlink to an absolute path. 4117816Ssteve.reinhardt@amd.com if hook.is_under(main.root) and not abs_symlink_hooks: 4127816Ssteve.reinhardt@amd.com script_path = os.path.relpath( 4137816Ssteve.reinhardt@amd.com os.path.realpath(script.get_abspath()), 4147816Ssteve.reinhardt@amd.com os.path.realpath(hook.Dir(".").get_abspath())) 4157816Ssteve.reinhardt@amd.com else: 4167816Ssteve.reinhardt@amd.com script_path = script.get_abspath() 4177816Ssteve.reinhardt@amd.com 4187816Ssteve.reinhardt@amd.com try: 4197816Ssteve.reinhardt@amd.com os.symlink(script_path, hook.get_abspath()) 4207816Ssteve.reinhardt@amd.com except: 4217816Ssteve.reinhardt@amd.com print "Error updating git %s hook" % hook_name 4227816Ssteve.reinhardt@amd.com raise 4237816Ssteve.reinhardt@amd.com 4247816Ssteve.reinhardt@amd.com if hook_exists("pre-commit") and hook_exists("commit-msg"): 4257816Ssteve.reinhardt@amd.com return 4267816Ssteve.reinhardt@amd.com 4277816Ssteve.reinhardt@amd.com print git_style_message, 4287816Ssteve.reinhardt@amd.com try: 4297816Ssteve.reinhardt@amd.com raw_input() 4307816Ssteve.reinhardt@amd.com except: 4317816Ssteve.reinhardt@amd.com print "Input exception, exiting scons.\n" 4327816Ssteve.reinhardt@amd.com sys.exit(1) 4337816Ssteve.reinhardt@amd.com 4347816Ssteve.reinhardt@amd.com git_style_script = File("util/git-pre-commit.py") 4357816Ssteve.reinhardt@amd.com git_msg_script = File("ext/git-commit-msg") 4367816Ssteve.reinhardt@amd.com 4377816Ssteve.reinhardt@amd.com hook_install("pre-commit", git_style_script) 4387816Ssteve.reinhardt@amd.com hook_install("commit-msg", git_msg_script) 4397816Ssteve.reinhardt@amd.com 4407816Ssteve.reinhardt@amd.com# Try to wire up git to the style hooks 4417816Ssteve.reinhardt@amd.comif not ignore_style and main.root.Entry(".git").exists(): 4427816Ssteve.reinhardt@amd.com install_git_style_hooks() 4437816Ssteve.reinhardt@amd.com 4447816Ssteve.reinhardt@amd.com################################################### 4457816Ssteve.reinhardt@amd.com# 4467816Ssteve.reinhardt@amd.com# Figure out which configurations to set up based on the path(s) of 4477816Ssteve.reinhardt@amd.com# the target(s). 4487816Ssteve.reinhardt@amd.com# 4497816Ssteve.reinhardt@amd.com################################################### 4507816Ssteve.reinhardt@amd.com 4517816Ssteve.reinhardt@amd.com# Find default configuration & binary. 4527816Ssteve.reinhardt@amd.comDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 4537816Ssteve.reinhardt@amd.com 4547756SAli.Saidi@ARM.com# helper function: find last occurrence of element in list 4557756SAli.Saidi@ARM.comdef rfind(l, elt, offs = -1): 4567756SAli.Saidi@ARM.com for i in range(len(l)+offs, 0, -1): 4577756SAli.Saidi@ARM.com if l[i] == elt: 4587756SAli.Saidi@ARM.com return i 4597756SAli.Saidi@ARM.com raise ValueError, "element not found" 4607816Ssteve.reinhardt@amd.com 4617816Ssteve.reinhardt@amd.com# Take a list of paths (or SCons Nodes) and return a list with all 4627816Ssteve.reinhardt@amd.com# paths made absolute and ~-expanded. Paths will be interpreted 4637816Ssteve.reinhardt@amd.com# relative to the launch directory unless a different root is provided 4647816Ssteve.reinhardt@amd.comdef makePathListAbsolute(path_list, root=GetLaunchDir()): 4657816Ssteve.reinhardt@amd.com return [abspath(joinpath(root, expanduser(str(p)))) 4667816Ssteve.reinhardt@amd.com for p in path_list] 4677816Ssteve.reinhardt@amd.com 4687816Ssteve.reinhardt@amd.com# Each target must have 'build' in the interior of the path; the 4697816Ssteve.reinhardt@amd.com# directory below this will determine the build parameters. For 4707756SAli.Saidi@ARM.com# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 4717756SAli.Saidi@ARM.com# recognize that ALPHA_SE specifies the configuration because it 4726654Snate@binkert.org# follow 'build' in the build path. 4736654Snate@binkert.org 4745871Snate@binkert.org# The funky assignment to "[:]" is needed to replace the list contents 4756121Snate@binkert.org# in place rather than reassign the symbol to a new list, which 4766121Snate@binkert.org# doesn't work (obviously!). 4776121Snate@binkert.orgBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 4786121Snate@binkert.org 4793940Ssaidi@eecs.umich.edu# Generate a list of the unique build roots and configs that the 4803918Ssaidi@eecs.umich.edu# collected targets reference. 4813918Ssaidi@eecs.umich.eduvariant_paths = [] 4821858SN/Abuild_root = None 4836121Snate@binkert.orgfor t in BUILD_TARGETS: 4847739Sgblack@eecs.umich.edu path_dirs = t.split('/') 4857739Sgblack@eecs.umich.edu try: 4866143Snate@binkert.org build_top = rfind(path_dirs, 'build', -2) 4877739Sgblack@eecs.umich.edu except: 4887618SAli.Saidi@arm.com print "Error: no non-leaf 'build' dir found on target path", t 4897618SAli.Saidi@arm.com Exit(1) 4907618SAli.Saidi@arm.com this_build_root = joinpath('/',*path_dirs[:build_top+1]) 4917618SAli.Saidi@arm.com if not build_root: 4927618SAli.Saidi@arm.com build_root = this_build_root 4937618SAli.Saidi@arm.com else: 4947618SAli.Saidi@arm.com if this_build_root != build_root: 4957739Sgblack@eecs.umich.edu print "Error: build targets not under same build root\n"\ 4966121Snate@binkert.org " %s\n %s" % (build_root, this_build_root) 4973940Ssaidi@eecs.umich.edu Exit(1) 4986121Snate@binkert.org variant_path = joinpath('/',*path_dirs[:build_top+2]) 4997739Sgblack@eecs.umich.edu if variant_path not in variant_paths: 5007739Sgblack@eecs.umich.edu variant_paths.append(variant_path) 5017739Sgblack@eecs.umich.edu 5027739Sgblack@eecs.umich.edu# Make sure build_root exists (might not if this is the first build there) 5037739Sgblack@eecs.umich.eduif not isdir(build_root): 5047739Sgblack@eecs.umich.edu mkdir(build_root) 5053918Ssaidi@eecs.umich.edumain['BUILDROOT'] = build_root 5063918Ssaidi@eecs.umich.edu 5073940Ssaidi@eecs.umich.eduExport('main') 5083918Ssaidi@eecs.umich.edu 5093918Ssaidi@eecs.umich.edumain.SConsignFile(joinpath(build_root, "sconsign")) 5106157Snate@binkert.org 5116157Snate@binkert.org# Default duplicate option is to use hard links, but this messes up 5126157Snate@binkert.org# when you use emacs to edit a file in the target dir, as emacs moves 5136157Snate@binkert.org# file to file~ then copies to file, breaking the link. Symbolic 5145397Ssaidi@eecs.umich.edu# (soft) links work better. 5155397Ssaidi@eecs.umich.edumain.SetOption('duplicate', 'soft-copy') 5166121Snate@binkert.org 5176121Snate@binkert.org# 5186121Snate@binkert.org# Set up global sticky variables... these are common to an entire build 5196121Snate@binkert.org# tree (not specific to a particular build like ALPHA_SE) 5206121Snate@binkert.org# 5216121Snate@binkert.org 5225397Ssaidi@eecs.umich.eduglobal_vars_file = joinpath(build_root, 'variables.global') 5231851SN/A 5241851SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 5257739Sgblack@eecs.umich.edu 526955SN/Aglobal_vars.AddVariables( 5273053Sstever@eecs.umich.edu ('CC', 'C compiler', environ.get('CC', main['CC'])), 5286121Snate@binkert.org ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 5293053Sstever@eecs.umich.edu ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 5303053Sstever@eecs.umich.edu ('BATCH', 'Use batch pool for build and tests', False), 5313053Sstever@eecs.umich.edu ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 5323053Sstever@eecs.umich.edu ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 5333053Sstever@eecs.umich.edu ('EXTRAS', 'Add extra directories to the compilation', '') 5346654Snate@binkert.org ) 5353053Sstever@eecs.umich.edu 5364742Sstever@eecs.umich.edu# Update main environment with values from ARGUMENTS & global_vars_file 5374742Sstever@eecs.umich.eduglobal_vars.Update(main) 5383053Sstever@eecs.umich.eduhelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 5393053Sstever@eecs.umich.edu 5403053Sstever@eecs.umich.edu# Save sticky variable settings back to current variables file 5413053Sstever@eecs.umich.eduglobal_vars.Save(global_vars_file, main) 5426654Snate@binkert.org 5433053Sstever@eecs.umich.edu# Parse EXTRAS variable to build list of all directories where we're 5443053Sstever@eecs.umich.edu# look for sources etc. This list is exported as extras_dir_list. 5453053Sstever@eecs.umich.edubase_dir = main.srcdir.abspath 5463053Sstever@eecs.umich.eduif main['EXTRAS']: 5472667Sstever@eecs.umich.edu extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 5484554Sbinkertn@umich.eduelse: 5496121Snate@binkert.org extras_dir_list = [] 5502667Sstever@eecs.umich.edu 5514554Sbinkertn@umich.eduExport('base_dir') 5524554Sbinkertn@umich.eduExport('extras_dir_list') 5534554Sbinkertn@umich.edu 5546121Snate@binkert.org# the ext directory should be on the #includes path 5554554Sbinkertn@umich.edumain.Append(CPPPATH=[Dir('ext')]) 5564554Sbinkertn@umich.edu 5574554Sbinkertn@umich.edu# Add shared top-level headers 5584781Snate@binkert.orgmain.Prepend(CPPPATH=Dir('include')) 5594554Sbinkertn@umich.edu 5604554Sbinkertn@umich.edudef strip_build_path(path, env): 5612667Sstever@eecs.umich.edu path = str(path) 5624554Sbinkertn@umich.edu variant_base = env['BUILDROOT'] + os.path.sep 5634554Sbinkertn@umich.edu if path.startswith(variant_base): 5644554Sbinkertn@umich.edu path = path[len(variant_base):] 5654554Sbinkertn@umich.edu elif path.startswith('build/'): 5662667Sstever@eecs.umich.edu path = path[6:] 5674554Sbinkertn@umich.edu return path 5682667Sstever@eecs.umich.edu 5694554Sbinkertn@umich.edu# Generate a string of the form: 5706121Snate@binkert.org# common/path/prefix/src1, src2 -> tgt1, tgt2 5712667Sstever@eecs.umich.edu# to print while building. 5725522Snate@binkert.orgclass Transform(object): 5735522Snate@binkert.org # all specific color settings should be here and nowhere else 5745522Snate@binkert.org tool_color = termcap.Normal 5755522Snate@binkert.org pfx_color = termcap.Yellow 5765522Snate@binkert.org srcs_color = termcap.Yellow + termcap.Bold 5775522Snate@binkert.org arrow_color = termcap.Blue + termcap.Bold 5785522Snate@binkert.org tgts_color = termcap.Yellow + termcap.Bold 5795522Snate@binkert.org 5805522Snate@binkert.org def __init__(self, tool, max_sources=99): 5815522Snate@binkert.org self.format = self.tool_color + (" [%8s] " % tool) \ 5825522Snate@binkert.org + self.pfx_color + "%s" \ 5835522Snate@binkert.org + self.srcs_color + "%s" \ 5845522Snate@binkert.org + self.arrow_color + " -> " \ 5855522Snate@binkert.org + self.tgts_color + "%s" \ 5865522Snate@binkert.org + termcap.Normal 5875522Snate@binkert.org self.max_sources = max_sources 5885522Snate@binkert.org 5895522Snate@binkert.org def __call__(self, target, source, env, for_signature=None): 5905522Snate@binkert.org # truncate source list according to max_sources param 5915522Snate@binkert.org source = source[0:self.max_sources] 5925522Snate@binkert.org def strip(f): 5935522Snate@binkert.org return strip_build_path(str(f), env) 5945522Snate@binkert.org if len(source) > 0: 5955522Snate@binkert.org srcs = map(strip, source) 5965522Snate@binkert.org else: 5975522Snate@binkert.org srcs = [''] 5982638Sstever@eecs.umich.edu tgts = map(strip, target) 5992638Sstever@eecs.umich.edu # surprisingly, os.path.commonprefix is a dumb char-by-char string 6006121Snate@binkert.org # operation that has nothing to do with paths. 6013716Sstever@eecs.umich.edu com_pfx = os.path.commonprefix(srcs + tgts) 6025522Snate@binkert.org com_pfx_len = len(com_pfx) 6035522Snate@binkert.org if com_pfx: 6045522Snate@binkert.org # do some cleanup and sanity checking on common prefix 6055522Snate@binkert.org if com_pfx[-1] == ".": 6065522Snate@binkert.org # prefix matches all but file extension: ok 6075522Snate@binkert.org # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 6081858SN/A com_pfx = com_pfx[0:-1] 6095227Ssaidi@eecs.umich.edu elif com_pfx[-1] == "/": 6105227Ssaidi@eecs.umich.edu # common prefix is directory path: OK 6115227Ssaidi@eecs.umich.edu pass 6125227Ssaidi@eecs.umich.edu else: 6136654Snate@binkert.org src0_len = len(srcs[0]) 6146654Snate@binkert.org tgt0_len = len(tgts[0]) 6157769SAli.Saidi@ARM.com if src0_len == com_pfx_len: 6167769SAli.Saidi@ARM.com # source is a substring of target, OK 6177769SAli.Saidi@ARM.com pass 6187769SAli.Saidi@ARM.com elif tgt0_len == com_pfx_len: 6195227Ssaidi@eecs.umich.edu # target is a substring of source, need to back up to 6205227Ssaidi@eecs.umich.edu # avoid empty string on RHS of arrow 6215227Ssaidi@eecs.umich.edu sep_idx = com_pfx.rfind(".") 6225204Sstever@gmail.com if sep_idx != -1: 6235204Sstever@gmail.com com_pfx = com_pfx[0:sep_idx] 6245204Sstever@gmail.com else: 6255204Sstever@gmail.com com_pfx = '' 6265204Sstever@gmail.com elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 6275204Sstever@gmail.com # still splitting at file extension: ok 6285204Sstever@gmail.com pass 6295204Sstever@gmail.com else: 6305204Sstever@gmail.com # probably a fluke; ignore it 6315204Sstever@gmail.com com_pfx = '' 6325204Sstever@gmail.com # recalculate length in case com_pfx was modified 6335204Sstever@gmail.com com_pfx_len = len(com_pfx) 6345204Sstever@gmail.com def fmt(files): 6355204Sstever@gmail.com f = map(lambda s: s[com_pfx_len:], files) 6365204Sstever@gmail.com return ', '.join(f) 6375204Sstever@gmail.com return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 6385204Sstever@gmail.com 6396121Snate@binkert.orgExport('Transform') 6405204Sstever@gmail.com 6413118Sstever@eecs.umich.edu# enable the regression script to use the termcap 6423118Sstever@eecs.umich.edumain['TERMCAP'] = termcap 6433118Sstever@eecs.umich.edu 6443118Sstever@eecs.umich.eduif GetOption('verbose'): 6453118Sstever@eecs.umich.edu def MakeAction(action, string, *args, **kwargs): 6465863Snate@binkert.org return Action(action, *args, **kwargs) 6473118Sstever@eecs.umich.eduelse: 6485863Snate@binkert.org MakeAction = Action 6493118Sstever@eecs.umich.edu main['CCCOMSTR'] = Transform("CC") 6507457Snate@binkert.org main['CXXCOMSTR'] = Transform("CXX") 6517457Snate@binkert.org main['ASCOMSTR'] = Transform("AS") 6525863Snate@binkert.org main['ARCOMSTR'] = Transform("AR", 0) 6535863Snate@binkert.org main['LINKCOMSTR'] = Transform("LINK", 0) 6545863Snate@binkert.org main['SHLINKCOMSTR'] = Transform("SHLINK", 0) 6555863Snate@binkert.org main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 6565863Snate@binkert.org main['M4COMSTR'] = Transform("M4") 6575863Snate@binkert.org main['SHCCCOMSTR'] = Transform("SHCC") 6585863Snate@binkert.org main['SHCXXCOMSTR'] = Transform("SHCXX") 6596003Snate@binkert.orgExport('MakeAction') 6605863Snate@binkert.org 6615863Snate@binkert.org# Initialize the Link-Time Optimization (LTO) flags 6625863Snate@binkert.orgmain['LTO_CCFLAGS'] = [] 6636120Snate@binkert.orgmain['LTO_LDFLAGS'] = [] 6645863Snate@binkert.org 6655863Snate@binkert.org# According to the readme, tcmalloc works best if the compiler doesn't 6665863Snate@binkert.org# assume that we're using the builtin malloc and friends. These flags 6676120Snate@binkert.org# are compiler-specific, so we need to set them after we detect which 6686120Snate@binkert.org# compiler we're using. 6695863Snate@binkert.orgmain['TCMALLOC_CCFLAGS'] = [] 6705863Snate@binkert.org 6716120Snate@binkert.orgCXX_version = readCommand([main['CXX'],'--version'], exception=False) 6725863Snate@binkert.orgCXX_V = readCommand([main['CXX'],'-V'], exception=False) 6736121Snate@binkert.org 6746121Snate@binkert.orgmain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 6755863Snate@binkert.orgmain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 6767727SAli.Saidi@ARM.comif main['GCC'] + main['CLANG'] > 1: 6777727SAli.Saidi@ARM.com print 'Error: How can we have two at the same time?' 6787727SAli.Saidi@ARM.com Exit(1) 6797727SAli.Saidi@ARM.com 6807727SAli.Saidi@ARM.com# Set up default C++ compiler flags 6817727SAli.Saidi@ARM.comif main['GCC'] or main['CLANG']: 6825863Snate@binkert.org # As gcc and clang share many flags, do the common parts here 6833118Sstever@eecs.umich.edu main.Append(CCFLAGS=['-pipe']) 6845863Snate@binkert.org main.Append(CCFLAGS=['-fno-strict-aliasing']) 6853118Sstever@eecs.umich.edu # Enable -Wall and -Wextra and then disable the few warnings that 6863118Sstever@eecs.umich.edu # we consistently violate 6875863Snate@binkert.org main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra', 6885863Snate@binkert.org '-Wno-sign-compare', '-Wno-unused-parameter']) 6895863Snate@binkert.org # We always compile using C++11 6905863Snate@binkert.org main.Append(CXXFLAGS=['-std=c++11']) 6913118Sstever@eecs.umich.edu if sys.platform.startswith('freebsd'): 6923483Ssaidi@eecs.umich.edu main.Append(CCFLAGS=['-I/usr/local/include']) 6933494Ssaidi@eecs.umich.edu main.Append(CXXFLAGS=['-I/usr/local/include']) 6943494Ssaidi@eecs.umich.edu 6953483Ssaidi@eecs.umich.edu main['FILTER_PSHLINKFLAGS'] = lambda x: str(x).replace(' -shared', '') 6963483Ssaidi@eecs.umich.edu main['PSHLINKFLAGS'] = main.subst('${FILTER_PSHLINKFLAGS(SHLINKFLAGS)}') 6973483Ssaidi@eecs.umich.edu main['PLINKFLAGS'] = main.subst('${LINKFLAGS}') 6983053Sstever@eecs.umich.edu shared_partial_flags = ['-r', '-nostdlib'] 6993053Sstever@eecs.umich.edu main.Append(PSHLINKFLAGS=shared_partial_flags) 7003918Ssaidi@eecs.umich.edu main.Append(PLINKFLAGS=shared_partial_flags) 7013053Sstever@eecs.umich.eduelse: 7023053Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 7033053Sstever@eecs.umich.edu print "Don't know what compiler options to use for your compiler." 7043053Sstever@eecs.umich.edu print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 7053053Sstever@eecs.umich.edu print termcap.Yellow + ' version:' + termcap.Normal, 7067840Snate@binkert.org if not CXX_version: 7077840Snate@binkert.org print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 7087840Snate@binkert.org termcap.Normal 7097840Snate@binkert.org else: 7107840Snate@binkert.org print CXX_version.replace('\n', '<nl>') 7117840Snate@binkert.org print " If you're trying to use a compiler other than GCC" 7127840Snate@binkert.org print " or clang, there appears to be something wrong with your" 7131858SN/A print " environment." 7141858SN/A print " " 7151858SN/A print " If you are trying to use a compiler other than those listed" 7161858SN/A print " above you will need to ease fix SConstruct and " 7171858SN/A print " src/SConscript to support that compiler." 7181858SN/A Exit(1) 7195863Snate@binkert.org 7205863Snate@binkert.orgif main['GCC']: 7211859SN/A # Check for a supported version of gcc. >= 4.8 is chosen for its 7225863Snate@binkert.org # level of c++11 support. See 7231858SN/A # http://gcc.gnu.org/projects/cxx0x.html for details. 7245863Snate@binkert.org gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 7251858SN/A if compareVersions(gcc_version, "4.8") < 0: 7261859SN/A print 'Error: gcc version 4.8 or newer required.' 7271859SN/A print ' Installed version:', gcc_version 7286654Snate@binkert.org Exit(1) 7293053Sstever@eecs.umich.edu 7306654Snate@binkert.org main['GCC_VERSION'] = gcc_version 7313053Sstever@eecs.umich.edu 7323053Sstever@eecs.umich.edu if compareVersions(gcc_version, '4.9') >= 0: 7331859SN/A # Incremental linking with LTO is currently broken in gcc versions 7341859SN/A # 4.9 and above. A version where everything works completely hasn't 7351859SN/A # yet been identified. 7361859SN/A # 7371859SN/A # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67548 7381859SN/A main['BROKEN_INCREMENTAL_LTO'] = True 7391859SN/A if compareVersions(gcc_version, '6.0') >= 0: 7401859SN/A # gcc versions 6.0 and greater accept an -flinker-output flag which 7411862SN/A # selects what type of output the linker should generate. This is 7421859SN/A # necessary for incremental lto to work, but is also broken in 7431859SN/A # current versions of gcc. It may not be necessary in future 7441859SN/A # versions. We add it here since it might be, and as a reminder that 7455863Snate@binkert.org # it exists. It's excluded if lto is being forced. 7465863Snate@binkert.org # 7475863Snate@binkert.org # https://gcc.gnu.org/gcc-6/changes.html 7485863Snate@binkert.org # https://gcc.gnu.org/ml/gcc-patches/2015-11/msg03161.html 7496121Snate@binkert.org # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69866 7501858SN/A if not GetOption('force_lto'): 7515863Snate@binkert.org main.Append(PSHLINKFLAGS='-flinker-output=rel') 7525863Snate@binkert.org main.Append(PLINKFLAGS='-flinker-output=rel') 7535863Snate@binkert.org 7545863Snate@binkert.org # gcc from version 4.8 and above generates "rep; ret" instructions 7555863Snate@binkert.org # to avoid performance penalties on certain AMD chips. Older 7562139SN/A # assemblers detect this as an error, "Error: expecting string 7574202Sbinkertn@umich.edu # instruction after `rep'" 7584202Sbinkertn@umich.edu as_version_raw = readCommand([main['AS'], '-v', '/dev/null', 7592139SN/A '-o', '/dev/null'], 7606994Snate@binkert.org exception=False).split() 7616994Snate@binkert.org 7626994Snate@binkert.org # version strings may contain extra distro-specific 7636994Snate@binkert.org # qualifiers, so play it safe and keep only what comes before 7646994Snate@binkert.org # the first hyphen 7656994Snate@binkert.org as_version = as_version_raw[-1].split('-')[0] if as_version_raw else None 7666994Snate@binkert.org 7676994Snate@binkert.org if not as_version or compareVersions(as_version, "2.23") < 0: 7686994Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7696994Snate@binkert.org 'Warning: This combination of gcc and binutils have' + \ 7706994Snate@binkert.org ' known incompatibilities.\n' + \ 7716994Snate@binkert.org ' If you encounter build problems, please update ' + \ 7726994Snate@binkert.org 'binutils to 2.23.' + \ 7736994Snate@binkert.org termcap.Normal 7746994Snate@binkert.org 7756994Snate@binkert.org # Make sure we warn if the user has requested to compile with the 7766994Snate@binkert.org # Undefined Benahvior Sanitizer and this version of gcc does not 7776994Snate@binkert.org # support it. 7786994Snate@binkert.org if GetOption('with_ubsan') and \ 7796994Snate@binkert.org compareVersions(gcc_version, '4.9') < 0: 7806994Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7816994Snate@binkert.org 'Warning: UBSan is only supported using gcc 4.9 and later.' + \ 7826994Snate@binkert.org termcap.Normal 7836994Snate@binkert.org 7846994Snate@binkert.org disable_lto = GetOption('no_lto') 7856994Snate@binkert.org if not disable_lto and main.get('BROKEN_INCREMENTAL_LTO', False) and \ 7866994Snate@binkert.org not GetOption('force_lto'): 7876994Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7882155SN/A 'Warning: Your compiler doesn\'t support incremental linking' + \ 7895863Snate@binkert.org ' and lto at the same time, so lto is being disabled. To force' + \ 7901869SN/A ' lto on anyway, use the --force-lto option. That will disable' + \ 7911869SN/A ' partial linking.' + \ 7925863Snate@binkert.org termcap.Normal 7935863Snate@binkert.org disable_lto = True 7944202Sbinkertn@umich.edu 7956108Snate@binkert.org # Add the appropriate Link-Time Optimization (LTO) flags 7966108Snate@binkert.org # unless LTO is explicitly turned off. Note that these flags 7976108Snate@binkert.org # are only used by the fast target. 7986108Snate@binkert.org if not disable_lto: 7994202Sbinkertn@umich.edu # Pass the LTO flag when compiling to produce GIMPLE 8005863Snate@binkert.org # output, we merely create the flags here and only append 8015742Snate@binkert.org # them later 8025742Snate@binkert.org main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 8035341Sstever@gmail.com 8045342Sstever@gmail.com # Use the same amount of jobs for LTO as we are running 8055342Sstever@gmail.com # scons with 8064202Sbinkertn@umich.edu main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 8074202Sbinkertn@umich.edu 8084202Sbinkertn@umich.edu main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc', 8095863Snate@binkert.org '-fno-builtin-realloc', '-fno-builtin-free']) 8105863Snate@binkert.org 8115863Snate@binkert.org # add option to check for undeclared overrides 8126994Snate@binkert.org if compareVersions(gcc_version, "5.0") > 0: 8136994Snate@binkert.org main.Append(CCFLAGS=['-Wno-error=suggest-override']) 8146994Snate@binkert.org 8155863Snate@binkert.orgelif main['CLANG']: 8165863Snate@binkert.org # Check for a supported version of clang, >= 3.1 is needed to 8175863Snate@binkert.org # support similar features as gcc 4.8. See 8185863Snate@binkert.org # http://clang.llvm.org/cxx_status.html for details 8195863Snate@binkert.org clang_version_re = re.compile(".* version (\d+\.\d+)") 8205863Snate@binkert.org clang_version_match = clang_version_re.search(CXX_version) 8215863Snate@binkert.org if (clang_version_match): 8225863Snate@binkert.org clang_version = clang_version_match.groups()[0] 8235863Snate@binkert.org if compareVersions(clang_version, "3.1") < 0: 8245863Snate@binkert.org print 'Error: clang version 3.1 or newer required.' 8255863Snate@binkert.org print ' Installed version:', clang_version 8265863Snate@binkert.org Exit(1) 8275863Snate@binkert.org else: 8285863Snate@binkert.org print 'Error: Unable to determine clang version.' 8297840Snate@binkert.org Exit(1) 8305863Snate@binkert.org 8315863Snate@binkert.org # clang has a few additional warnings that we disable, extraneous 8325952Ssaidi@eecs.umich.edu # parantheses are allowed due to Ruby's printing of the AST, 8337450Sstever@gmail.com # finally self assignments are allowed as the generated CPU code 8341869SN/A # is relying on this 8351858SN/A main.Append(CCFLAGS=['-Wno-parentheses', 8365863Snate@binkert.org '-Wno-self-assign', 8376108Snate@binkert.org # Some versions of libstdc++ (4.8?) seem to 8386108Snate@binkert.org # use struct hash and class hash 8397840Snate@binkert.org # interchangeably. 8407840Snate@binkert.org '-Wno-mismatched-tags', 8411858SN/A ]) 842955SN/A 843955SN/A main.Append(TCMALLOC_CCFLAGS=['-fno-builtin']) 8441869SN/A 8451869SN/A # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 8461869SN/A # opposed to libstdc++, as the later is dated. 8471869SN/A if sys.platform == "darwin": 8481869SN/A main.Append(CXXFLAGS=['-stdlib=libc++']) 8495863Snate@binkert.org main.Append(LIBS=['c++']) 8505863Snate@binkert.org 8515863Snate@binkert.org # On FreeBSD we need libthr. 8521869SN/A if sys.platform.startswith('freebsd'): 8535863Snate@binkert.org main.Append(LIBS=['thr']) 8541869SN/A 8555863Snate@binkert.orgelse: 8561869SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 8571869SN/A print "Don't know what compiler options to use for your compiler." 8581869SN/A print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 8591869SN/A print termcap.Yellow + ' version:' + termcap.Normal, 8601869SN/A if not CXX_version: 8615863Snate@binkert.org print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 8625863Snate@binkert.org termcap.Normal 8631869SN/A else: 8641869SN/A print CXX_version.replace('\n', '<nl>') 8651869SN/A print " If you're trying to use a compiler other than GCC" 8661869SN/A print " or clang, there appears to be something wrong with your" 8671869SN/A print " environment." 8681869SN/A print " " 8691869SN/A print " If you are trying to use a compiler other than those listed" 8705863Snate@binkert.org print " above you will need to ease fix SConstruct and " 8715863Snate@binkert.org print " src/SConscript to support that compiler." 8721869SN/A Exit(1) 8735863Snate@binkert.org 8745863Snate@binkert.org# Set up common yacc/bison flags (needed for Ruby) 8753356Sbinkertn@umich.edumain['YACCFLAGS'] = '-d' 8763356Sbinkertn@umich.edumain['YACCHXXFILESUFFIX'] = '.hh' 8773356Sbinkertn@umich.edu 8783356Sbinkertn@umich.edu# Do this after we save setting back, or else we'll tack on an 8793356Sbinkertn@umich.edu# extra 'qdo' every time we run scons. 8804781Snate@binkert.orgif main['BATCH']: 8815863Snate@binkert.org main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 8825863Snate@binkert.org main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 8831869SN/A main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 8841869SN/A main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 8851869SN/A main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 8866121Snate@binkert.org 8871869SN/Aif sys.platform == 'cygwin': 8882638Sstever@eecs.umich.edu # cygwin has some header file issues... 8896121Snate@binkert.org main.Append(CCFLAGS=["-Wno-uninitialized"]) 8906121Snate@binkert.org 8912638Sstever@eecs.umich.edu# Check for the protobuf compiler 8925749Scws3k@cs.virginia.eduprotoc_version = readCommand([main['PROTOC'], '--version'], 8936121Snate@binkert.org exception='').split() 8946121Snate@binkert.org 8955749Scws3k@cs.virginia.edu# First two words should be "libprotoc x.y.z" 8961869SN/Aif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 8971869SN/A print termcap.Yellow + termcap.Bold + \ 8983546Sgblack@eecs.umich.edu 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 8993546Sgblack@eecs.umich.edu ' Please install protobuf-compiler for tracing support.' + \ 9003546Sgblack@eecs.umich.edu termcap.Normal 9013546Sgblack@eecs.umich.edu main['PROTOC'] = False 9026121Snate@binkert.orgelse: 9035863Snate@binkert.org # Based on the availability of the compress stream wrappers, 9043546Sgblack@eecs.umich.edu # require 2.1.0 9053546Sgblack@eecs.umich.edu min_protoc_version = '2.1.0' 9063546Sgblack@eecs.umich.edu if compareVersions(protoc_version[1], min_protoc_version) < 0: 9073546Sgblack@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 9084781Snate@binkert.org 'Warning: protoc version', min_protoc_version, \ 9094781Snate@binkert.org 'or newer required.\n' + \ 9106658Snate@binkert.org ' Installed version:', protoc_version[1], \ 9116658Snate@binkert.org termcap.Normal 9124781Snate@binkert.org main['PROTOC'] = False 9133546Sgblack@eecs.umich.edu else: 9143546Sgblack@eecs.umich.edu # Attempt to determine the appropriate include path and 9153546Sgblack@eecs.umich.edu # library path using pkg-config, that means we also need to 9163546Sgblack@eecs.umich.edu # check for pkg-config. Note that it is possible to use 9177756SAli.Saidi@ARM.com # protobuf without the involvement of pkg-config. Later on we 9187816Ssteve.reinhardt@amd.com # check go a library config check and at that point the test 9193546Sgblack@eecs.umich.edu # will fail if libprotobuf cannot be found. 9203546Sgblack@eecs.umich.edu if readCommand(['pkg-config', '--version'], exception=''): 9213546Sgblack@eecs.umich.edu try: 9223546Sgblack@eecs.umich.edu # Attempt to establish what linking flags to add for protobuf 9234202Sbinkertn@umich.edu # using pkg-config 9243546Sgblack@eecs.umich.edu main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 9253546Sgblack@eecs.umich.edu except: 9263546Sgblack@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 927955SN/A 'Warning: pkg-config could not get protobuf flags.' + \ 928955SN/A termcap.Normal 929955SN/A 930955SN/A 9315863Snate@binkert.org# Check for 'timeout' from GNU coreutils. If present, regressions will 9325863Snate@binkert.org# be run with a time limit. We require version 8.13 since we rely on 9335343Sstever@gmail.com# support for the '--foreground' option. 9345343Sstever@gmail.comif sys.platform.startswith('freebsd'): 9356121Snate@binkert.org timeout_lines = readCommand(['gtimeout', '--version'], 9365863Snate@binkert.org exception='').splitlines() 9374773Snate@binkert.orgelse: 9385863Snate@binkert.org timeout_lines = readCommand(['timeout', '--version'], 9392632Sstever@eecs.umich.edu exception='').splitlines() 9405863Snate@binkert.org# Get the first line and tokenize it 9412023SN/Atimeout_version = timeout_lines[0].split() if timeout_lines else [] 9425863Snate@binkert.orgmain['TIMEOUT'] = timeout_version and \ 9435863Snate@binkert.org compareVersions(timeout_version[-1], '8.13') >= 0 9445863Snate@binkert.org 9455863Snate@binkert.org# Add a custom Check function to test for structure members. 9465863Snate@binkert.orgdef CheckMember(context, include, decl, member, include_quotes="<>"): 9475863Snate@binkert.org context.Message("Checking for member %s in %s..." % 9485863Snate@binkert.org (member, decl)) 9495863Snate@binkert.org text = """ 9505863Snate@binkert.org#include %(header)s 9512632Sstever@eecs.umich.eduint main(){ 9525863Snate@binkert.org %(decl)s test; 9532023SN/A (void)test.%(member)s; 9542632Sstever@eecs.umich.edu return 0; 9555863Snate@binkert.org}; 9565342Sstever@gmail.com""" % { "header" : include_quotes[0] + include + include_quotes[1], 9575863Snate@binkert.org "decl" : decl, 9582632Sstever@eecs.umich.edu "member" : member, 9595863Snate@binkert.org } 9605863Snate@binkert.org 9612632Sstever@eecs.umich.edu ret = context.TryCompile(text, extension=".cc") 9625863Snate@binkert.org context.Result(ret) 9635863Snate@binkert.org return ret 9645863Snate@binkert.org 9655863Snate@binkert.org# Platform-specific configuration. Note again that we assume that all 9665863Snate@binkert.org# builds under a given build root run on the same host platform. 9675863Snate@binkert.orgconf = Configure(main, 9682632Sstever@eecs.umich.edu conf_dir = joinpath(build_root, '.scons_config'), 9695863Snate@binkert.org log_file = joinpath(build_root, 'scons_config.log'), 9705863Snate@binkert.org custom_tests = { 9712632Sstever@eecs.umich.edu 'CheckMember' : CheckMember, 9721888SN/A }) 9735863Snate@binkert.org 9745863Snate@binkert.org# Check if we should compile a 64 bit binary on Mac OS X/Darwin 9751858SN/Atry: 9765863Snate@binkert.org import platform 9777756SAli.Saidi@ARM.com uname = platform.uname() 9782598SN/A if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 9795863Snate@binkert.org if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 9801858SN/A main.Append(CCFLAGS=['-arch', 'x86_64']) 9811858SN/A main.Append(CFLAGS=['-arch', 'x86_64']) 9821858SN/A main.Append(LINKFLAGS=['-arch', 'x86_64']) 9835863Snate@binkert.org main.Append(ASFLAGS=['-arch', 'x86_64']) 9841858SN/Aexcept: 9851858SN/A pass 9861858SN/A 9875863Snate@binkert.org# Recent versions of scons substitute a "Null" object for Configure() 9881871SN/A# when configuration isn't necessary, e.g., if the "--help" option is 9891858SN/A# present. Unfortuantely this Null object always returns false, 9901858SN/A# breaking all our configuration checks. We replace it with our own 9911858SN/A# more optimistic null object that returns True instead. 9921858SN/Aif not conf: 9931858SN/A def NullCheck(*args, **kwargs): 9941858SN/A return True 9951858SN/A 9965863Snate@binkert.org class NullConf: 9971858SN/A def __init__(self, env): 9981858SN/A self.env = env 9995863Snate@binkert.org def Finish(self): 10001859SN/A return self.env 10011859SN/A def __getattr__(self, mname): 10021869SN/A return NullCheck 10035863Snate@binkert.org 10045863Snate@binkert.org conf = NullConf(main) 10051869SN/A 10061965SN/A# Cache build files in the supplied directory. 10077739Sgblack@eecs.umich.eduif main['M5_BUILD_CACHE']: 10081965SN/A print 'Using build cache located at', main['M5_BUILD_CACHE'] 10092761Sstever@eecs.umich.edu CacheDir(main['M5_BUILD_CACHE']) 10105863Snate@binkert.org 10111869SN/Amain['USE_PYTHON'] = not GetOption('without_python') 10125863Snate@binkert.orgif main['USE_PYTHON']: 10132667Sstever@eecs.umich.edu # Find Python include and library directories for embedding the 10141869SN/A # interpreter. We rely on python-config to resolve the appropriate 10151869SN/A # includes and linker flags. ParseConfig does not seem to understand 10162929Sktlim@umich.edu # the more exotic linker flags such as -Xlinker and -export-dynamic so 10172929Sktlim@umich.edu # we add them explicitly below. If you want to link in an alternate 10185863Snate@binkert.org # version of python, see above for instructions on how to invoke 10192929Sktlim@umich.edu # scons with the appropriate PATH set. 1020955SN/A # 10212598SN/A # First we check if python2-config exists, else we use python-config 1022 python_config = readCommand(['which', 'python2-config'], 1023 exception='').strip() 1024 if not os.path.exists(python_config): 1025 python_config = readCommand(['which', 'python-config'], 1026 exception='').strip() 1027 py_includes = readCommand([python_config, '--includes'], 1028 exception='').split() 1029 # Strip the -I from the include folders before adding them to the 1030 # CPPPATH 1031 main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes)) 1032 1033 # Read the linker flags and split them into libraries and other link 1034 # flags. The libraries are added later through the call the CheckLib. 1035 py_ld_flags = readCommand([python_config, '--ldflags'], 1036 exception='').split() 1037 py_libs = [] 1038 for lib in py_ld_flags: 1039 if not lib.startswith('-l'): 1040 main.Append(LINKFLAGS=[lib]) 1041 else: 1042 lib = lib[2:] 1043 if lib not in py_libs: 1044 py_libs.append(lib) 1045 1046 # verify that this stuff works 1047 if not conf.CheckHeader('Python.h', '<>'): 1048 print "Error: can't find Python.h header in", py_includes 1049 print "Install Python headers (package python-dev on Ubuntu and RedHat)" 1050 Exit(1) 1051 1052 for lib in py_libs: 1053 if not conf.CheckLib(lib): 1054 print "Error: can't find library %s required by python" % lib 1055 Exit(1) 1056 1057# On Solaris you need to use libsocket for socket ops 1058if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1059 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1060 print "Can't find library with socket calls (e.g. accept())" 1061 Exit(1) 1062 1063# Check for zlib. If the check passes, libz will be automatically 1064# added to the LIBS environment variable. 1065if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 1066 print 'Error: did not find needed zlib compression library '\ 1067 'and/or zlib.h header file.' 1068 print ' Please install zlib and try again.' 1069 Exit(1) 1070 1071# If we have the protobuf compiler, also make sure we have the 1072# development libraries. If the check passes, libprotobuf will be 1073# automatically added to the LIBS environment variable. After 1074# this, we can use the HAVE_PROTOBUF flag to determine if we have 1075# got both protoc and libprotobuf available. 1076main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 1077 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 1078 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 1079 1080# If we have the compiler but not the library, print another warning. 1081if main['PROTOC'] and not main['HAVE_PROTOBUF']: 1082 print termcap.Yellow + termcap.Bold + \ 1083 'Warning: did not find protocol buffer library and/or headers.\n' + \ 1084 ' Please install libprotobuf-dev for tracing support.' + \ 1085 termcap.Normal 1086 1087# Check for librt. 1088have_posix_clock = \ 1089 conf.CheckLibWithHeader(None, 'time.h', 'C', 1090 'clock_nanosleep(0,0,NULL,NULL);') or \ 1091 conf.CheckLibWithHeader('rt', 'time.h', 'C', 1092 'clock_nanosleep(0,0,NULL,NULL);') 1093 1094have_posix_timers = \ 1095 conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C', 1096 'timer_create(CLOCK_MONOTONIC, NULL, NULL);') 1097 1098if not GetOption('without_tcmalloc'): 1099 if conf.CheckLib('tcmalloc'): 1100 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1101 elif conf.CheckLib('tcmalloc_minimal'): 1102 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1103 else: 1104 print termcap.Yellow + termcap.Bold + \ 1105 "You can get a 12% performance improvement by "\ 1106 "installing tcmalloc (libgoogle-perftools-dev package "\ 1107 "on Ubuntu or RedHat)." + termcap.Normal 1108 1109 1110# Detect back trace implementations. The last implementation in the 1111# list will be used by default. 1112backtrace_impls = [ "none" ] 1113 1114if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', 1115 'backtrace_symbols_fd((void*)0, 0, 0);'): 1116 backtrace_impls.append("glibc") 1117elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C', 1118 'backtrace_symbols_fd((void*)0, 0, 0);'): 1119 # NetBSD and FreeBSD need libexecinfo. 1120 backtrace_impls.append("glibc") 1121 main.Append(LIBS=['execinfo']) 1122 1123if backtrace_impls[-1] == "none": 1124 default_backtrace_impl = "none" 1125 print termcap.Yellow + termcap.Bold + \ 1126 "No suitable back trace implementation found." + \ 1127 termcap.Normal 1128 1129if not have_posix_clock: 1130 print "Can't find library for POSIX clocks." 1131 1132# Check for <fenv.h> (C99 FP environment control) 1133have_fenv = conf.CheckHeader('fenv.h', '<>') 1134if not have_fenv: 1135 print "Warning: Header file <fenv.h> not found." 1136 print " This host has no IEEE FP rounding mode control." 1137 1138# Check if we should enable KVM-based hardware virtualization. The API 1139# we rely on exists since version 2.6.36 of the kernel, but somehow 1140# the KVM_API_VERSION does not reflect the change. We test for one of 1141# the types as a fall back. 1142have_kvm = conf.CheckHeader('linux/kvm.h', '<>') 1143if not have_kvm: 1144 print "Info: Compatible header file <linux/kvm.h> not found, " \ 1145 "disabling KVM support." 1146 1147# Check if the TUN/TAP driver is available. 1148have_tuntap = conf.CheckHeader('linux/if_tun.h', '<>') 1149if not have_tuntap: 1150 print "Info: Compatible header file <linux/if_tun.h> not found." 1151 1152# x86 needs support for xsave. We test for the structure here since we 1153# won't be able to run new tests by the time we know which ISA we're 1154# targeting. 1155have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave', 1156 '#include <linux/kvm.h>') != 0 1157 1158# Check if the requested target ISA is compatible with the host 1159def is_isa_kvm_compatible(isa): 1160 try: 1161 import platform 1162 host_isa = platform.machine() 1163 except: 1164 print "Warning: Failed to determine host ISA." 1165 return False 1166 1167 if not have_posix_timers: 1168 print "Warning: Can not enable KVM, host seems to lack support " \ 1169 "for POSIX timers" 1170 return False 1171 1172 if isa == "arm": 1173 return host_isa in ( "armv7l", "aarch64" ) 1174 elif isa == "x86": 1175 if host_isa != "x86_64": 1176 return False 1177 1178 if not have_kvm_xsave: 1179 print "KVM on x86 requires xsave support in kernel headers." 1180 return False 1181 1182 return True 1183 else: 1184 return False 1185 1186 1187# Check if the exclude_host attribute is available. We want this to 1188# get accurate instruction counts in KVM. 1189main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember( 1190 'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host') 1191 1192 1193###################################################################### 1194# 1195# Finish the configuration 1196# 1197main = conf.Finish() 1198 1199###################################################################### 1200# 1201# Collect all non-global variables 1202# 1203 1204# Define the universe of supported ISAs 1205all_isa_list = [ ] 1206all_gpu_isa_list = [ ] 1207Export('all_isa_list') 1208Export('all_gpu_isa_list') 1209 1210class CpuModel(object): 1211 '''The CpuModel class encapsulates everything the ISA parser needs to 1212 know about a particular CPU model.''' 1213 1214 # Dict of available CPU model objects. Accessible as CpuModel.dict. 1215 dict = {} 1216 1217 # Constructor. Automatically adds models to CpuModel.dict. 1218 def __init__(self, name, default=False): 1219 self.name = name # name of model 1220 1221 # This cpu is enabled by default 1222 self.default = default 1223 1224 # Add self to dict 1225 if name in CpuModel.dict: 1226 raise AttributeError, "CpuModel '%s' already registered" % name 1227 CpuModel.dict[name] = self 1228 1229Export('CpuModel') 1230 1231# Sticky variables get saved in the variables file so they persist from 1232# one invocation to the next (unless overridden, in which case the new 1233# value becomes sticky). 1234sticky_vars = Variables(args=ARGUMENTS) 1235Export('sticky_vars') 1236 1237# Sticky variables that should be exported 1238export_vars = [] 1239Export('export_vars') 1240 1241# For Ruby 1242all_protocols = [] 1243Export('all_protocols') 1244protocol_dirs = [] 1245Export('protocol_dirs') 1246slicc_includes = [] 1247Export('slicc_includes') 1248 1249# Walk the tree and execute all SConsopts scripts that wil add to the 1250# above variables 1251if GetOption('verbose'): 1252 print "Reading SConsopts" 1253for bdir in [ base_dir ] + extras_dir_list: 1254 if not isdir(bdir): 1255 print "Error: directory '%s' does not exist" % bdir 1256 Exit(1) 1257 for root, dirs, files in os.walk(bdir): 1258 if 'SConsopts' in files: 1259 if GetOption('verbose'): 1260 print "Reading", joinpath(root, 'SConsopts') 1261 SConscript(joinpath(root, 'SConsopts')) 1262 1263all_isa_list.sort() 1264all_gpu_isa_list.sort() 1265 1266sticky_vars.AddVariables( 1267 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 1268 EnumVariable('TARGET_GPU_ISA', 'Target GPU ISA', 'hsail', all_gpu_isa_list), 1269 ListVariable('CPU_MODELS', 'CPU models', 1270 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 1271 sorted(CpuModel.dict.keys())), 1272 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 1273 False), 1274 BoolVariable('SS_COMPATIBLE_FP', 1275 'Make floating-point results compatible with SimpleScalar', 1276 False), 1277 BoolVariable('USE_SSE2', 1278 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 1279 False), 1280 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 1281 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 1282 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 1283 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm), 1284 BoolVariable('USE_TUNTAP', 1285 'Enable using a tap device to bridge to the host network', 1286 have_tuntap), 1287 BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False), 1288 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1289 all_protocols), 1290 EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation', 1291 backtrace_impls[-1], backtrace_impls) 1292 ) 1293 1294# These variables get exported to #defines in config/*.hh (see src/SConscript). 1295export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'TARGET_GPU_ISA', 1296 'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'USE_KVM', 'USE_TUNTAP', 1297 'PROTOCOL', 'HAVE_PROTOBUF', 'HAVE_PERF_ATTR_EXCLUDE_HOST'] 1298 1299################################################### 1300# 1301# Define a SCons builder for configuration flag headers. 1302# 1303################################################### 1304 1305# This function generates a config header file that #defines the 1306# variable symbol to the current variable setting (0 or 1). The source 1307# operands are the name of the variable and a Value node containing the 1308# value of the variable. 1309def build_config_file(target, source, env): 1310 (variable, value) = [s.get_contents() for s in source] 1311 f = file(str(target[0]), 'w') 1312 print >> f, '#define', variable, value 1313 f.close() 1314 return None 1315 1316# Combine the two functions into a scons Action object. 1317config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1318 1319# The emitter munges the source & target node lists to reflect what 1320# we're really doing. 1321def config_emitter(target, source, env): 1322 # extract variable name from Builder arg 1323 variable = str(target[0]) 1324 # True target is config header file 1325 target = joinpath('config', variable.lower() + '.hh') 1326 val = env[variable] 1327 if isinstance(val, bool): 1328 # Force value to 0/1 1329 val = int(val) 1330 elif isinstance(val, str): 1331 val = '"' + val + '"' 1332 1333 # Sources are variable name & value (packaged in SCons Value nodes) 1334 return ([target], [Value(variable), Value(val)]) 1335 1336config_builder = Builder(emitter = config_emitter, action = config_action) 1337 1338main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1339 1340################################################### 1341# 1342# Builders for static and shared partially linked object files. 1343# 1344################################################### 1345 1346partial_static_builder = Builder(action=SCons.Defaults.LinkAction, 1347 src_suffix='$OBJSUFFIX', 1348 src_builder=['StaticObject', 'Object'], 1349 LINKFLAGS='$PLINKFLAGS', 1350 LIBS='') 1351 1352def partial_shared_emitter(target, source, env): 1353 for tgt in target: 1354 tgt.attributes.shared = 1 1355 return (target, source) 1356partial_shared_builder = Builder(action=SCons.Defaults.ShLinkAction, 1357 emitter=partial_shared_emitter, 1358 src_suffix='$SHOBJSUFFIX', 1359 src_builder='SharedObject', 1360 SHLINKFLAGS='$PSHLINKFLAGS', 1361 LIBS='') 1362 1363main.Append(BUILDERS = { 'PartialShared' : partial_shared_builder, 1364 'PartialStatic' : partial_static_builder }) 1365 1366# builds in ext are shared across all configs in the build root. 1367ext_dir = abspath(joinpath(str(main.root), 'ext')) 1368ext_build_dirs = [] 1369for root, dirs, files in os.walk(ext_dir): 1370 if 'SConscript' in files: 1371 build_dir = os.path.relpath(root, ext_dir) 1372 ext_build_dirs.append(build_dir) 1373 main.SConscript(joinpath(root, 'SConscript'), 1374 variant_dir=joinpath(build_root, build_dir)) 1375 1376main.Prepend(CPPPATH=Dir('ext/pybind11/include/')) 1377 1378################################################### 1379# 1380# This builder and wrapper method are used to set up a directory with 1381# switching headers. Those are headers which are in a generic location and 1382# that include more specific headers from a directory chosen at build time 1383# based on the current build settings. 1384# 1385################################################### 1386 1387def build_switching_header(target, source, env): 1388 path = str(target[0]) 1389 subdir = str(source[0]) 1390 dp, fp = os.path.split(path) 1391 dp = os.path.relpath(os.path.realpath(dp), 1392 os.path.realpath(env['BUILDDIR'])) 1393 with open(path, 'w') as hdr: 1394 print >>hdr, '#include "%s/%s/%s"' % (dp, subdir, fp) 1395 1396switching_header_action = MakeAction(build_switching_header, 1397 Transform('GENERATE')) 1398 1399switching_header_builder = Builder(action=switching_header_action, 1400 source_factory=Value, 1401 single_source=True) 1402 1403main.Append(BUILDERS = { 'SwitchingHeader': switching_header_builder }) 1404 1405def switching_headers(self, headers, source): 1406 for header in headers: 1407 self.SwitchingHeader(header, source) 1408 1409main.AddMethod(switching_headers, 'SwitchingHeaders') 1410 1411# all-isas -> all-deps -> all-environs -> all_targets 1412main.Alias('#all-isas', []) 1413main.Alias('#all-deps', '#all-isas') 1414 1415# Dummy target to ensure all environments are created before telling 1416# SCons what to actually make (the command line arguments). We attach 1417# them to the dependence graph after the environments are complete. 1418ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work. 1419def environsComplete(target, source, env): 1420 for t in ORIG_BUILD_TARGETS: 1421 main.Depends('#all-targets', t) 1422 1423# Each build/* switching_dir attaches its *-environs target to #all-environs. 1424main.Append(BUILDERS = {'CompleteEnvirons' : 1425 Builder(action=MakeAction(environsComplete, None))}) 1426main.CompleteEnvirons('#all-environs', []) 1427 1428def doNothing(**ignored): pass 1429main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))}) 1430 1431# The final target to which all the original targets ultimately get attached. 1432main.Dummy('#all-targets', '#all-environs') 1433BUILD_TARGETS[:] = ['#all-targets'] 1434 1435################################################### 1436# 1437# Define build environments for selected configurations. 1438# 1439################################################### 1440 1441def variant_name(path): 1442 return os.path.basename(path).lower().replace('_', '-') 1443main['variant_name'] = variant_name 1444main['VARIANT_NAME'] = '${variant_name(BUILDDIR)}' 1445 1446for variant_path in variant_paths: 1447 if not GetOption('silent'): 1448 print "Building in", variant_path 1449 1450 # Make a copy of the build-root environment to use for this config. 1451 env = main.Clone() 1452 env['BUILDDIR'] = variant_path 1453 1454 # variant_dir is the tail component of build path, and is used to 1455 # determine the build parameters (e.g., 'ALPHA_SE') 1456 (build_root, variant_dir) = splitpath(variant_path) 1457 1458 # Set env variables according to the build directory config. 1459 sticky_vars.files = [] 1460 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1461 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1462 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1463 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1464 if isfile(current_vars_file): 1465 sticky_vars.files.append(current_vars_file) 1466 if not GetOption('silent'): 1467 print "Using saved variables file %s" % current_vars_file 1468 elif variant_dir in ext_build_dirs: 1469 # Things in ext are built without a variant directory. 1470 continue 1471 else: 1472 # Build dir-specific variables file doesn't exist. 1473 1474 # Make sure the directory is there so we can create it later 1475 opt_dir = dirname(current_vars_file) 1476 if not isdir(opt_dir): 1477 mkdir(opt_dir) 1478 1479 # Get default build variables from source tree. Variables are 1480 # normally determined by name of $VARIANT_DIR, but can be 1481 # overridden by '--default=' arg on command line. 1482 default = GetOption('default') 1483 opts_dir = joinpath(main.root.abspath, 'build_opts') 1484 if default: 1485 default_vars_files = [joinpath(build_root, 'variables', default), 1486 joinpath(opts_dir, default)] 1487 else: 1488 default_vars_files = [joinpath(opts_dir, variant_dir)] 1489 existing_files = filter(isfile, default_vars_files) 1490 if existing_files: 1491 default_vars_file = existing_files[0] 1492 sticky_vars.files.append(default_vars_file) 1493 print "Variables file %s not found,\n using defaults in %s" \ 1494 % (current_vars_file, default_vars_file) 1495 else: 1496 print "Error: cannot find variables file %s or " \ 1497 "default file(s) %s" \ 1498 % (current_vars_file, ' or '.join(default_vars_files)) 1499 Exit(1) 1500 1501 # Apply current variable settings to env 1502 sticky_vars.Update(env) 1503 1504 help_texts["local_vars"] += \ 1505 "Build variables for %s:\n" % variant_dir \ 1506 + sticky_vars.GenerateHelpText(env) 1507 1508 # Process variable settings. 1509 1510 if not have_fenv and env['USE_FENV']: 1511 print "Warning: <fenv.h> not available; " \ 1512 "forcing USE_FENV to False in", variant_dir + "." 1513 env['USE_FENV'] = False 1514 1515 if not env['USE_FENV']: 1516 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1517 print " FP results may deviate slightly from other platforms." 1518 1519 if env['EFENCE']: 1520 env.Append(LIBS=['efence']) 1521 1522 if env['USE_KVM']: 1523 if not have_kvm: 1524 print "Warning: Can not enable KVM, host seems to lack KVM support" 1525 env['USE_KVM'] = False 1526 elif not is_isa_kvm_compatible(env['TARGET_ISA']): 1527 print "Info: KVM support disabled due to unsupported host and " \ 1528 "target ISA combination" 1529 env['USE_KVM'] = False 1530 1531 if env['USE_TUNTAP']: 1532 if not have_tuntap: 1533 print "Warning: Can't connect EtherTap with a tap device." 1534 env['USE_TUNTAP'] = False 1535 1536 if env['BUILD_GPU']: 1537 env.Append(CPPDEFINES=['BUILD_GPU']) 1538 1539 # Warn about missing optional functionality 1540 if env['USE_KVM']: 1541 if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']: 1542 print "Warning: perf_event headers lack support for the " \ 1543 "exclude_host attribute. KVM instruction counts will " \ 1544 "be inaccurate." 1545 1546 # Save sticky variable settings back to current variables file 1547 sticky_vars.Save(current_vars_file, env) 1548 1549 if env['USE_SSE2']: 1550 env.Append(CCFLAGS=['-msse2']) 1551 1552 # The src/SConscript file sets up the build rules in 'env' according 1553 # to the configured variables. It returns a list of environments, 1554 # one for each variant build (debug, opt, etc.) 1555 SConscript('src/SConscript', variant_dir = variant_path, exports = 'env') 1556 1557def pairwise(iterable): 1558 "s -> (s0,s1), (s1,s2), (s2, s3), ..." 1559 a, b = itertools.tee(iterable) 1560 b.next() 1561 return itertools.izip(a, b) 1562 1563variant_names = [variant_name(path) for path in variant_paths] 1564 1565# Create false dependencies so SCons will parse ISAs, establish 1566# dependencies, and setup the build Environments serially. Either 1567# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j 1568# greater than 1. It appears to be standard race condition stuff; it 1569# doesn't always fail, but usually, and the behaviors are different. 1570# Every time I tried to remove this, builds would fail in some 1571# creative new way. So, don't do that. You'll want to, though, because 1572# tests/SConscript takes a long time to make its Environments. 1573for t1, t2 in pairwise(sorted(variant_names)): 1574 main.Depends('#%s-deps' % t2, '#%s-deps' % t1) 1575 main.Depends('#%s-environs' % t2, '#%s-environs' % t1) 1576 1577# base help text 1578Help(''' 1579Usage: scons [scons options] [build variables] [target(s)] 1580 1581Extra scons options: 1582%(options)s 1583 1584Global build variables: 1585%(global_vars)s 1586 1587%(local_vars)s 1588''' % help_texts) 1589