SConstruct revision 12243
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2013, 2015-2017 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# Global Python includes 825227Ssaidi@eecs.umich.eduimport itertools 835227Ssaidi@eecs.umich.eduimport os 845227Ssaidi@eecs.umich.eduimport re 855227Ssaidi@eecs.umich.eduimport shutil 865396Ssaidi@eecs.umich.eduimport subprocess 875396Ssaidi@eecs.umich.eduimport sys 885396Ssaidi@eecs.umich.edu 895396Ssaidi@eecs.umich.edufrom os import mkdir, environ 905396Ssaidi@eecs.umich.edufrom os.path import abspath, basename, dirname, expanduser, normpath 915396Ssaidi@eecs.umich.edufrom os.path import exists, isdir, isfile 925396Ssaidi@eecs.umich.edufrom os.path import join as joinpath, split as splitpath 935396Ssaidi@eecs.umich.edu 945588Ssaidi@eecs.umich.edu# SCons includes 955396Ssaidi@eecs.umich.eduimport SCons 965396Ssaidi@eecs.umich.eduimport SCons.Node 975396Ssaidi@eecs.umich.edu 985396Ssaidi@eecs.umich.eduextra_python_paths = [ 995396Ssaidi@eecs.umich.edu Dir('src/python').srcnode().abspath, # gem5 includes 1005396Ssaidi@eecs.umich.edu Dir('ext/ply').srcnode().abspath, # ply is used by several files 1015396Ssaidi@eecs.umich.edu ] 1025396Ssaidi@eecs.umich.edu 1035396Ssaidi@eecs.umich.edusys.path[1:1] = extra_python_paths 1045396Ssaidi@eecs.umich.edu 1055396Ssaidi@eecs.umich.edufrom m5.util import compareVersions, readCommand 1065396Ssaidi@eecs.umich.edufrom m5.util.terminal import get_termcap 1075396Ssaidi@eecs.umich.edu 1085396Ssaidi@eecs.umich.eduhelp_texts = { 1095396Ssaidi@eecs.umich.edu "options" : "", 1105396Ssaidi@eecs.umich.edu "global_vars" : "", 1115396Ssaidi@eecs.umich.edu "local_vars" : "" 1125396Ssaidi@eecs.umich.edu} 1135396Ssaidi@eecs.umich.edu 1145396Ssaidi@eecs.umich.eduExport("help_texts") 1155396Ssaidi@eecs.umich.edu 1165396Ssaidi@eecs.umich.edu 1175396Ssaidi@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from 1185396Ssaidi@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h' 1195396Ssaidi@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the 1205396Ssaidi@eecs.umich.edu# Help() function, but these two features are incompatible: once 1215396Ssaidi@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get 1225396Ssaidi@eecs.umich.edu# at the help texts from AddOptions. See: 1235396Ssaidi@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2356 1245396Ssaidi@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1255396Ssaidi@eecs.umich.edu# This hack lets us extract the help text from AddOptions and 1265396Ssaidi@eecs.umich.edu# re-inject it via Help(). Ideally someday this bug will be fixed and 1275396Ssaidi@eecs.umich.edu# we can just use AddOption directly. 1285396Ssaidi@eecs.umich.edudef AddLocalOption(*args, **kwargs): 1295396Ssaidi@eecs.umich.edu col_width = 30 1305396Ssaidi@eecs.umich.edu 1315396Ssaidi@eecs.umich.edu help = " " + ", ".join(args) 1325396Ssaidi@eecs.umich.edu if "help" in kwargs: 1335396Ssaidi@eecs.umich.edu length = len(help) 1345396Ssaidi@eecs.umich.edu if length >= col_width: 1355396Ssaidi@eecs.umich.edu help += "\n" + " " * col_width 1365396Ssaidi@eecs.umich.edu else: 1375396Ssaidi@eecs.umich.edu help += " " * (col_width - length) 1385396Ssaidi@eecs.umich.edu help += kwargs["help"] 1395396Ssaidi@eecs.umich.edu help_texts["options"] += help + "\n" 1405396Ssaidi@eecs.umich.edu 1415396Ssaidi@eecs.umich.edu AddOption(*args, **kwargs) 1425396Ssaidi@eecs.umich.edu 1435396Ssaidi@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true', 1445396Ssaidi@eecs.umich.edu help="Add color to abbreviated scons output") 1455396Ssaidi@eecs.umich.eduAddLocalOption('--no-colors', dest='use_colors', action='store_false', 1465396Ssaidi@eecs.umich.edu help="Don't add color to abbreviated scons output") 1474781Snate@binkert.orgAddLocalOption('--with-cxx-config', dest='with_cxx_config', 1481852SN/A action='store_true', 149955SN/A help="Build with support for C++-based configuration") 150955SN/AAddLocalOption('--default', dest='default', type='string', action='store', 151955SN/A help='Override which build_opts file to use for defaults') 1523717Sstever@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 1533716Sstever@eecs.umich.edu help='Disable style checking hooks') 154955SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true', 1551533SN/A help='Disable Link-Time Optimization for fast') 1563716Sstever@eecs.umich.eduAddLocalOption('--force-lto', dest='force_lto', action='store_true', 1571533SN/A help='Use Link-Time Optimization instead of partial linking' + 1584678Snate@binkert.org ' when the compiler doesn\'t support using them together.') 1594678Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1604678Snate@binkert.org help='Update test reference outputs') 1614678Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true', 1624678Snate@binkert.org help='Print full tool command lines') 1634678Snate@binkert.orgAddLocalOption('--without-python', dest='without_python', 1644678Snate@binkert.org action='store_true', 1654678Snate@binkert.org help='Build without Python configuration support') 1664678Snate@binkert.orgAddLocalOption('--without-tcmalloc', dest='without_tcmalloc', 1674678Snate@binkert.org action='store_true', 1684678Snate@binkert.org help='Disable linking against tcmalloc') 1694678Snate@binkert.orgAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true', 1704678Snate@binkert.org help='Build with Undefined Behavior Sanitizer if available') 1714678Snate@binkert.orgAddLocalOption('--with-asan', dest='with_asan', action='store_true', 1724678Snate@binkert.org help='Build with Address Sanitizer if available') 1734678Snate@binkert.org 1744678Snate@binkert.orgif GetOption('no_lto') and GetOption('force_lto'): 1754678Snate@binkert.org print '--no-lto and --force-lto are mutually exclusive' 1764678Snate@binkert.org Exit(1) 1774678Snate@binkert.org 1784678Snate@binkert.orgtermcap = get_termcap(GetOption('use_colors')) 1794973Ssaidi@eecs.umich.edu 1804678Snate@binkert.org######################################################################## 1814678Snate@binkert.org# 1824678Snate@binkert.org# Set up the main build environment. 1834678Snate@binkert.org# 1844678Snate@binkert.org######################################################################## 1854678Snate@binkert.org 186955SN/Amain = Environment() 187955SN/A 1882632Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 1892632Sstever@eecs.umich.edu 190955SN/A# Check that we have a C/C++ compiler 191955SN/Aif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 192955SN/A print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 193955SN/A Exit(1) 1942632Sstever@eecs.umich.edu 195955SN/A# add useful python code PYTHONPATH so it can be used by subprocesses 1962632Sstever@eecs.umich.edu# as well 1972632Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths) 1982632Sstever@eecs.umich.edu 1992632Sstever@eecs.umich.edu######################################################################## 2002632Sstever@eecs.umich.edu# 2012632Sstever@eecs.umich.edu# Mercurial Stuff. 2022632Sstever@eecs.umich.edu# 2032632Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some 2042632Sstever@eecs.umich.edu# extra things. 2052632Sstever@eecs.umich.edu# 2062632Sstever@eecs.umich.edu######################################################################## 2072632Sstever@eecs.umich.edu 2082632Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg") 2093718Sstever@eecs.umich.edu 2103718Sstever@eecs.umich.edu 2113718Sstever@eecs.umich.edustyle_message = """ 2123718Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2133718Sstever@eecs.umich.eduagainst the gem5 style rules on %s. 2143718Sstever@eecs.umich.eduThis script will now install the hook in your %s. 2153718Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2163718Sstever@eecs.umich.edu 2173718Sstever@eecs.umich.edumercurial_style_message = """ 2183718Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2193718Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands. 2203718Sstever@eecs.umich.eduThis script will now install the hook in your .hg/hgrc file. 2213718Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2222634Sstever@eecs.umich.edu 2232634Sstever@eecs.umich.edugit_style_message = """ 2242632Sstever@eecs.umich.eduYou're missing the gem5 style or commit message hook. These hooks help 2252638Sstever@eecs.umich.eduto ensure that your code follows gem5's style rules on git commit. 2262632Sstever@eecs.umich.eduThis script will now install the hook in your .git/hooks/ directory. 2272632Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2282632Sstever@eecs.umich.edu 2292632Sstever@eecs.umich.edumercurial_style_upgrade_message = """ 2302632Sstever@eecs.umich.eduYour Mercurial style hooks are not up-to-date. This script will now 2312632Sstever@eecs.umich.edutry to automatically update them. A backup of your hgrc will be saved 2321858SN/Ain .hg/hgrc.old. 2333716Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2342638Sstever@eecs.umich.edu 2352638Sstever@eecs.umich.edumercurial_style_hook = """ 2362638Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct 2372638Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks 2382638Sstever@eecs.umich.edu[extensions] 2392638Sstever@eecs.umich.eduhgstyle = %s/util/hgstyle.py 2402638Sstever@eecs.umich.edu 2413716Sstever@eecs.umich.edu[hooks] 2422634Sstever@eecs.umich.edupretxncommit.style = python:hgstyle.check_style 2432634Sstever@eecs.umich.edupre-qrefresh.style = python:hgstyle.check_style 244955SN/A# End of SConstruct additions 2455341Sstever@gmail.com 2465341Sstever@gmail.com""" % (main.root.abspath) 2475341Sstever@gmail.com 2485341Sstever@gmail.commercurial_lib_not_found = """ 249955SN/AMercurial libraries cannot be found, ignoring style hook. If 250955SN/Ayou are a gem5 developer, please fix this and run the style 251955SN/Ahook. It is important. 252955SN/A""" 253955SN/A 254955SN/A# Check for style hook and prompt for installation if it's not there. 255955SN/A# Skip this if --ignore-style was specified, there's no interactive 2561858SN/A# terminal to prompt, or no recognized revision control system can be 2571858SN/A# found. 2582632Sstever@eecs.umich.eduignore_style = GetOption('ignore_style') or not sys.stdin.isatty() 259955SN/A 2604494Ssaidi@eecs.umich.edu# Try wire up Mercurial to the style hooks 2614494Ssaidi@eecs.umich.eduif not ignore_style and hgdir.exists(): 2623716Sstever@eecs.umich.edu style_hook = True 2631105SN/A style_hooks = tuple() 2642667Sstever@eecs.umich.edu hgrc = hgdir.File('hgrc') 2652667Sstever@eecs.umich.edu hgrc_old = hgdir.File('hgrc.old') 2662667Sstever@eecs.umich.edu try: 2672667Sstever@eecs.umich.edu from mercurial import ui 2682667Sstever@eecs.umich.edu ui = ui.ui() 2692667Sstever@eecs.umich.edu ui.readconfig(hgrc.abspath) 2701869SN/A style_hooks = (ui.config('hooks', 'pretxncommit.style', None), 2711869SN/A ui.config('hooks', 'pre-qrefresh.style', None)) 2721869SN/A style_hook = all(style_hooks) 2731869SN/A style_extension = ui.config('extensions', 'style', None) 2741869SN/A except ImportError: 2751065SN/A print mercurial_lib_not_found 2765341Sstever@gmail.com 2775341Sstever@gmail.com if "python:style.check_style" in style_hooks: 2785341Sstever@gmail.com # Try to upgrade the style hooks 2795341Sstever@gmail.com print mercurial_style_upgrade_message 2805341Sstever@gmail.com # continue unless user does ctrl-c/ctrl-d etc. 2815341Sstever@gmail.com try: 2825341Sstever@gmail.com raw_input() 2835341Sstever@gmail.com except: 2845341Sstever@gmail.com print "Input exception, exiting scons.\n" 2855341Sstever@gmail.com sys.exit(1) 2865341Sstever@gmail.com shutil.copyfile(hgrc.abspath, hgrc_old.abspath) 2875341Sstever@gmail.com re_style_hook = re.compile(r"^([^=#]+)\.style\s*=\s*([^#\s]+).*") 2885341Sstever@gmail.com re_style_extension = re.compile("style\s*=\s*([^#\s]+).*") 2895341Sstever@gmail.com old, new = open(hgrc_old.abspath, 'r'), open(hgrc.abspath, 'w') 2905341Sstever@gmail.com for l in old: 2915341Sstever@gmail.com m_hook = re_style_hook.match(l) 2925341Sstever@gmail.com m_ext = re_style_extension.match(l) 2935341Sstever@gmail.com if m_hook: 2945341Sstever@gmail.com hook, check = m_hook.groups() 2955341Sstever@gmail.com if check != "python:style.check_style": 2965341Sstever@gmail.com print "Warning: %s.style is using a non-default " \ 2975341Sstever@gmail.com "checker: %s" % (hook, check) 2985341Sstever@gmail.com if hook not in ("pretxncommit", "pre-qrefresh"): 2995341Sstever@gmail.com print "Warning: Updating unknown style hook: %s" % hook 3005341Sstever@gmail.com 3015341Sstever@gmail.com l = "%s.style = python:hgstyle.check_style\n" % hook 3025341Sstever@gmail.com elif m_ext and m_ext.group(1) == style_extension: 3035397Ssaidi@eecs.umich.edu l = "hgstyle = %s/util/hgstyle.py\n" % main.root.abspath 3045397Ssaidi@eecs.umich.edu 3055341Sstever@gmail.com new.write(l) 3065341Sstever@gmail.com elif not style_hook: 3075341Sstever@gmail.com print mercurial_style_message, 3085341Sstever@gmail.com # continue unless user does ctrl-c/ctrl-d etc. 3095341Sstever@gmail.com try: 3105341Sstever@gmail.com raw_input() 3115341Sstever@gmail.com except: 3125341Sstever@gmail.com print "Input exception, exiting scons.\n" 3135341Sstever@gmail.com sys.exit(1) 3145341Sstever@gmail.com hgrc_path = '%s/.hg/hgrc' % main.root.abspath 3155341Sstever@gmail.com print "Adding style hook to", hgrc_path, "\n" 3165341Sstever@gmail.com try: 3175341Sstever@gmail.com with open(hgrc_path, 'a') as f: 3185341Sstever@gmail.com f.write(mercurial_style_hook) 3195341Sstever@gmail.com except: 3205341Sstever@gmail.com print "Error updating", hgrc_path 3215341Sstever@gmail.com sys.exit(1) 3225341Sstever@gmail.com 3235341Sstever@gmail.comdef install_git_style_hooks(): 3245341Sstever@gmail.com try: 3255341Sstever@gmail.com gitdir = Dir(readCommand( 3265341Sstever@gmail.com ["git", "rev-parse", "--git-dir"]).strip("\n")) 3275742Snate@binkert.org except Exception, e: 3285341Sstever@gmail.com print "Warning: Failed to find git repo directory: %s" % e 3295742Snate@binkert.org return 3305742Snate@binkert.org 3315742Snate@binkert.org git_hooks = gitdir.Dir("hooks") 3325341Sstever@gmail.com def hook_exists(hook_name): 3335742Snate@binkert.org hook = git_hooks.File(hook_name) 3345742Snate@binkert.org return hook.exists() 3355341Sstever@gmail.com 3362632Sstever@eecs.umich.edu def hook_install(hook_name, script): 3375199Sstever@gmail.com hook = git_hooks.File(hook_name) 3384781Snate@binkert.org if hook.exists(): 3394781Snate@binkert.org print "Warning: Can't install %s, hook already exists." % hook_name 3405550Snate@binkert.org return 3414781Snate@binkert.org 3424781Snate@binkert.org if hook.islink(): 3433918Ssaidi@eecs.umich.edu print "Warning: Removing broken symlink for hook %s." % hook_name 3444781Snate@binkert.org os.unlink(hook.get_abspath()) 3454781Snate@binkert.org 3463940Ssaidi@eecs.umich.edu if not git_hooks.exists(): 3473942Ssaidi@eecs.umich.edu mkdir(git_hooks.get_abspath()) 3483940Ssaidi@eecs.umich.edu git_hooks.clear() 3493918Ssaidi@eecs.umich.edu 3503918Ssaidi@eecs.umich.edu abs_symlink_hooks = git_hooks.islink() and \ 351955SN/A os.path.isabs(os.readlink(git_hooks.get_abspath())) 3521858SN/A 3533918Ssaidi@eecs.umich.edu # Use a relative symlink if the hooks live in the source directory, 3543918Ssaidi@eecs.umich.edu # and the hooks directory is not a symlink to an absolute path. 3553918Ssaidi@eecs.umich.edu if hook.is_under(main.root) and not abs_symlink_hooks: 3563918Ssaidi@eecs.umich.edu script_path = os.path.relpath( 3575571Snate@binkert.org os.path.realpath(script.get_abspath()), 3583940Ssaidi@eecs.umich.edu os.path.realpath(hook.Dir(".").get_abspath())) 3593940Ssaidi@eecs.umich.edu else: 3603918Ssaidi@eecs.umich.edu script_path = script.get_abspath() 3613918Ssaidi@eecs.umich.edu 3623918Ssaidi@eecs.umich.edu try: 3633918Ssaidi@eecs.umich.edu os.symlink(script_path, hook.get_abspath()) 3643918Ssaidi@eecs.umich.edu except: 3653918Ssaidi@eecs.umich.edu print "Error updating git %s hook" % hook_name 3663918Ssaidi@eecs.umich.edu raise 3673918Ssaidi@eecs.umich.edu 3683918Ssaidi@eecs.umich.edu if hook_exists("pre-commit") and hook_exists("commit-msg"): 3693940Ssaidi@eecs.umich.edu return 3703918Ssaidi@eecs.umich.edu 3713918Ssaidi@eecs.umich.edu print git_style_message, 3725397Ssaidi@eecs.umich.edu try: 3735397Ssaidi@eecs.umich.edu raw_input() 3745397Ssaidi@eecs.umich.edu except: 3755708Ssaidi@eecs.umich.edu print "Input exception, exiting scons.\n" 3765708Ssaidi@eecs.umich.edu sys.exit(1) 3775708Ssaidi@eecs.umich.edu 3785708Ssaidi@eecs.umich.edu git_style_script = File("util/git-pre-commit.py") 3795708Ssaidi@eecs.umich.edu git_msg_script = File("ext/git-commit-msg") 3805397Ssaidi@eecs.umich.edu 3811851SN/A hook_install("pre-commit", git_style_script) 3821851SN/A hook_install("commit-msg", git_msg_script) 3831858SN/A 3845200Sstever@gmail.com# Try to wire up git to the style hooks 385955SN/Aif not ignore_style and main.root.Entry(".git").exists(): 3863053Sstever@eecs.umich.edu install_git_style_hooks() 3873053Sstever@eecs.umich.edu 3883053Sstever@eecs.umich.edu################################################### 3893053Sstever@eecs.umich.edu# 3903053Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of 3913053Sstever@eecs.umich.edu# the target(s). 3923053Sstever@eecs.umich.edu# 3933053Sstever@eecs.umich.edu################################################### 3943053Sstever@eecs.umich.edu 3954742Sstever@eecs.umich.edu# Find default configuration & binary. 3964742Sstever@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 3973053Sstever@eecs.umich.edu 3983053Sstever@eecs.umich.edu# helper function: find last occurrence of element in list 3993053Sstever@eecs.umich.edudef rfind(l, elt, offs = -1): 4003053Sstever@eecs.umich.edu for i in range(len(l)+offs, 0, -1): 4013053Sstever@eecs.umich.edu if l[i] == elt: 4023053Sstever@eecs.umich.edu return i 4033053Sstever@eecs.umich.edu raise ValueError, "element not found" 4043053Sstever@eecs.umich.edu 4053053Sstever@eecs.umich.edu# Take a list of paths (or SCons Nodes) and return a list with all 4062667Sstever@eecs.umich.edu# paths made absolute and ~-expanded. Paths will be interpreted 4074554Sbinkertn@umich.edu# relative to the launch directory unless a different root is provided 4084554Sbinkertn@umich.edudef makePathListAbsolute(path_list, root=GetLaunchDir()): 4092667Sstever@eecs.umich.edu return [abspath(joinpath(root, expanduser(str(p)))) 4104554Sbinkertn@umich.edu for p in path_list] 4114554Sbinkertn@umich.edu 4124554Sbinkertn@umich.edu# Each target must have 'build' in the interior of the path; the 4134554Sbinkertn@umich.edu# directory below this will determine the build parameters. For 4144554Sbinkertn@umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 4154554Sbinkertn@umich.edu# recognize that ALPHA_SE specifies the configuration because it 4164554Sbinkertn@umich.edu# follow 'build' in the build path. 4174781Snate@binkert.org 4184554Sbinkertn@umich.edu# The funky assignment to "[:]" is needed to replace the list contents 4194554Sbinkertn@umich.edu# in place rather than reassign the symbol to a new list, which 4202667Sstever@eecs.umich.edu# doesn't work (obviously!). 4214554Sbinkertn@umich.eduBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 4224554Sbinkertn@umich.edu 4234554Sbinkertn@umich.edu# Generate a list of the unique build roots and configs that the 4244554Sbinkertn@umich.edu# collected targets reference. 4252667Sstever@eecs.umich.eduvariant_paths = [] 4264554Sbinkertn@umich.edubuild_root = None 4272667Sstever@eecs.umich.edufor t in BUILD_TARGETS: 4284554Sbinkertn@umich.edu path_dirs = t.split('/') 4294554Sbinkertn@umich.edu try: 4302667Sstever@eecs.umich.edu build_top = rfind(path_dirs, 'build', -2) 4315522Snate@binkert.org except: 4325522Snate@binkert.org print "Error: no non-leaf 'build' dir found on target path", t 4335522Snate@binkert.org Exit(1) 4345522Snate@binkert.org this_build_root = joinpath('/',*path_dirs[:build_top+1]) 4355522Snate@binkert.org if not build_root: 4365522Snate@binkert.org build_root = this_build_root 4375522Snate@binkert.org else: 4385522Snate@binkert.org if this_build_root != build_root: 4395522Snate@binkert.org print "Error: build targets not under same build root\n"\ 4405522Snate@binkert.org " %s\n %s" % (build_root, this_build_root) 4415522Snate@binkert.org Exit(1) 4425522Snate@binkert.org variant_path = joinpath('/',*path_dirs[:build_top+2]) 4435522Snate@binkert.org if variant_path not in variant_paths: 4445522Snate@binkert.org variant_paths.append(variant_path) 4455522Snate@binkert.org 4465522Snate@binkert.org# Make sure build_root exists (might not if this is the first build there) 4475522Snate@binkert.orgif not isdir(build_root): 4485522Snate@binkert.org mkdir(build_root) 4495522Snate@binkert.orgmain['BUILDROOT'] = build_root 4505522Snate@binkert.org 4515522Snate@binkert.orgExport('main') 4525522Snate@binkert.org 4535522Snate@binkert.orgmain.SConsignFile(joinpath(build_root, "sconsign")) 4545522Snate@binkert.org 4555522Snate@binkert.org# Default duplicate option is to use hard links, but this messes up 4565522Snate@binkert.org# when you use emacs to edit a file in the target dir, as emacs moves 4572638Sstever@eecs.umich.edu# file to file~ then copies to file, breaking the link. Symbolic 4582638Sstever@eecs.umich.edu# (soft) links work better. 4592638Sstever@eecs.umich.edumain.SetOption('duplicate', 'soft-copy') 4603716Sstever@eecs.umich.edu 4615522Snate@binkert.org# 4625522Snate@binkert.org# Set up global sticky variables... these are common to an entire build 4635522Snate@binkert.org# tree (not specific to a particular build like ALPHA_SE) 4645522Snate@binkert.org# 4655522Snate@binkert.org 4665522Snate@binkert.orgglobal_vars_file = joinpath(build_root, 'variables.global') 4671858SN/A 4685227Ssaidi@eecs.umich.eduglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 4695227Ssaidi@eecs.umich.edu 4705227Ssaidi@eecs.umich.eduglobal_vars.AddVariables( 4715227Ssaidi@eecs.umich.edu ('CC', 'C compiler', environ.get('CC', main['CC'])), 4725227Ssaidi@eecs.umich.edu ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 4735227Ssaidi@eecs.umich.edu ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 4745227Ssaidi@eecs.umich.edu ('BATCH', 'Use batch pool for build and tests', False), 4755227Ssaidi@eecs.umich.edu ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 4765227Ssaidi@eecs.umich.edu ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 4775227Ssaidi@eecs.umich.edu ('EXTRAS', 'Add extra directories to the compilation', '') 4785227Ssaidi@eecs.umich.edu ) 4795227Ssaidi@eecs.umich.edu 4805227Ssaidi@eecs.umich.edu# Update main environment with values from ARGUMENTS & global_vars_file 4815227Ssaidi@eecs.umich.eduglobal_vars.Update(main) 4825227Ssaidi@eecs.umich.eduhelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 4835204Sstever@gmail.com 4845204Sstever@gmail.com# Save sticky variable settings back to current variables file 4855204Sstever@gmail.comglobal_vars.Save(global_vars_file, main) 4865204Sstever@gmail.com 4875204Sstever@gmail.com# Parse EXTRAS variable to build list of all directories where we're 4885204Sstever@gmail.com# look for sources etc. This list is exported as extras_dir_list. 4895204Sstever@gmail.combase_dir = main.srcdir.abspath 4905204Sstever@gmail.comif main['EXTRAS']: 4915204Sstever@gmail.com extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 4925204Sstever@gmail.comelse: 4935204Sstever@gmail.com extras_dir_list = [] 4945204Sstever@gmail.com 4955204Sstever@gmail.comExport('base_dir') 4965204Sstever@gmail.comExport('extras_dir_list') 4975204Sstever@gmail.com 4985204Sstever@gmail.com# the ext directory should be on the #includes path 4995204Sstever@gmail.commain.Append(CPPPATH=[Dir('ext')]) 5005204Sstever@gmail.com 5015204Sstever@gmail.com# Add shared top-level headers 5023118Sstever@eecs.umich.edumain.Prepend(CPPPATH=Dir('include')) 5033118Sstever@eecs.umich.edu 5043118Sstever@eecs.umich.edudef strip_build_path(path, env): 5053118Sstever@eecs.umich.edu path = str(path) 5063118Sstever@eecs.umich.edu variant_base = env['BUILDROOT'] + os.path.sep 5073118Sstever@eecs.umich.edu if path.startswith(variant_base): 5083118Sstever@eecs.umich.edu path = path[len(variant_base):] 5093118Sstever@eecs.umich.edu elif path.startswith('build/'): 5103118Sstever@eecs.umich.edu path = path[6:] 5113118Sstever@eecs.umich.edu return path 5123118Sstever@eecs.umich.edu 5133716Sstever@eecs.umich.edu# Generate a string of the form: 5143118Sstever@eecs.umich.edu# common/path/prefix/src1, src2 -> tgt1, tgt2 5153118Sstever@eecs.umich.edu# to print while building. 5163118Sstever@eecs.umich.educlass Transform(object): 5173118Sstever@eecs.umich.edu # all specific color settings should be here and nowhere else 5183118Sstever@eecs.umich.edu tool_color = termcap.Normal 5193118Sstever@eecs.umich.edu pfx_color = termcap.Yellow 5203118Sstever@eecs.umich.edu srcs_color = termcap.Yellow + termcap.Bold 5213118Sstever@eecs.umich.edu arrow_color = termcap.Blue + termcap.Bold 5223118Sstever@eecs.umich.edu tgts_color = termcap.Yellow + termcap.Bold 5233716Sstever@eecs.umich.edu 5243118Sstever@eecs.umich.edu def __init__(self, tool, max_sources=99): 5253118Sstever@eecs.umich.edu self.format = self.tool_color + (" [%8s] " % tool) \ 5263118Sstever@eecs.umich.edu + self.pfx_color + "%s" \ 5273118Sstever@eecs.umich.edu + self.srcs_color + "%s" \ 5283118Sstever@eecs.umich.edu + self.arrow_color + " -> " \ 5293118Sstever@eecs.umich.edu + self.tgts_color + "%s" \ 5303118Sstever@eecs.umich.edu + termcap.Normal 5313118Sstever@eecs.umich.edu self.max_sources = max_sources 5323118Sstever@eecs.umich.edu 5333118Sstever@eecs.umich.edu def __call__(self, target, source, env, for_signature=None): 5343483Ssaidi@eecs.umich.edu # truncate source list according to max_sources param 5353494Ssaidi@eecs.umich.edu source = source[0:self.max_sources] 5363494Ssaidi@eecs.umich.edu def strip(f): 5373483Ssaidi@eecs.umich.edu return strip_build_path(str(f), env) 5383483Ssaidi@eecs.umich.edu if len(source) > 0: 5393483Ssaidi@eecs.umich.edu srcs = map(strip, source) 5403053Sstever@eecs.umich.edu else: 5413053Sstever@eecs.umich.edu srcs = [''] 5423918Ssaidi@eecs.umich.edu tgts = map(strip, target) 5433053Sstever@eecs.umich.edu # surprisingly, os.path.commonprefix is a dumb char-by-char string 5443053Sstever@eecs.umich.edu # operation that has nothing to do with paths. 5453053Sstever@eecs.umich.edu com_pfx = os.path.commonprefix(srcs + tgts) 5463053Sstever@eecs.umich.edu com_pfx_len = len(com_pfx) 5473053Sstever@eecs.umich.edu if com_pfx: 5481858SN/A # do some cleanup and sanity checking on common prefix 5491858SN/A if com_pfx[-1] == ".": 5501858SN/A # prefix matches all but file extension: ok 5511858SN/A # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 5521858SN/A com_pfx = com_pfx[0:-1] 5531858SN/A elif com_pfx[-1] == "/": 5541859SN/A # common prefix is directory path: OK 5551858SN/A pass 5561858SN/A else: 5571858SN/A src0_len = len(srcs[0]) 5581859SN/A tgt0_len = len(tgts[0]) 5591859SN/A if src0_len == com_pfx_len: 5601862SN/A # source is a substring of target, OK 5613053Sstever@eecs.umich.edu pass 5623053Sstever@eecs.umich.edu elif tgt0_len == com_pfx_len: 5633053Sstever@eecs.umich.edu # target is a substring of source, need to back up to 5643053Sstever@eecs.umich.edu # avoid empty string on RHS of arrow 5651859SN/A sep_idx = com_pfx.rfind(".") 5661859SN/A if sep_idx != -1: 5671859SN/A com_pfx = com_pfx[0:sep_idx] 5681859SN/A else: 5691859SN/A com_pfx = '' 5701859SN/A elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 5711859SN/A # still splitting at file extension: ok 5721859SN/A pass 5731862SN/A else: 5741859SN/A # probably a fluke; ignore it 5751859SN/A com_pfx = '' 5761859SN/A # recalculate length in case com_pfx was modified 5771858SN/A com_pfx_len = len(com_pfx) 5781858SN/A def fmt(files): 5792139SN/A f = map(lambda s: s[com_pfx_len:], files) 5804202Sbinkertn@umich.edu return ', '.join(f) 5814202Sbinkertn@umich.edu return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 5822139SN/A 5832155SN/AExport('Transform') 5844202Sbinkertn@umich.edu 5854202Sbinkertn@umich.edu# enable the regression script to use the termcap 5864202Sbinkertn@umich.edumain['TERMCAP'] = termcap 5872155SN/A 5881869SN/Aif GetOption('verbose'): 5891869SN/A def MakeAction(action, string, *args, **kwargs): 5901869SN/A return Action(action, *args, **kwargs) 5911869SN/Aelse: 5924202Sbinkertn@umich.edu MakeAction = Action 5934202Sbinkertn@umich.edu main['CCCOMSTR'] = Transform("CC") 5944202Sbinkertn@umich.edu main['CXXCOMSTR'] = Transform("CXX") 5954202Sbinkertn@umich.edu main['ASCOMSTR'] = Transform("AS") 5964202Sbinkertn@umich.edu main['ARCOMSTR'] = Transform("AR", 0) 5974202Sbinkertn@umich.edu main['LINKCOMSTR'] = Transform("LINK", 0) 5984202Sbinkertn@umich.edu main['SHLINKCOMSTR'] = Transform("SHLINK", 0) 5994202Sbinkertn@umich.edu main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 6005742Snate@binkert.org main['M4COMSTR'] = Transform("M4") 6015742Snate@binkert.org main['SHCCCOMSTR'] = Transform("SHCC") 6025341Sstever@gmail.com main['SHCXXCOMSTR'] = Transform("SHCXX") 6035342Sstever@gmail.comExport('MakeAction') 6045342Sstever@gmail.com 6054202Sbinkertn@umich.edu# Initialize the Link-Time Optimization (LTO) flags 6064202Sbinkertn@umich.edumain['LTO_CCFLAGS'] = [] 6074202Sbinkertn@umich.edumain['LTO_LDFLAGS'] = [] 6084202Sbinkertn@umich.edu 6094202Sbinkertn@umich.edu# According to the readme, tcmalloc works best if the compiler doesn't 6101869SN/A# assume that we're using the builtin malloc and friends. These flags 6114202Sbinkertn@umich.edu# are compiler-specific, so we need to set them after we detect which 6121869SN/A# compiler we're using. 6132508SN/Amain['TCMALLOC_CCFLAGS'] = [] 6142508SN/A 6152508SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False) 6162508SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False) 6174202Sbinkertn@umich.edu 6181869SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 6195385Sstever@gmail.commain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 6205385Sstever@gmail.comif main['GCC'] + main['CLANG'] > 1: 6215385Sstever@gmail.com print 'Error: How can we have two at the same time?' 6225385Sstever@gmail.com Exit(1) 6231869SN/A 6241869SN/A# Set up default C++ compiler flags 6251869SN/Aif main['GCC'] or main['CLANG']: 6261869SN/A # As gcc and clang share many flags, do the common parts here 6271869SN/A main.Append(CCFLAGS=['-pipe']) 6281965SN/A main.Append(CCFLAGS=['-fno-strict-aliasing']) 6291965SN/A # Enable -Wall and -Wextra and then disable the few warnings that 6301965SN/A # we consistently violate 6311869SN/A main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra', 6321869SN/A '-Wno-sign-compare', '-Wno-unused-parameter']) 6332733Sktlim@umich.edu # We always compile using C++11 6341869SN/A main.Append(CXXFLAGS=['-std=c++11']) 6351858SN/A if sys.platform.startswith('freebsd'): 6361869SN/A main.Append(CCFLAGS=['-I/usr/local/include']) 6371869SN/A main.Append(CXXFLAGS=['-I/usr/local/include']) 6381869SN/A 6391858SN/A main['FILTER_PSHLINKFLAGS'] = lambda x: str(x).replace(' -shared', '') 6402761Sstever@eecs.umich.edu main['PSHLINKFLAGS'] = main.subst('${FILTER_PSHLINKFLAGS(SHLINKFLAGS)}') 6411869SN/A main['PLINKFLAGS'] = main.subst('${LINKFLAGS}') 6425385Sstever@gmail.com shared_partial_flags = ['-r', '-nostdlib'] 6435385Sstever@gmail.com main.Append(PSHLINKFLAGS=shared_partial_flags) 6445522Snate@binkert.org main.Append(PLINKFLAGS=shared_partial_flags) 6451869SN/Aelse: 6461869SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 6471869SN/A print "Don't know what compiler options to use for your compiler." 6481869SN/A print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 6491869SN/A print termcap.Yellow + ' version:' + termcap.Normal, 6501869SN/A if not CXX_version: 6511858SN/A print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 652955SN/A termcap.Normal 653955SN/A else: 6541869SN/A print CXX_version.replace('\n', '<nl>') 6551869SN/A print " If you're trying to use a compiler other than GCC" 6561869SN/A print " or clang, there appears to be something wrong with your" 6571869SN/A print " environment." 6581869SN/A print " " 6591869SN/A print " If you are trying to use a compiler other than those listed" 6601869SN/A print " above you will need to ease fix SConstruct and " 6611869SN/A print " src/SConscript to support that compiler." 6621869SN/A Exit(1) 6631869SN/A 6641869SN/Aif main['GCC']: 6651869SN/A # Check for a supported version of gcc. >= 4.8 is chosen for its 6661869SN/A # level of c++11 support. See 6671869SN/A # http://gcc.gnu.org/projects/cxx0x.html for details. 6681869SN/A gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 6691869SN/A if compareVersions(gcc_version, "4.8") < 0: 6701869SN/A print 'Error: gcc version 4.8 or newer required.' 6711869SN/A print ' Installed version:', gcc_version 6721869SN/A Exit(1) 6731869SN/A 6741869SN/A main['GCC_VERSION'] = gcc_version 6751869SN/A 6761869SN/A if compareVersions(gcc_version, '4.9') >= 0: 6771869SN/A # Incremental linking with LTO is currently broken in gcc versions 6781869SN/A # 4.9 and above. A version where everything works completely hasn't 6791869SN/A # yet been identified. 6801869SN/A # 6811869SN/A # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67548 6821869SN/A main['BROKEN_INCREMENTAL_LTO'] = True 6833716Sstever@eecs.umich.edu if compareVersions(gcc_version, '6.0') >= 0: 6843356Sbinkertn@umich.edu # gcc versions 6.0 and greater accept an -flinker-output flag which 6853356Sbinkertn@umich.edu # selects what type of output the linker should generate. This is 6863356Sbinkertn@umich.edu # necessary for incremental lto to work, but is also broken in 6873356Sbinkertn@umich.edu # current versions of gcc. It may not be necessary in future 6883356Sbinkertn@umich.edu # versions. We add it here since it might be, and as a reminder that 6893356Sbinkertn@umich.edu # it exists. It's excluded if lto is being forced. 6904781Snate@binkert.org # 6911869SN/A # https://gcc.gnu.org/gcc-6/changes.html 6921869SN/A # https://gcc.gnu.org/ml/gcc-patches/2015-11/msg03161.html 6931869SN/A # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69866 6941869SN/A if not GetOption('force_lto'): 6951869SN/A main.Append(PSHLINKFLAGS='-flinker-output=rel') 6961869SN/A main.Append(PLINKFLAGS='-flinker-output=rel') 6971869SN/A 6982655Sstever@eecs.umich.edu # gcc from version 4.8 and above generates "rep; ret" instructions 6992655Sstever@eecs.umich.edu # to avoid performance penalties on certain AMD chips. Older 7002655Sstever@eecs.umich.edu # assemblers detect this as an error, "Error: expecting string 7012655Sstever@eecs.umich.edu # instruction after `rep'" 7022655Sstever@eecs.umich.edu as_version_raw = readCommand([main['AS'], '-v', '/dev/null', 7032655Sstever@eecs.umich.edu '-o', '/dev/null'], 7042655Sstever@eecs.umich.edu exception=False).split() 7052655Sstever@eecs.umich.edu 7062655Sstever@eecs.umich.edu # version strings may contain extra distro-specific 7072655Sstever@eecs.umich.edu # qualifiers, so play it safe and keep only what comes before 7082655Sstever@eecs.umich.edu # the first hyphen 7092655Sstever@eecs.umich.edu as_version = as_version_raw[-1].split('-')[0] if as_version_raw else None 7102655Sstever@eecs.umich.edu 7112655Sstever@eecs.umich.edu if not as_version or compareVersions(as_version, "2.23") < 0: 7122655Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 7132655Sstever@eecs.umich.edu 'Warning: This combination of gcc and binutils have' + \ 7142655Sstever@eecs.umich.edu ' known incompatibilities.\n' + \ 7152655Sstever@eecs.umich.edu ' If you encounter build problems, please update ' + \ 7162655Sstever@eecs.umich.edu 'binutils to 2.23.' + \ 7172655Sstever@eecs.umich.edu termcap.Normal 7182655Sstever@eecs.umich.edu 7192655Sstever@eecs.umich.edu # Make sure we warn if the user has requested to compile with the 7202655Sstever@eecs.umich.edu # Undefined Benahvior Sanitizer and this version of gcc does not 7212655Sstever@eecs.umich.edu # support it. 7222655Sstever@eecs.umich.edu if GetOption('with_ubsan') and \ 7232655Sstever@eecs.umich.edu compareVersions(gcc_version, '4.9') < 0: 7242638Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 7252638Sstever@eecs.umich.edu 'Warning: UBSan is only supported using gcc 4.9 and later.' + \ 7263716Sstever@eecs.umich.edu termcap.Normal 7272638Sstever@eecs.umich.edu 7282638Sstever@eecs.umich.edu disable_lto = GetOption('no_lto') 7291869SN/A if not disable_lto and main.get('BROKEN_INCREMENTAL_LTO', False) and \ 7301869SN/A not GetOption('force_lto'): 7313546Sgblack@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 7323546Sgblack@eecs.umich.edu 'Warning: Your compiler doesn\'t support incremental linking' + \ 7333546Sgblack@eecs.umich.edu ' and lto at the same time, so lto is being disabled. To force' + \ 7343546Sgblack@eecs.umich.edu ' lto on anyway, use the --force-lto option. That will disable' + \ 7354202Sbinkertn@umich.edu ' partial linking.' + \ 7363546Sgblack@eecs.umich.edu termcap.Normal 7373546Sgblack@eecs.umich.edu disable_lto = True 7383546Sgblack@eecs.umich.edu 7393546Sgblack@eecs.umich.edu # Add the appropriate Link-Time Optimization (LTO) flags 7403546Sgblack@eecs.umich.edu # unless LTO is explicitly turned off. Note that these flags 7414781Snate@binkert.org # are only used by the fast target. 7424781Snate@binkert.org if not disable_lto: 7434781Snate@binkert.org # Pass the LTO flag when compiling to produce GIMPLE 7444781Snate@binkert.org # output, we merely create the flags here and only append 7454781Snate@binkert.org # them later 7464781Snate@binkert.org main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 7474781Snate@binkert.org 7484781Snate@binkert.org # Use the same amount of jobs for LTO as we are running 7494781Snate@binkert.org # scons with 7504781Snate@binkert.org main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 7514781Snate@binkert.org 7524781Snate@binkert.org main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc', 7533546Sgblack@eecs.umich.edu '-fno-builtin-realloc', '-fno-builtin-free']) 7543546Sgblack@eecs.umich.edu 7553546Sgblack@eecs.umich.edu # add option to check for undeclared overrides 7564781Snate@binkert.org if compareVersions(gcc_version, "5.0") > 0: 7573546Sgblack@eecs.umich.edu main.Append(CCFLAGS=['-Wno-error=suggest-override']) 7583546Sgblack@eecs.umich.edu 7593546Sgblack@eecs.umich.eduelif main['CLANG']: 7603546Sgblack@eecs.umich.edu # Check for a supported version of clang, >= 3.1 is needed to 7613546Sgblack@eecs.umich.edu # support similar features as gcc 4.8. See 7623546Sgblack@eecs.umich.edu # http://clang.llvm.org/cxx_status.html for details 7633546Sgblack@eecs.umich.edu clang_version_re = re.compile(".* version (\d+\.\d+)") 7643546Sgblack@eecs.umich.edu clang_version_match = clang_version_re.search(CXX_version) 7653546Sgblack@eecs.umich.edu if (clang_version_match): 7663546Sgblack@eecs.umich.edu clang_version = clang_version_match.groups()[0] 7674202Sbinkertn@umich.edu if compareVersions(clang_version, "3.1") < 0: 7683546Sgblack@eecs.umich.edu print 'Error: clang version 3.1 or newer required.' 7693546Sgblack@eecs.umich.edu print ' Installed version:', clang_version 7703546Sgblack@eecs.umich.edu Exit(1) 771955SN/A else: 772955SN/A print 'Error: Unable to determine clang version.' 773955SN/A Exit(1) 774955SN/A 7751858SN/A # clang has a few additional warnings that we disable, extraneous 7761858SN/A # parantheses are allowed due to Ruby's printing of the AST, 7771858SN/A # finally self assignments are allowed as the generated CPU code 7782632Sstever@eecs.umich.edu # is relying on this 7792632Sstever@eecs.umich.edu main.Append(CCFLAGS=['-Wno-parentheses', 7805343Sstever@gmail.com '-Wno-self-assign', 7815343Sstever@gmail.com # Some versions of libstdc++ (4.8?) seem to 7825343Sstever@gmail.com # use struct hash and class hash 7834773Snate@binkert.org # interchangeably. 7844773Snate@binkert.org '-Wno-mismatched-tags', 7852632Sstever@eecs.umich.edu ]) 7862632Sstever@eecs.umich.edu 7872632Sstever@eecs.umich.edu main.Append(TCMALLOC_CCFLAGS=['-fno-builtin']) 7882023SN/A 7892632Sstever@eecs.umich.edu # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 7902632Sstever@eecs.umich.edu # opposed to libstdc++, as the later is dated. 7912632Sstever@eecs.umich.edu if sys.platform == "darwin": 7922632Sstever@eecs.umich.edu main.Append(CXXFLAGS=['-stdlib=libc++']) 7932632Sstever@eecs.umich.edu main.Append(LIBS=['c++']) 7943716Sstever@eecs.umich.edu 7955342Sstever@gmail.com # On FreeBSD we need libthr. 7962632Sstever@eecs.umich.edu if sys.platform.startswith('freebsd'): 7972632Sstever@eecs.umich.edu main.Append(LIBS=['thr']) 7982632Sstever@eecs.umich.edu 7992632Sstever@eecs.umich.eduelse: 8002023SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 8012632Sstever@eecs.umich.edu print "Don't know what compiler options to use for your compiler." 8022632Sstever@eecs.umich.edu print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 8035342Sstever@gmail.com print termcap.Yellow + ' version:' + termcap.Normal, 8041889SN/A if not CXX_version: 8052632Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 8062632Sstever@eecs.umich.edu termcap.Normal 8072632Sstever@eecs.umich.edu else: 8082632Sstever@eecs.umich.edu print CXX_version.replace('\n', '<nl>') 8093716Sstever@eecs.umich.edu print " If you're trying to use a compiler other than GCC" 8103716Sstever@eecs.umich.edu print " or clang, there appears to be something wrong with your" 8115342Sstever@gmail.com print " environment." 8122632Sstever@eecs.umich.edu print " " 8132632Sstever@eecs.umich.edu print " If you are trying to use a compiler other than those listed" 8142632Sstever@eecs.umich.edu print " above you will need to ease fix SConstruct and " 8152632Sstever@eecs.umich.edu print " src/SConscript to support that compiler." 8162632Sstever@eecs.umich.edu Exit(1) 8172632Sstever@eecs.umich.edu 8182632Sstever@eecs.umich.edu# Set up common yacc/bison flags (needed for Ruby) 8191888SN/Amain['YACCFLAGS'] = '-d' 8201888SN/Amain['YACCHXXFILESUFFIX'] = '.hh' 8211869SN/A 8221869SN/A# Do this after we save setting back, or else we'll tack on an 8231858SN/A# extra 'qdo' every time we run scons. 8245341Sstever@gmail.comif main['BATCH']: 8252598SN/A main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 8262598SN/A main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 8272598SN/A main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 8282598SN/A main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 8291858SN/A main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 8301858SN/A 8311858SN/Aif sys.platform == 'cygwin': 8321858SN/A # cygwin has some header file issues... 8331858SN/A main.Append(CCFLAGS=["-Wno-uninitialized"]) 8341858SN/A 8351858SN/A# Check for the protobuf compiler 8361858SN/Aprotoc_version = readCommand([main['PROTOC'], '--version'], 8371858SN/A exception='').split() 8381871SN/A 8391858SN/A# First two words should be "libprotoc x.y.z" 8401858SN/Aif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 8411858SN/A print termcap.Yellow + termcap.Bold + \ 8421858SN/A 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 8431858SN/A ' Please install protobuf-compiler for tracing support.' + \ 8441858SN/A termcap.Normal 8451858SN/A main['PROTOC'] = False 8461858SN/Aelse: 8471858SN/A # Based on the availability of the compress stream wrappers, 8481858SN/A # require 2.1.0 8491858SN/A min_protoc_version = '2.1.0' 8501859SN/A if compareVersions(protoc_version[1], min_protoc_version) < 0: 8511859SN/A print termcap.Yellow + termcap.Bold + \ 8521869SN/A 'Warning: protoc version', min_protoc_version, \ 8531888SN/A 'or newer required.\n' + \ 8542632Sstever@eecs.umich.edu ' Installed version:', protoc_version[1], \ 8551869SN/A termcap.Normal 8561965SN/A main['PROTOC'] = False 8571965SN/A else: 8581965SN/A # Attempt to determine the appropriate include path and 8592761Sstever@eecs.umich.edu # library path using pkg-config, that means we also need to 8601869SN/A # check for pkg-config. Note that it is possible to use 8611869SN/A # protobuf without the involvement of pkg-config. Later on we 8622632Sstever@eecs.umich.edu # check go a library config check and at that point the test 8632667Sstever@eecs.umich.edu # will fail if libprotobuf cannot be found. 8641869SN/A if readCommand(['pkg-config', '--version'], exception=''): 8651869SN/A try: 8662929Sktlim@umich.edu # Attempt to establish what linking flags to add for protobuf 8672929Sktlim@umich.edu # using pkg-config 8683716Sstever@eecs.umich.edu main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 8692929Sktlim@umich.edu except: 870955SN/A print termcap.Yellow + termcap.Bold + \ 8712598SN/A 'Warning: pkg-config could not get protobuf flags.' + \ 8722598SN/A termcap.Normal 8733546Sgblack@eecs.umich.edu 874955SN/A 875955SN/A# Check for 'timeout' from GNU coreutils. If present, regressions will 876955SN/A# be run with a time limit. We require version 8.13 since we rely on 8771530SN/A# support for the '--foreground' option. 878955SN/Aif sys.platform.startswith('freebsd'): 879955SN/A timeout_lines = readCommand(['gtimeout', '--version'], 880955SN/A exception='').splitlines() 881else: 882 timeout_lines = readCommand(['timeout', '--version'], 883 exception='').splitlines() 884# Get the first line and tokenize it 885timeout_version = timeout_lines[0].split() if timeout_lines else [] 886main['TIMEOUT'] = timeout_version and \ 887 compareVersions(timeout_version[-1], '8.13') >= 0 888 889# Add a custom Check function to test for structure members. 890def CheckMember(context, include, decl, member, include_quotes="<>"): 891 context.Message("Checking for member %s in %s..." % 892 (member, decl)) 893 text = """ 894#include %(header)s 895int main(){ 896 %(decl)s test; 897 (void)test.%(member)s; 898 return 0; 899}; 900""" % { "header" : include_quotes[0] + include + include_quotes[1], 901 "decl" : decl, 902 "member" : member, 903 } 904 905 ret = context.TryCompile(text, extension=".cc") 906 context.Result(ret) 907 return ret 908 909# Platform-specific configuration. Note again that we assume that all 910# builds under a given build root run on the same host platform. 911conf = Configure(main, 912 conf_dir = joinpath(build_root, '.scons_config'), 913 log_file = joinpath(build_root, 'scons_config.log'), 914 custom_tests = { 915 'CheckMember' : CheckMember, 916 }) 917 918# Check if we should compile a 64 bit binary on Mac OS X/Darwin 919try: 920 import platform 921 uname = platform.uname() 922 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 923 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 924 main.Append(CCFLAGS=['-arch', 'x86_64']) 925 main.Append(CFLAGS=['-arch', 'x86_64']) 926 main.Append(LINKFLAGS=['-arch', 'x86_64']) 927 main.Append(ASFLAGS=['-arch', 'x86_64']) 928except: 929 pass 930 931# Recent versions of scons substitute a "Null" object for Configure() 932# when configuration isn't necessary, e.g., if the "--help" option is 933# present. Unfortuantely this Null object always returns false, 934# breaking all our configuration checks. We replace it with our own 935# more optimistic null object that returns True instead. 936if not conf: 937 def NullCheck(*args, **kwargs): 938 return True 939 940 class NullConf: 941 def __init__(self, env): 942 self.env = env 943 def Finish(self): 944 return self.env 945 def __getattr__(self, mname): 946 return NullCheck 947 948 conf = NullConf(main) 949 950# Cache build files in the supplied directory. 951if main['M5_BUILD_CACHE']: 952 print 'Using build cache located at', main['M5_BUILD_CACHE'] 953 CacheDir(main['M5_BUILD_CACHE']) 954 955main['USE_PYTHON'] = not GetOption('without_python') 956if main['USE_PYTHON']: 957 # Find Python include and library directories for embedding the 958 # interpreter. We rely on python-config to resolve the appropriate 959 # includes and linker flags. ParseConfig does not seem to understand 960 # the more exotic linker flags such as -Xlinker and -export-dynamic so 961 # we add them explicitly below. If you want to link in an alternate 962 # version of python, see above for instructions on how to invoke 963 # scons with the appropriate PATH set. 964 # 965 # First we check if python2-config exists, else we use python-config 966 python_config = readCommand(['which', 'python2-config'], 967 exception='').strip() 968 if not os.path.exists(python_config): 969 python_config = readCommand(['which', 'python-config'], 970 exception='').strip() 971 py_includes = readCommand([python_config, '--includes'], 972 exception='').split() 973 # Strip the -I from the include folders before adding them to the 974 # CPPPATH 975 main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes)) 976 977 # Read the linker flags and split them into libraries and other link 978 # flags. The libraries are added later through the call the CheckLib. 979 py_ld_flags = readCommand([python_config, '--ldflags'], 980 exception='').split() 981 py_libs = [] 982 for lib in py_ld_flags: 983 if not lib.startswith('-l'): 984 main.Append(LINKFLAGS=[lib]) 985 else: 986 lib = lib[2:] 987 if lib not in py_libs: 988 py_libs.append(lib) 989 990 # verify that this stuff works 991 if not conf.CheckHeader('Python.h', '<>'): 992 print "Error: can't find Python.h header in", py_includes 993 print "Install Python headers (package python-dev on Ubuntu and RedHat)" 994 Exit(1) 995 996 for lib in py_libs: 997 if not conf.CheckLib(lib): 998 print "Error: can't find library %s required by python" % lib 999 Exit(1) 1000 1001# On Solaris you need to use libsocket for socket ops 1002if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1003 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 1004 print "Can't find library with socket calls (e.g. accept())" 1005 Exit(1) 1006 1007# Check for zlib. If the check passes, libz will be automatically 1008# added to the LIBS environment variable. 1009if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 1010 print 'Error: did not find needed zlib compression library '\ 1011 'and/or zlib.h header file.' 1012 print ' Please install zlib and try again.' 1013 Exit(1) 1014 1015# If we have the protobuf compiler, also make sure we have the 1016# development libraries. If the check passes, libprotobuf will be 1017# automatically added to the LIBS environment variable. After 1018# this, we can use the HAVE_PROTOBUF flag to determine if we have 1019# got both protoc and libprotobuf available. 1020main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 1021 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 1022 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 1023 1024# If we have the compiler but not the library, print another warning. 1025if main['PROTOC'] and not main['HAVE_PROTOBUF']: 1026 print termcap.Yellow + termcap.Bold + \ 1027 'Warning: did not find protocol buffer library and/or headers.\n' + \ 1028 ' Please install libprotobuf-dev for tracing support.' + \ 1029 termcap.Normal 1030 1031# Check for librt. 1032have_posix_clock = \ 1033 conf.CheckLibWithHeader(None, 'time.h', 'C', 1034 'clock_nanosleep(0,0,NULL,NULL);') or \ 1035 conf.CheckLibWithHeader('rt', 'time.h', 'C', 1036 'clock_nanosleep(0,0,NULL,NULL);') 1037 1038have_posix_timers = \ 1039 conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C', 1040 'timer_create(CLOCK_MONOTONIC, NULL, NULL);') 1041 1042if not GetOption('without_tcmalloc'): 1043 if conf.CheckLib('tcmalloc'): 1044 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1045 elif conf.CheckLib('tcmalloc_minimal'): 1046 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 1047 else: 1048 print termcap.Yellow + termcap.Bold + \ 1049 "You can get a 12% performance improvement by "\ 1050 "installing tcmalloc (libgoogle-perftools-dev package "\ 1051 "on Ubuntu or RedHat)." + termcap.Normal 1052 1053 1054# Detect back trace implementations. The last implementation in the 1055# list will be used by default. 1056backtrace_impls = [ "none" ] 1057 1058if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', 1059 'backtrace_symbols_fd((void*)0, 0, 0);'): 1060 backtrace_impls.append("glibc") 1061elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C', 1062 'backtrace_symbols_fd((void*)0, 0, 0);'): 1063 # NetBSD and FreeBSD need libexecinfo. 1064 backtrace_impls.append("glibc") 1065 main.Append(LIBS=['execinfo']) 1066 1067if backtrace_impls[-1] == "none": 1068 default_backtrace_impl = "none" 1069 print termcap.Yellow + termcap.Bold + \ 1070 "No suitable back trace implementation found." + \ 1071 termcap.Normal 1072 1073if not have_posix_clock: 1074 print "Can't find library for POSIX clocks." 1075 1076# Check for <fenv.h> (C99 FP environment control) 1077have_fenv = conf.CheckHeader('fenv.h', '<>') 1078if not have_fenv: 1079 print "Warning: Header file <fenv.h> not found." 1080 print " This host has no IEEE FP rounding mode control." 1081 1082# Check for <png.h> (libpng library needed if wanting to dump 1083# frame buffer image in png format) 1084have_png = conf.CheckHeader('png.h', '<>') 1085if not have_png: 1086 print "Warning: Header file <png.h> not found." 1087 print " This host has no libpng library." 1088 print " Disabling support for PNG framebuffers." 1089 1090# Check if we should enable KVM-based hardware virtualization. The API 1091# we rely on exists since version 2.6.36 of the kernel, but somehow 1092# the KVM_API_VERSION does not reflect the change. We test for one of 1093# the types as a fall back. 1094have_kvm = conf.CheckHeader('linux/kvm.h', '<>') 1095if not have_kvm: 1096 print "Info: Compatible header file <linux/kvm.h> not found, " \ 1097 "disabling KVM support." 1098 1099# Check if the TUN/TAP driver is available. 1100have_tuntap = conf.CheckHeader('linux/if_tun.h', '<>') 1101if not have_tuntap: 1102 print "Info: Compatible header file <linux/if_tun.h> not found." 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('USE_PNG', 'Enable support for PNG images', have_png), 1235 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', 1236 False), 1237 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', 1238 have_kvm), 1239 BoolVariable('USE_TUNTAP', 1240 'Enable using a tap device to bridge to the host network', 1241 have_tuntap), 1242 BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False), 1243 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1244 all_protocols), 1245 EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation', 1246 backtrace_impls[-1], backtrace_impls) 1247 ) 1248 1249# These variables get exported to #defines in config/*.hh (see src/SConscript). 1250export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'TARGET_GPU_ISA', 1251 'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'USE_KVM', 'USE_TUNTAP', 1252 'PROTOCOL', 'HAVE_PROTOBUF', 'HAVE_PERF_ATTR_EXCLUDE_HOST', 1253 'USE_PNG'] 1254 1255################################################### 1256# 1257# Define a SCons builder for configuration flag headers. 1258# 1259################################################### 1260 1261# This function generates a config header file that #defines the 1262# variable symbol to the current variable setting (0 or 1). The source 1263# operands are the name of the variable and a Value node containing the 1264# value of the variable. 1265def build_config_file(target, source, env): 1266 (variable, value) = [s.get_contents() for s in source] 1267 f = file(str(target[0]), 'w') 1268 print >> f, '#define', variable, value 1269 f.close() 1270 return None 1271 1272# Combine the two functions into a scons Action object. 1273config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1274 1275# The emitter munges the source & target node lists to reflect what 1276# we're really doing. 1277def config_emitter(target, source, env): 1278 # extract variable name from Builder arg 1279 variable = str(target[0]) 1280 # True target is config header file 1281 target = joinpath('config', variable.lower() + '.hh') 1282 val = env[variable] 1283 if isinstance(val, bool): 1284 # Force value to 0/1 1285 val = int(val) 1286 elif isinstance(val, str): 1287 val = '"' + val + '"' 1288 1289 # Sources are variable name & value (packaged in SCons Value nodes) 1290 return ([target], [Value(variable), Value(val)]) 1291 1292config_builder = Builder(emitter = config_emitter, action = config_action) 1293 1294main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1295 1296################################################### 1297# 1298# Builders for static and shared partially linked object files. 1299# 1300################################################### 1301 1302partial_static_builder = Builder(action=SCons.Defaults.LinkAction, 1303 src_suffix='$OBJSUFFIX', 1304 src_builder=['StaticObject', 'Object'], 1305 LINKFLAGS='$PLINKFLAGS', 1306 LIBS='') 1307 1308def partial_shared_emitter(target, source, env): 1309 for tgt in target: 1310 tgt.attributes.shared = 1 1311 return (target, source) 1312partial_shared_builder = Builder(action=SCons.Defaults.ShLinkAction, 1313 emitter=partial_shared_emitter, 1314 src_suffix='$SHOBJSUFFIX', 1315 src_builder='SharedObject', 1316 SHLINKFLAGS='$PSHLINKFLAGS', 1317 LIBS='') 1318 1319main.Append(BUILDERS = { 'PartialShared' : partial_shared_builder, 1320 'PartialStatic' : partial_static_builder }) 1321 1322# builds in ext are shared across all configs in the build root. 1323ext_dir = abspath(joinpath(str(main.root), 'ext')) 1324ext_build_dirs = [] 1325for root, dirs, files in os.walk(ext_dir): 1326 if 'SConscript' in files: 1327 build_dir = os.path.relpath(root, ext_dir) 1328 ext_build_dirs.append(build_dir) 1329 main.SConscript(joinpath(root, 'SConscript'), 1330 variant_dir=joinpath(build_root, build_dir)) 1331 1332main.Prepend(CPPPATH=Dir('ext/pybind11/include/')) 1333 1334################################################### 1335# 1336# This builder and wrapper method are used to set up a directory with 1337# switching headers. Those are headers which are in a generic location and 1338# that include more specific headers from a directory chosen at build time 1339# based on the current build settings. 1340# 1341################################################### 1342 1343def build_switching_header(target, source, env): 1344 path = str(target[0]) 1345 subdir = str(source[0]) 1346 dp, fp = os.path.split(path) 1347 dp = os.path.relpath(os.path.realpath(dp), 1348 os.path.realpath(env['BUILDDIR'])) 1349 with open(path, 'w') as hdr: 1350 print >>hdr, '#include "%s/%s/%s"' % (dp, subdir, fp) 1351 1352switching_header_action = MakeAction(build_switching_header, 1353 Transform('GENERATE')) 1354 1355switching_header_builder = Builder(action=switching_header_action, 1356 source_factory=Value, 1357 single_source=True) 1358 1359main.Append(BUILDERS = { 'SwitchingHeader': switching_header_builder }) 1360 1361def switching_headers(self, headers, source): 1362 for header in headers: 1363 self.SwitchingHeader(header, source) 1364 1365main.AddMethod(switching_headers, 'SwitchingHeaders') 1366 1367################################################### 1368# 1369# Define build environments for selected configurations. 1370# 1371################################################### 1372 1373for variant_path in variant_paths: 1374 if not GetOption('silent'): 1375 print "Building in", variant_path 1376 1377 # Make a copy of the build-root environment to use for this config. 1378 env = main.Clone() 1379 env['BUILDDIR'] = variant_path 1380 1381 # variant_dir is the tail component of build path, and is used to 1382 # determine the build parameters (e.g., 'ALPHA_SE') 1383 (build_root, variant_dir) = splitpath(variant_path) 1384 1385 # Set env variables according to the build directory config. 1386 sticky_vars.files = [] 1387 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1388 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1389 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1390 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1391 if isfile(current_vars_file): 1392 sticky_vars.files.append(current_vars_file) 1393 if not GetOption('silent'): 1394 print "Using saved variables file %s" % current_vars_file 1395 elif variant_dir in ext_build_dirs: 1396 # Things in ext are built without a variant directory. 1397 continue 1398 else: 1399 # Build dir-specific variables file doesn't exist. 1400 1401 # Make sure the directory is there so we can create it later 1402 opt_dir = dirname(current_vars_file) 1403 if not isdir(opt_dir): 1404 mkdir(opt_dir) 1405 1406 # Get default build variables from source tree. Variables are 1407 # normally determined by name of $VARIANT_DIR, but can be 1408 # overridden by '--default=' arg on command line. 1409 default = GetOption('default') 1410 opts_dir = joinpath(main.root.abspath, 'build_opts') 1411 if default: 1412 default_vars_files = [joinpath(build_root, 'variables', default), 1413 joinpath(opts_dir, default)] 1414 else: 1415 default_vars_files = [joinpath(opts_dir, variant_dir)] 1416 existing_files = filter(isfile, default_vars_files) 1417 if existing_files: 1418 default_vars_file = existing_files[0] 1419 sticky_vars.files.append(default_vars_file) 1420 print "Variables file %s not found,\n using defaults in %s" \ 1421 % (current_vars_file, default_vars_file) 1422 else: 1423 print "Error: cannot find variables file %s or " \ 1424 "default file(s) %s" \ 1425 % (current_vars_file, ' or '.join(default_vars_files)) 1426 Exit(1) 1427 1428 # Apply current variable settings to env 1429 sticky_vars.Update(env) 1430 1431 help_texts["local_vars"] += \ 1432 "Build variables for %s:\n" % variant_dir \ 1433 + sticky_vars.GenerateHelpText(env) 1434 1435 # Process variable settings. 1436 1437 if not have_fenv and env['USE_FENV']: 1438 print "Warning: <fenv.h> not available; " \ 1439 "forcing USE_FENV to False in", variant_dir + "." 1440 env['USE_FENV'] = False 1441 1442 if not env['USE_FENV']: 1443 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1444 print " FP results may deviate slightly from other platforms." 1445 1446 if not have_png and env['USE_PNG']: 1447 print "Warning: <png.h> not available; " \ 1448 "forcing USE_PNG to False in", variant_dir + "." 1449 env['USE_PNG'] = False 1450 1451 if env['USE_PNG']: 1452 env.Append(LIBS=['png']) 1453 1454 if env['EFENCE']: 1455 env.Append(LIBS=['efence']) 1456 1457 if env['USE_KVM']: 1458 if not have_kvm: 1459 print "Warning: Can not enable KVM, host seems to lack KVM support" 1460 env['USE_KVM'] = False 1461 elif not is_isa_kvm_compatible(env['TARGET_ISA']): 1462 print "Info: KVM support disabled due to unsupported host and " \ 1463 "target ISA combination" 1464 env['USE_KVM'] = False 1465 1466 if env['USE_TUNTAP']: 1467 if not have_tuntap: 1468 print "Warning: Can't connect EtherTap with a tap device." 1469 env['USE_TUNTAP'] = False 1470 1471 if env['BUILD_GPU']: 1472 env.Append(CPPDEFINES=['BUILD_GPU']) 1473 1474 # Warn about missing optional functionality 1475 if env['USE_KVM']: 1476 if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']: 1477 print "Warning: perf_event headers lack support for the " \ 1478 "exclude_host attribute. KVM instruction counts will " \ 1479 "be inaccurate." 1480 1481 # Save sticky variable settings back to current variables file 1482 sticky_vars.Save(current_vars_file, env) 1483 1484 if env['USE_SSE2']: 1485 env.Append(CCFLAGS=['-msse2']) 1486 1487 # The src/SConscript file sets up the build rules in 'env' according 1488 # to the configured variables. It returns a list of environments, 1489 # one for each variant build (debug, opt, etc.) 1490 SConscript('src/SConscript', variant_dir = variant_path, exports = 'env') 1491 1492# base help text 1493Help(''' 1494Usage: scons [scons options] [build variables] [target(s)] 1495 1496Extra scons options: 1497%(options)s 1498 1499Global build variables: 1500%(global_vars)s 1501 1502%(local_vars)s 1503''' % help_texts) 1504