SConstruct revision 11293
1955SN/A# -*- mode:python -*- 2955SN/A 35871Snate@binkert.org# Copyright (c) 2013, 2015 ARM Limited 41762SN/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 28955SN/A# contributors may be used to endorse or promote products derived from 292665Ssaidi@eecs.umich.edu# this software without specific prior written permission. 302665Ssaidi@eecs.umich.edu# 315863Snate@binkert.org# 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 35955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36955SN/A# 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 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 41955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 422632Sstever@eecs.umich.edu# 432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt 442761Sstever@eecs.umich.edu# Nathan Binkert 452632Sstever@eecs.umich.edu 462632Sstever@eecs.umich.edu################################################### 472632Sstever@eecs.umich.edu# 482761Sstever@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 512632Sstever@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 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 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 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 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 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 685863Snate@binkert.org# 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: 996654Snate@binkert.org EnsurePythonVersion(2, 5) 100955SN/Aexcept SystemExit, e: 1015396Ssaidi@eecs.umich.edu print """ 1025863Snate@binkert.orgYou 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 1044202Sbinkertn@umich.edu'python-config' first. 1055863Snate@binkert.org 1065863Snate@binkert.orgFor more details, see: 1075863Snate@binkert.org http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 1085863Snate@binkert.org""" 109955SN/A raise 1106654Snate@binkert.org 1115273Sstever@gmail.com# Global Python includes 1125871Snate@binkert.orgimport itertools 1135273Sstever@gmail.comimport os 1146655Snate@binkert.orgimport re 1156655Snate@binkert.orgimport subprocess 1166655Snate@binkert.orgimport sys 1176655Snate@binkert.org 1186655Snate@binkert.orgfrom os import mkdir, environ 1196655Snate@binkert.orgfrom os.path import abspath, basename, dirname, expanduser, normpath 1205871Snate@binkert.orgfrom os.path import exists, isdir, isfile 1216654Snate@binkert.orgfrom os.path import join as joinpath, split as splitpath 1225396Ssaidi@eecs.umich.edu 1235871Snate@binkert.org# SCons includes 1245871Snate@binkert.orgimport SCons 1256121Snate@binkert.orgimport SCons.Node 1265871Snate@binkert.org 1275871Snate@binkert.orgextra_python_paths = [ 1286003Snate@binkert.org Dir('src/python').srcnode().abspath, # gem5 includes 1296655Snate@binkert.org Dir('ext/ply').srcnode().abspath, # ply is used by several files 130955SN/A ] 1315871Snate@binkert.org 1325871Snate@binkert.orgsys.path[1:1] = extra_python_paths 1335871Snate@binkert.org 1345871Snate@binkert.orgfrom m5.util import compareVersions, readCommand 135955SN/Afrom m5.util.terminal import get_termcap 1366121Snate@binkert.org 1376121Snate@binkert.orghelp_texts = { 1386121Snate@binkert.org "options" : "", 1391533SN/A "global_vars" : "", 1406655Snate@binkert.org "local_vars" : "" 1416655Snate@binkert.org} 1426655Snate@binkert.org 1436655Snate@binkert.orgExport("help_texts") 1445871Snate@binkert.org 1455871Snate@binkert.org 1465863Snate@binkert.org# There's a bug in scons in that (1) by default, the help texts from 1475871Snate@binkert.org# AddOption() are supposed to be displayed when you type 'scons -h' 1485871Snate@binkert.org# and (2) you can override the help displayed by 'scons -h' using the 1495871Snate@binkert.org# Help() function, but these two features are incompatible: once 1505871Snate@binkert.org# you've overridden the help text using Help(), there's no way to get 1515871Snate@binkert.org# at the help texts from AddOptions. See: 1525863Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2356 1536121Snate@binkert.org# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1545863Snate@binkert.org# This hack lets us extract the help text from AddOptions and 1555871Snate@binkert.org# re-inject it via Help(). Ideally someday this bug will be fixed and 1564678Snate@binkert.org# we can just use AddOption directly. 1574678Snate@binkert.orgdef AddLocalOption(*args, **kwargs): 1584678Snate@binkert.org col_width = 30 1594678Snate@binkert.org 1604678Snate@binkert.org help = " " + ", ".join(args) 1614678Snate@binkert.org if "help" in kwargs: 1624678Snate@binkert.org length = len(help) 1634678Snate@binkert.org if length >= col_width: 1644678Snate@binkert.org help += "\n" + " " * col_width 1654678Snate@binkert.org else: 1664678Snate@binkert.org help += " " * (col_width - length) 1674678Snate@binkert.org help += kwargs["help"] 1687807Snate@binkert.org help_texts["options"] += help + "\n" 1696121Snate@binkert.org 1704678Snate@binkert.org AddOption(*args, **kwargs) 1715871Snate@binkert.org 1725871Snate@binkert.orgAddLocalOption('--colors', dest='use_colors', action='store_true', 1735871Snate@binkert.org help="Add color to abbreviated scons output") 1745871Snate@binkert.orgAddLocalOption('--no-colors', dest='use_colors', action='store_false', 1755871Snate@binkert.org help="Don't add color to abbreviated scons output") 1765871Snate@binkert.orgAddLocalOption('--with-cxx-config', dest='with_cxx_config', 1775871Snate@binkert.org action='store_true', 1785871Snate@binkert.org help="Build with support for C++-based configuration") 1795871Snate@binkert.orgAddLocalOption('--default', dest='default', type='string', action='store', 1805871Snate@binkert.org help='Override which build_opts file to use for defaults') 1815871Snate@binkert.orgAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 1825871Snate@binkert.org help='Disable style checking hooks') 1835871Snate@binkert.orgAddLocalOption('--no-lto', dest='no_lto', action='store_true', 1845990Ssaidi@eecs.umich.edu help='Disable Link-Time Optimization for fast') 1855871Snate@binkert.orgAddLocalOption('--update-ref', dest='update_ref', action='store_true', 1865871Snate@binkert.org help='Update test reference outputs') 1875871Snate@binkert.orgAddLocalOption('--verbose', dest='verbose', action='store_true', 1884678Snate@binkert.org help='Print full tool command lines') 1896654Snate@binkert.orgAddLocalOption('--without-python', dest='without_python', 1905871Snate@binkert.org action='store_true', 1915871Snate@binkert.org help='Build without Python configuration support') 1925871Snate@binkert.orgAddLocalOption('--without-tcmalloc', dest='without_tcmalloc', 1935871Snate@binkert.org action='store_true', 1945871Snate@binkert.org help='Disable linking against tcmalloc') 1955871Snate@binkert.orgAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true', 1965871Snate@binkert.org help='Build with Undefined Behavior Sanitizer if available') 1975871Snate@binkert.org 1985871Snate@binkert.orgtermcap = get_termcap(GetOption('use_colors')) 1994678Snate@binkert.org 2005871Snate@binkert.org######################################################################## 2014678Snate@binkert.org# 2025871Snate@binkert.org# Set up the main build environment. 2035871Snate@binkert.org# 2045871Snate@binkert.org######################################################################## 2055871Snate@binkert.org 2065871Snate@binkert.org# export TERM so that clang reports errors in color 2075871Snate@binkert.orguse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 2085871Snate@binkert.org 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC', 2095871Snate@binkert.org 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ]) 2105871Snate@binkert.org 2116121Snate@binkert.orguse_prefixes = [ 2126121Snate@binkert.org "CCACHE_", # ccache (caching compiler wrapper) configuration 2135863Snate@binkert.org "CCC_", # clang static analyzer configuration 214955SN/A "DISTCC_", # distcc (distributed compiler wrapper) configuration 215955SN/A "INCLUDE_SERVER_", # distcc pump server settings 2162632Sstever@eecs.umich.edu "M5", # M5 configuration (e.g., path to kernels) 2172632Sstever@eecs.umich.edu ] 218955SN/A 219955SN/Ause_env = {} 220955SN/Afor key,val in sorted(os.environ.iteritems()): 221955SN/A if key in use_vars or \ 2225863Snate@binkert.org any([key.startswith(prefix) for prefix in use_prefixes]): 223955SN/A use_env[key] = val 2242632Sstever@eecs.umich.edu 2252632Sstever@eecs.umich.edu# Tell scons to avoid implicit command dependencies to avoid issues 2262632Sstever@eecs.umich.edu# with the param wrappes being compiled twice (see 2272632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2811) 2282632Sstever@eecs.umich.edumain = Environment(ENV=use_env, IMPLICIT_COMMAND_DEPENDENCIES=0) 2292632Sstever@eecs.umich.edumain.Decider('MD5-timestamp') 2302632Sstever@eecs.umich.edumain.root = Dir(".") # The current directory (where this file lives). 2312632Sstever@eecs.umich.edumain.srcdir = Dir("src") # The source directory 2322632Sstever@eecs.umich.edu 2332632Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 2342632Sstever@eecs.umich.edu 2352632Sstever@eecs.umich.edu# Check that we have a C/C++ compiler 2362632Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 2373718Sstever@eecs.umich.edu print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 2383718Sstever@eecs.umich.edu Exit(1) 2393718Sstever@eecs.umich.edu 2403718Sstever@eecs.umich.edu# Check that swig is present 2413718Sstever@eecs.umich.eduif not 'SWIG' in main_dict_keys: 2425863Snate@binkert.org print "swig is not installed (package swig on Ubuntu and RedHat)" 2435863Snate@binkert.org Exit(1) 2443718Sstever@eecs.umich.edu 2453718Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses 2466121Snate@binkert.org# as well 2475863Snate@binkert.orgmain.AppendENVPath('PYTHONPATH', extra_python_paths) 2483718Sstever@eecs.umich.edu 2493718Sstever@eecs.umich.edu######################################################################## 2502634Sstever@eecs.umich.edu# 2512634Sstever@eecs.umich.edu# Mercurial Stuff. 2525863Snate@binkert.org# 2532638Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some 2542632Sstever@eecs.umich.edu# extra things. 2552632Sstever@eecs.umich.edu# 2562632Sstever@eecs.umich.edu######################################################################## 2572632Sstever@eecs.umich.edu 2582632Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg") 2592632Sstever@eecs.umich.edu 2601858SN/Amercurial_style_message = """ 2613716Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2622638Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands. This 2632638Sstever@eecs.umich.eduscript will now install the hook in your .hg/hgrc file. 2642638Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2652638Sstever@eecs.umich.edu 2662638Sstever@eecs.umich.edumercurial_style_hook = """ 2672638Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct 2682638Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks 2695863Snate@binkert.org[extensions] 2705863Snate@binkert.orgstyle = %s/util/style.py 2715863Snate@binkert.org 272955SN/A[hooks] 2735341Sstever@gmail.compretxncommit.style = python:style.check_style 2745341Sstever@gmail.compre-qrefresh.style = python:style.check_style 2755863Snate@binkert.org# End of SConstruct additions 2767756SAli.Saidi@ARM.com 2775341Sstever@gmail.com""" % (main.root.abspath) 2786121Snate@binkert.org 2794494Ssaidi@eecs.umich.edumercurial_lib_not_found = """ 2806121Snate@binkert.orgMercurial libraries cannot be found, ignoring style hook. If 2811105SN/Ayou are a gem5 developer, please fix this and run the style 2822667Sstever@eecs.umich.eduhook. It is important. 2832667Sstever@eecs.umich.edu""" 2842667Sstever@eecs.umich.edu 2852667Sstever@eecs.umich.edu# Check for style hook and prompt for installation if it's not there. 2866121Snate@binkert.org# Skip this if --ignore-style was specified, there's no .hg dir to 2872667Sstever@eecs.umich.edu# install a hook in, or there's no interactive terminal to prompt. 2885341Sstever@gmail.comif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty(): 2895863Snate@binkert.org style_hook = True 2905341Sstever@gmail.com try: 2915341Sstever@gmail.com from mercurial import ui 2925341Sstever@gmail.com ui = ui.ui() 2935863Snate@binkert.org ui.readconfig(hgdir.File('hgrc').abspath) 2945341Sstever@gmail.com style_hook = ui.config('hooks', 'pretxncommit.style', None) and \ 2955341Sstever@gmail.com ui.config('hooks', 'pre-qrefresh.style', None) 2965341Sstever@gmail.com except ImportError: 2975863Snate@binkert.org print mercurial_lib_not_found 2985341Sstever@gmail.com 2995341Sstever@gmail.com if not style_hook: 3005341Sstever@gmail.com print mercurial_style_message, 3015341Sstever@gmail.com # continue unless user does ctrl-c/ctrl-d etc. 3025341Sstever@gmail.com try: 3035341Sstever@gmail.com raw_input() 3045341Sstever@gmail.com except: 3055341Sstever@gmail.com print "Input exception, exiting scons.\n" 3065341Sstever@gmail.com sys.exit(1) 3075341Sstever@gmail.com hgrc_path = '%s/.hg/hgrc' % main.root.abspath 3085863Snate@binkert.org print "Adding style hook to", hgrc_path, "\n" 3095341Sstever@gmail.com try: 3105863Snate@binkert.org hgrc = open(hgrc_path, 'a') 3117756SAli.Saidi@ARM.com hgrc.write(mercurial_style_hook) 3125341Sstever@gmail.com hgrc.close() 3135863Snate@binkert.org except: 3146121Snate@binkert.org print "Error updating", hgrc_path 3156121Snate@binkert.org sys.exit(1) 3165397Ssaidi@eecs.umich.edu 3175397Ssaidi@eecs.umich.edu 3187727SAli.Saidi@ARM.com################################################### 3195341Sstever@gmail.com# 3206168Snate@binkert.org# Figure out which configurations to set up based on the path(s) of 3216168Snate@binkert.org# the target(s). 3225341Sstever@gmail.com# 3237756SAli.Saidi@ARM.com################################################### 3247756SAli.Saidi@ARM.com 3257756SAli.Saidi@ARM.com# Find default configuration & binary. 3267756SAli.Saidi@ARM.comDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 3277756SAli.Saidi@ARM.com 3287756SAli.Saidi@ARM.com# helper function: find last occurrence of element in list 3295341Sstever@gmail.comdef rfind(l, elt, offs = -1): 3305341Sstever@gmail.com for i in range(len(l)+offs, 0, -1): 3315341Sstever@gmail.com if l[i] == elt: 3325341Sstever@gmail.com return i 3335863Snate@binkert.org raise ValueError, "element not found" 3345341Sstever@gmail.com 3355341Sstever@gmail.com# Take a list of paths (or SCons Nodes) and return a list with all 3366121Snate@binkert.org# paths made absolute and ~-expanded. Paths will be interpreted 3376121Snate@binkert.org# relative to the launch directory unless a different root is provided 3387756SAli.Saidi@ARM.comdef makePathListAbsolute(path_list, root=GetLaunchDir()): 3395341Sstever@gmail.com return [abspath(joinpath(root, expanduser(str(p)))) 3406814Sgblack@eecs.umich.edu for p in path_list] 3417756SAli.Saidi@ARM.com 3426814Sgblack@eecs.umich.edu# Each target must have 'build' in the interior of the path; the 3435863Snate@binkert.org# directory below this will determine the build parameters. For 3446121Snate@binkert.org# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 3455341Sstever@gmail.com# recognize that ALPHA_SE specifies the configuration because it 3465863Snate@binkert.org# follow 'build' in the build path. 3475341Sstever@gmail.com 3486121Snate@binkert.org# The funky assignment to "[:]" is needed to replace the list contents 3496121Snate@binkert.org# in place rather than reassign the symbol to a new list, which 3506121Snate@binkert.org# doesn't work (obviously!). 3515742Snate@binkert.orgBUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 3525742Snate@binkert.org 3535341Sstever@gmail.com# Generate a list of the unique build roots and configs that the 3545742Snate@binkert.org# collected targets reference. 3555742Snate@binkert.orgvariant_paths = [] 3565341Sstever@gmail.combuild_root = None 3576017Snate@binkert.orgfor t in BUILD_TARGETS: 3586121Snate@binkert.org path_dirs = t.split('/') 3596017Snate@binkert.org try: 3607756SAli.Saidi@ARM.com build_top = rfind(path_dirs, 'build', -2) 3617756SAli.Saidi@ARM.com except: 3627756SAli.Saidi@ARM.com print "Error: no non-leaf 'build' dir found on target path", t 3637756SAli.Saidi@ARM.com Exit(1) 3647756SAli.Saidi@ARM.com this_build_root = joinpath('/',*path_dirs[:build_top+1]) 3657756SAli.Saidi@ARM.com if not build_root: 3667756SAli.Saidi@ARM.com build_root = this_build_root 3677756SAli.Saidi@ARM.com else: 3687756SAli.Saidi@ARM.com if this_build_root != build_root: 3697756SAli.Saidi@ARM.com print "Error: build targets not under same build root\n"\ 3707756SAli.Saidi@ARM.com " %s\n %s" % (build_root, this_build_root) 3717756SAli.Saidi@ARM.com Exit(1) 3727756SAli.Saidi@ARM.com variant_path = joinpath('/',*path_dirs[:build_top+2]) 3737756SAli.Saidi@ARM.com if variant_path not in variant_paths: 3747756SAli.Saidi@ARM.com variant_paths.append(variant_path) 3757756SAli.Saidi@ARM.com 3767756SAli.Saidi@ARM.com# Make sure build_root exists (might not if this is the first build there) 3777756SAli.Saidi@ARM.comif not isdir(build_root): 3787756SAli.Saidi@ARM.com mkdir(build_root) 3797756SAli.Saidi@ARM.commain['BUILDROOT'] = build_root 3807756SAli.Saidi@ARM.com 3817756SAli.Saidi@ARM.comExport('main') 3827756SAli.Saidi@ARM.com 3837756SAli.Saidi@ARM.commain.SConsignFile(joinpath(build_root, "sconsign")) 3847756SAli.Saidi@ARM.com 3857756SAli.Saidi@ARM.com# Default duplicate option is to use hard links, but this messes up 3867756SAli.Saidi@ARM.com# when you use emacs to edit a file in the target dir, as emacs moves 3877756SAli.Saidi@ARM.com# file to file~ then copies to file, breaking the link. Symbolic 3887756SAli.Saidi@ARM.com# (soft) links work better. 3897756SAli.Saidi@ARM.commain.SetOption('duplicate', 'soft-copy') 3907756SAli.Saidi@ARM.com 3917756SAli.Saidi@ARM.com# 3927756SAli.Saidi@ARM.com# Set up global sticky variables... these are common to an entire build 3937756SAli.Saidi@ARM.com# tree (not specific to a particular build like ALPHA_SE) 3946654Snate@binkert.org# 3956654Snate@binkert.org 3965871Snate@binkert.orgglobal_vars_file = joinpath(build_root, 'variables.global') 3976121Snate@binkert.org 3986121Snate@binkert.orgglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 3996121Snate@binkert.org 4006121Snate@binkert.orgglobal_vars.AddVariables( 4013940Ssaidi@eecs.umich.edu ('CC', 'C compiler', environ.get('CC', main['CC'])), 4023918Ssaidi@eecs.umich.edu ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 4033918Ssaidi@eecs.umich.edu ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])), 4041858SN/A ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 4056121Snate@binkert.org ('BATCH', 'Use batch pool for build and tests', False), 4067739Sgblack@eecs.umich.edu ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 4077739Sgblack@eecs.umich.edu ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 4086143Snate@binkert.org ('EXTRAS', 'Add extra directories to the compilation', '') 4097739Sgblack@eecs.umich.edu ) 4107618SAli.Saidi@arm.com 4117618SAli.Saidi@arm.com# Update main environment with values from ARGUMENTS & global_vars_file 4127618SAli.Saidi@arm.comglobal_vars.Update(main) 4137618SAli.Saidi@arm.comhelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 4147618SAli.Saidi@arm.com 4157618SAli.Saidi@arm.com# Save sticky variable settings back to current variables file 4167618SAli.Saidi@arm.comglobal_vars.Save(global_vars_file, main) 4177739Sgblack@eecs.umich.edu 4186121Snate@binkert.org# Parse EXTRAS variable to build list of all directories where we're 4193940Ssaidi@eecs.umich.edu# look for sources etc. This list is exported as extras_dir_list. 4206121Snate@binkert.orgbase_dir = main.srcdir.abspath 4217739Sgblack@eecs.umich.eduif main['EXTRAS']: 4227739Sgblack@eecs.umich.edu extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 4237739Sgblack@eecs.umich.eduelse: 4247739Sgblack@eecs.umich.edu extras_dir_list = [] 4257739Sgblack@eecs.umich.edu 4267739Sgblack@eecs.umich.eduExport('base_dir') 4273918Ssaidi@eecs.umich.eduExport('extras_dir_list') 4283918Ssaidi@eecs.umich.edu 4293940Ssaidi@eecs.umich.edu# the ext directory should be on the #includes path 4303918Ssaidi@eecs.umich.edumain.Append(CPPPATH=[Dir('ext')]) 4313918Ssaidi@eecs.umich.edu 4326157Snate@binkert.orgdef strip_build_path(path, env): 4336157Snate@binkert.org path = str(path) 4346157Snate@binkert.org variant_base = env['BUILDROOT'] + os.path.sep 4356157Snate@binkert.org if path.startswith(variant_base): 4365397Ssaidi@eecs.umich.edu path = path[len(variant_base):] 4375397Ssaidi@eecs.umich.edu elif path.startswith('build/'): 4386121Snate@binkert.org path = path[6:] 4396121Snate@binkert.org return path 4406121Snate@binkert.org 4416121Snate@binkert.org# Generate a string of the form: 4426121Snate@binkert.org# common/path/prefix/src1, src2 -> tgt1, tgt2 4436121Snate@binkert.org# to print while building. 4445397Ssaidi@eecs.umich.educlass Transform(object): 4451851SN/A # all specific color settings should be here and nowhere else 4461851SN/A tool_color = termcap.Normal 4477739Sgblack@eecs.umich.edu pfx_color = termcap.Yellow 448955SN/A srcs_color = termcap.Yellow + termcap.Bold 4493053Sstever@eecs.umich.edu arrow_color = termcap.Blue + termcap.Bold 4506121Snate@binkert.org tgts_color = termcap.Yellow + termcap.Bold 4513053Sstever@eecs.umich.edu 4523053Sstever@eecs.umich.edu def __init__(self, tool, max_sources=99): 4533053Sstever@eecs.umich.edu self.format = self.tool_color + (" [%8s] " % tool) \ 4543053Sstever@eecs.umich.edu + self.pfx_color + "%s" \ 4553053Sstever@eecs.umich.edu + self.srcs_color + "%s" \ 4566654Snate@binkert.org + self.arrow_color + " -> " \ 4573053Sstever@eecs.umich.edu + self.tgts_color + "%s" \ 4584742Sstever@eecs.umich.edu + termcap.Normal 4594742Sstever@eecs.umich.edu self.max_sources = max_sources 4603053Sstever@eecs.umich.edu 4613053Sstever@eecs.umich.edu def __call__(self, target, source, env, for_signature=None): 4623053Sstever@eecs.umich.edu # truncate source list according to max_sources param 4633053Sstever@eecs.umich.edu source = source[0:self.max_sources] 4646654Snate@binkert.org def strip(f): 4653053Sstever@eecs.umich.edu return strip_build_path(str(f), env) 4663053Sstever@eecs.umich.edu if len(source) > 0: 4673053Sstever@eecs.umich.edu srcs = map(strip, source) 4683053Sstever@eecs.umich.edu else: 4692667Sstever@eecs.umich.edu srcs = [''] 4704554Sbinkertn@umich.edu tgts = map(strip, target) 4716121Snate@binkert.org # surprisingly, os.path.commonprefix is a dumb char-by-char string 4722667Sstever@eecs.umich.edu # operation that has nothing to do with paths. 4734554Sbinkertn@umich.edu com_pfx = os.path.commonprefix(srcs + tgts) 4744554Sbinkertn@umich.edu com_pfx_len = len(com_pfx) 4754554Sbinkertn@umich.edu if com_pfx: 4766121Snate@binkert.org # do some cleanup and sanity checking on common prefix 4774554Sbinkertn@umich.edu if com_pfx[-1] == ".": 4784554Sbinkertn@umich.edu # prefix matches all but file extension: ok 4794554Sbinkertn@umich.edu # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 4804781Snate@binkert.org com_pfx = com_pfx[0:-1] 4814554Sbinkertn@umich.edu elif com_pfx[-1] == "/": 4824554Sbinkertn@umich.edu # common prefix is directory path: OK 4832667Sstever@eecs.umich.edu pass 4844554Sbinkertn@umich.edu else: 4854554Sbinkertn@umich.edu src0_len = len(srcs[0]) 4864554Sbinkertn@umich.edu tgt0_len = len(tgts[0]) 4874554Sbinkertn@umich.edu if src0_len == com_pfx_len: 4882667Sstever@eecs.umich.edu # source is a substring of target, OK 4894554Sbinkertn@umich.edu pass 4902667Sstever@eecs.umich.edu elif tgt0_len == com_pfx_len: 4914554Sbinkertn@umich.edu # target is a substring of source, need to back up to 4926121Snate@binkert.org # avoid empty string on RHS of arrow 4932667Sstever@eecs.umich.edu sep_idx = com_pfx.rfind(".") 4945522Snate@binkert.org if sep_idx != -1: 4955522Snate@binkert.org com_pfx = com_pfx[0:sep_idx] 4965522Snate@binkert.org else: 4975522Snate@binkert.org com_pfx = '' 4985522Snate@binkert.org elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 4995522Snate@binkert.org # still splitting at file extension: ok 5005522Snate@binkert.org pass 5015522Snate@binkert.org else: 5025522Snate@binkert.org # probably a fluke; ignore it 5035522Snate@binkert.org com_pfx = '' 5045522Snate@binkert.org # recalculate length in case com_pfx was modified 5055522Snate@binkert.org com_pfx_len = len(com_pfx) 5065522Snate@binkert.org def fmt(files): 5075522Snate@binkert.org f = map(lambda s: s[com_pfx_len:], files) 5085522Snate@binkert.org return ', '.join(f) 5095522Snate@binkert.org return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 5105522Snate@binkert.org 5115522Snate@binkert.orgExport('Transform') 5125522Snate@binkert.org 5135522Snate@binkert.org# enable the regression script to use the termcap 5145522Snate@binkert.orgmain['TERMCAP'] = termcap 5155522Snate@binkert.org 5165522Snate@binkert.orgif GetOption('verbose'): 5175522Snate@binkert.org def MakeAction(action, string, *args, **kwargs): 5185522Snate@binkert.org return Action(action, *args, **kwargs) 5195522Snate@binkert.orgelse: 5202638Sstever@eecs.umich.edu MakeAction = Action 5212638Sstever@eecs.umich.edu main['CCCOMSTR'] = Transform("CC") 5226121Snate@binkert.org main['CXXCOMSTR'] = Transform("CXX") 5233716Sstever@eecs.umich.edu main['ASCOMSTR'] = Transform("AS") 5245522Snate@binkert.org main['SWIGCOMSTR'] = Transform("SWIG") 5255522Snate@binkert.org main['ARCOMSTR'] = Transform("AR", 0) 5265522Snate@binkert.org main['LINKCOMSTR'] = Transform("LINK", 0) 5275522Snate@binkert.org main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 5285522Snate@binkert.org main['M4COMSTR'] = Transform("M4") 5295522Snate@binkert.org main['SHCCCOMSTR'] = Transform("SHCC") 5301858SN/A main['SHCXXCOMSTR'] = Transform("SHCXX") 5315227Ssaidi@eecs.umich.eduExport('MakeAction') 5325227Ssaidi@eecs.umich.edu 5335227Ssaidi@eecs.umich.edu# Initialize the Link-Time Optimization (LTO) flags 5345227Ssaidi@eecs.umich.edumain['LTO_CCFLAGS'] = [] 5356654Snate@binkert.orgmain['LTO_LDFLAGS'] = [] 5366654Snate@binkert.org 5377769SAli.Saidi@ARM.com# According to the readme, tcmalloc works best if the compiler doesn't 5387769SAli.Saidi@ARM.com# assume that we're using the builtin malloc and friends. These flags 5397769SAli.Saidi@ARM.com# are compiler-specific, so we need to set them after we detect which 5407769SAli.Saidi@ARM.com# compiler we're using. 5415227Ssaidi@eecs.umich.edumain['TCMALLOC_CCFLAGS'] = [] 5425227Ssaidi@eecs.umich.edu 5435227Ssaidi@eecs.umich.eduCXX_version = readCommand([main['CXX'],'--version'], exception=False) 5445204Sstever@gmail.comCXX_V = readCommand([main['CXX'],'-V'], exception=False) 5455204Sstever@gmail.com 5465204Sstever@gmail.commain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 5475204Sstever@gmail.commain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 5485204Sstever@gmail.comif main['GCC'] + main['CLANG'] > 1: 5495204Sstever@gmail.com print 'Error: How can we have two at the same time?' 5505204Sstever@gmail.com Exit(1) 5515204Sstever@gmail.com 5525204Sstever@gmail.com# Set up default C++ compiler flags 5535204Sstever@gmail.comif main['GCC'] or main['CLANG']: 5545204Sstever@gmail.com # As gcc and clang share many flags, do the common parts here 5555204Sstever@gmail.com main.Append(CCFLAGS=['-pipe']) 5565204Sstever@gmail.com main.Append(CCFLAGS=['-fno-strict-aliasing']) 5575204Sstever@gmail.com # Enable -Wall and then disable the few warnings that we 5585204Sstever@gmail.com # consistently violate 5595204Sstever@gmail.com main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef']) 5605204Sstever@gmail.com # We always compile using C++11 5616121Snate@binkert.org main.Append(CXXFLAGS=['-std=c++11']) 5625204Sstever@gmail.com # Add selected sanity checks from -Wextra 5633118Sstever@eecs.umich.edu main.Append(CXXFLAGS=['-Wmissing-field-initializers', 5643118Sstever@eecs.umich.edu '-Woverloaded-virtual']) 5653118Sstever@eecs.umich.eduelse: 5663118Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 5673118Sstever@eecs.umich.edu print "Don't know what compiler options to use for your compiler." 5685863Snate@binkert.org print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 5693118Sstever@eecs.umich.edu print termcap.Yellow + ' version:' + termcap.Normal, 5705863Snate@binkert.org if not CXX_version: 5713118Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 5727457Snate@binkert.org termcap.Normal 5737457Snate@binkert.org else: 5745863Snate@binkert.org print CXX_version.replace('\n', '<nl>') 5755863Snate@binkert.org print " If you're trying to use a compiler other than GCC" 5765863Snate@binkert.org print " or clang, there appears to be something wrong with your" 5775863Snate@binkert.org print " environment." 5785863Snate@binkert.org print " " 5795863Snate@binkert.org print " If you are trying to use a compiler other than those listed" 5805863Snate@binkert.org print " above you will need to ease fix SConstruct and " 5816003Snate@binkert.org print " src/SConscript to support that compiler." 5825863Snate@binkert.org Exit(1) 5835863Snate@binkert.org 5845863Snate@binkert.orgif main['GCC']: 5856120Snate@binkert.org # Check for a supported version of gcc. >= 4.7 is chosen for its 5865863Snate@binkert.org # level of c++11 support. See 5875863Snate@binkert.org # http://gcc.gnu.org/projects/cxx0x.html for details. 5885863Snate@binkert.org gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 5896120Snate@binkert.org if compareVersions(gcc_version, "4.7") < 0: 5906120Snate@binkert.org print 'Error: gcc version 4.7 or newer required.' 5915863Snate@binkert.org print ' Installed version:', gcc_version 5925863Snate@binkert.org Exit(1) 5936120Snate@binkert.org 5945863Snate@binkert.org main['GCC_VERSION'] = gcc_version 5956121Snate@binkert.org 5966121Snate@binkert.org # gcc from version 4.8 and above generates "rep; ret" instructions 5975863Snate@binkert.org # to avoid performance penalties on certain AMD chips. Older 5987727SAli.Saidi@ARM.com # assemblers detect this as an error, "Error: expecting string 5997727SAli.Saidi@ARM.com # instruction after `rep'" 6007727SAli.Saidi@ARM.com if compareVersions(gcc_version, "4.8") > 0: 6017727SAli.Saidi@ARM.com as_version_raw = readCommand([main['AS'], '-v', '/dev/null'], 6027727SAli.Saidi@ARM.com exception=False).split() 6037727SAli.Saidi@ARM.com 6045863Snate@binkert.org # version strings may contain extra distro-specific 6053118Sstever@eecs.umich.edu # qualifiers, so play it safe and keep only what comes before 6065863Snate@binkert.org # the first hyphen 6073118Sstever@eecs.umich.edu as_version = as_version_raw[-1].split('-')[0] if as_version_raw \ 6083118Sstever@eecs.umich.edu else None 6095863Snate@binkert.org 6105863Snate@binkert.org if not as_version or compareVersions(as_version, "2.23") < 0: 6115863Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 6125863Snate@binkert.org 'Warning: This combination of gcc and binutils have' + \ 6133118Sstever@eecs.umich.edu ' known incompatibilities.\n' + \ 6143483Ssaidi@eecs.umich.edu ' If you encounter build problems, please update ' + \ 6153494Ssaidi@eecs.umich.edu 'binutils to 2.23.' + \ 6163494Ssaidi@eecs.umich.edu termcap.Normal 6173483Ssaidi@eecs.umich.edu 6183483Ssaidi@eecs.umich.edu # Make sure we warn if the user has requested to compile with the 6193483Ssaidi@eecs.umich.edu # Undefined Benahvior Sanitizer and this version of gcc does not 6203053Sstever@eecs.umich.edu # support it. 6213053Sstever@eecs.umich.edu if GetOption('with_ubsan') and \ 6223918Ssaidi@eecs.umich.edu compareVersions(gcc_version, '4.9') < 0: 6233053Sstever@eecs.umich.edu print termcap.Yellow + termcap.Bold + \ 6243053Sstever@eecs.umich.edu 'Warning: UBSan is only supported using gcc 4.9 and later.' + \ 6253053Sstever@eecs.umich.edu termcap.Normal 6263053Sstever@eecs.umich.edu 6273053Sstever@eecs.umich.edu # Add the appropriate Link-Time Optimization (LTO) flags 6281858SN/A # unless LTO is explicitly turned off. Note that these flags 6291858SN/A # are only used by the fast target. 6301858SN/A if not GetOption('no_lto'): 6311858SN/A # Pass the LTO flag when compiling to produce GIMPLE 6321858SN/A # output, we merely create the flags here and only append 6331858SN/A # them later 6345863Snate@binkert.org main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 6355863Snate@binkert.org 6361859SN/A # Use the same amount of jobs for LTO as we are running 6375863Snate@binkert.org # scons with 6381858SN/A main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 6395863Snate@binkert.org 6401858SN/A main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc', 6411859SN/A '-fno-builtin-realloc', '-fno-builtin-free']) 6421859SN/A 6436654Snate@binkert.orgelif main['CLANG']: 6443053Sstever@eecs.umich.edu # Check for a supported version of clang, >= 3.1 is needed to 6456654Snate@binkert.org # support similar features as gcc 4.7. See 6463053Sstever@eecs.umich.edu # http://clang.llvm.org/cxx_status.html for details 6473053Sstever@eecs.umich.edu clang_version_re = re.compile(".* version (\d+\.\d+)") 6481859SN/A clang_version_match = clang_version_re.search(CXX_version) 6491859SN/A if (clang_version_match): 6501859SN/A clang_version = clang_version_match.groups()[0] 6511859SN/A if compareVersions(clang_version, "3.1") < 0: 6521859SN/A print 'Error: clang version 3.1 or newer required.' 6531859SN/A print ' Installed version:', clang_version 6541859SN/A Exit(1) 6551859SN/A else: 6561862SN/A print 'Error: Unable to determine clang version.' 6571859SN/A Exit(1) 6581859SN/A 6591859SN/A # clang has a few additional warnings that we disable, 6605863Snate@binkert.org # tautological comparisons are allowed due to unsigned integers 6615863Snate@binkert.org # being compared to constants that happen to be 0, and extraneous 6625863Snate@binkert.org # parantheses are allowed due to Ruby's printing of the AST, 6635863Snate@binkert.org # finally self assignments are allowed as the generated CPU code 6646121Snate@binkert.org # is relying on this 6651858SN/A main.Append(CCFLAGS=['-Wno-tautological-compare', 6665863Snate@binkert.org '-Wno-parentheses', 6675863Snate@binkert.org '-Wno-self-assign', 6685863Snate@binkert.org # Some versions of libstdc++ (4.8?) seem to 6695863Snate@binkert.org # use struct hash and class hash 6705863Snate@binkert.org # interchangeably. 6712139SN/A '-Wno-mismatched-tags', 6724202Sbinkertn@umich.edu ]) 6734202Sbinkertn@umich.edu 6742139SN/A main.Append(TCMALLOC_CCFLAGS=['-fno-builtin']) 6756994Snate@binkert.org 6766994Snate@binkert.org # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 6776994Snate@binkert.org # opposed to libstdc++, as the later is dated. 6786994Snate@binkert.org if sys.platform == "darwin": 6796994Snate@binkert.org main.Append(CXXFLAGS=['-stdlib=libc++']) 6806994Snate@binkert.org main.Append(LIBS=['c++']) 6816994Snate@binkert.org 6826994Snate@binkert.orgelse: 6836994Snate@binkert.org print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 6846994Snate@binkert.org print "Don't know what compiler options to use for your compiler." 6856994Snate@binkert.org print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 6866994Snate@binkert.org print termcap.Yellow + ' version:' + termcap.Normal, 6876994Snate@binkert.org if not CXX_version: 6886994Snate@binkert.org print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 6896994Snate@binkert.org termcap.Normal 6906994Snate@binkert.org else: 6916994Snate@binkert.org print CXX_version.replace('\n', '<nl>') 6926994Snate@binkert.org print " If you're trying to use a compiler other than GCC" 6936994Snate@binkert.org print " or clang, there appears to be something wrong with your" 6946994Snate@binkert.org print " environment." 6956994Snate@binkert.org print " " 6966994Snate@binkert.org print " If you are trying to use a compiler other than those listed" 6976994Snate@binkert.org print " above you will need to ease fix SConstruct and " 6986994Snate@binkert.org print " src/SConscript to support that compiler." 6996994Snate@binkert.org Exit(1) 7006994Snate@binkert.org 7016994Snate@binkert.org# Set up common yacc/bison flags (needed for Ruby) 7026994Snate@binkert.orgmain['YACCFLAGS'] = '-d' 7032155SN/Amain['YACCHXXFILESUFFIX'] = '.hh' 7045863Snate@binkert.org 7051869SN/A# Do this after we save setting back, or else we'll tack on an 7061869SN/A# extra 'qdo' every time we run scons. 7075863Snate@binkert.orgif main['BATCH']: 7085863Snate@binkert.org main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 7094202Sbinkertn@umich.edu main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 7106108Snate@binkert.org main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 7116108Snate@binkert.org main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 7126108Snate@binkert.org main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 7136108Snate@binkert.org 7144202Sbinkertn@umich.eduif sys.platform == 'cygwin': 7155863Snate@binkert.org # cygwin has some header file issues... 7165742Snate@binkert.org main.Append(CCFLAGS=["-Wno-uninitialized"]) 7175742Snate@binkert.org 7185341Sstever@gmail.com# Check for the protobuf compiler 7195342Sstever@gmail.comprotoc_version = readCommand([main['PROTOC'], '--version'], 7205342Sstever@gmail.com exception='').split() 7214202Sbinkertn@umich.edu 7224202Sbinkertn@umich.edu# First two words should be "libprotoc x.y.z" 7234202Sbinkertn@umich.eduif len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 7245863Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7255863Snate@binkert.org 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 7265863Snate@binkert.org ' Please install protobuf-compiler for tracing support.' + \ 7276994Snate@binkert.org termcap.Normal 7286994Snate@binkert.org main['PROTOC'] = False 7296994Snate@binkert.orgelse: 7305863Snate@binkert.org # Based on the availability of the compress stream wrappers, 7315863Snate@binkert.org # require 2.1.0 7325863Snate@binkert.org min_protoc_version = '2.1.0' 7335863Snate@binkert.org if compareVersions(protoc_version[1], min_protoc_version) < 0: 7345863Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7355863Snate@binkert.org 'Warning: protoc version', min_protoc_version, \ 7365863Snate@binkert.org 'or newer required.\n' + \ 7375863Snate@binkert.org ' Installed version:', protoc_version[1], \ 7385863Snate@binkert.org termcap.Normal 7395863Snate@binkert.org main['PROTOC'] = False 7405863Snate@binkert.org else: 7415863Snate@binkert.org # Attempt to determine the appropriate include path and 7425863Snate@binkert.org # library path using pkg-config, that means we also need to 7435863Snate@binkert.org # check for pkg-config. Note that it is possible to use 7445863Snate@binkert.org # protobuf without the involvement of pkg-config. Later on we 7455863Snate@binkert.org # check go a library config check and at that point the test 7465952Ssaidi@eecs.umich.edu # will fail if libprotobuf cannot be found. 7477450Sstever@gmail.com if readCommand(['pkg-config', '--version'], exception=''): 7481869SN/A try: 7491858SN/A # Attempt to establish what linking flags to add for protobuf 7505863Snate@binkert.org # using pkg-config 7516108Snate@binkert.org main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 7526108Snate@binkert.org except: 7536108Snate@binkert.org print termcap.Yellow + termcap.Bold + \ 7541858SN/A 'Warning: pkg-config could not get protobuf flags.' + \ 755955SN/A termcap.Normal 756955SN/A 7571869SN/A# Check for SWIG 7581869SN/Aif not main.has_key('SWIG'): 7591869SN/A print 'Error: SWIG utility not found.' 7601869SN/A print ' Please install (see http://www.swig.org) and retry.' 7611869SN/A Exit(1) 7625863Snate@binkert.org 7635863Snate@binkert.org# Check for appropriate SWIG version 7645863Snate@binkert.orgswig_version = readCommand([main['SWIG'], '-version'], exception='').split() 7651869SN/A# First 3 words should be "SWIG Version x.y.z" 7665863Snate@binkert.orgif len(swig_version) < 3 or \ 7671869SN/A swig_version[0] != 'SWIG' or swig_version[1] != 'Version': 7685863Snate@binkert.org print 'Error determining SWIG version.' 7691869SN/A Exit(1) 7701869SN/A 7711869SN/Amin_swig_version = '2.0.4' 7721869SN/Aif compareVersions(swig_version[2], min_swig_version) < 0: 7731869SN/A print 'Error: SWIG version', min_swig_version, 'or newer required.' 7745863Snate@binkert.org print ' Installed version:', swig_version[2] 7755863Snate@binkert.org Exit(1) 7761869SN/A 7771869SN/A# Check for known incompatibilities. The standard library shipped with 7781869SN/A# gcc >= 4.9 does not play well with swig versions prior to 3.0 7791869SN/Aif main['GCC'] and compareVersions(gcc_version, '4.9') >= 0 and \ 7801869SN/A compareVersions(swig_version[2], '3.0') < 0: 7811869SN/A print termcap.Yellow + termcap.Bold + \ 7821869SN/A 'Warning: This combination of gcc and swig have' + \ 7835863Snate@binkert.org ' known incompatibilities.\n' + \ 7845863Snate@binkert.org ' If you encounter build problems, please update ' + \ 7851869SN/A 'swig to 3.0 or later.' + \ 7865863Snate@binkert.org termcap.Normal 7875863Snate@binkert.org 7883356Sbinkertn@umich.edu# Set up SWIG flags & scanner 7893356Sbinkertn@umich.eduswig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS') 7903356Sbinkertn@umich.edumain.Append(SWIGFLAGS=swig_flags) 7913356Sbinkertn@umich.edu 7923356Sbinkertn@umich.edu# Check for 'timeout' from GNU coreutils. If present, regressions will 7934781Snate@binkert.org# be run with a time limit. We require version 8.13 since we rely on 7945863Snate@binkert.org# support for the '--foreground' option. 7955863Snate@binkert.orgtimeout_lines = readCommand(['timeout', '--version'], 7961869SN/A exception='').splitlines() 7971869SN/A# Get the first line and tokenize it 7981869SN/Atimeout_version = timeout_lines[0].split() if timeout_lines else [] 7996121Snate@binkert.orgmain['TIMEOUT'] = timeout_version and \ 8001869SN/A compareVersions(timeout_version[-1], '8.13') >= 0 8012638Sstever@eecs.umich.edu 8026121Snate@binkert.org# filter out all existing swig scanners, they mess up the dependency 8036121Snate@binkert.org# stuff for some reason 8042638Sstever@eecs.umich.eduscanners = [] 8055749Scws3k@cs.virginia.edufor scanner in main['SCANNERS']: 8066121Snate@binkert.org skeys = scanner.skeys 8076121Snate@binkert.org if skeys == '.i': 8085749Scws3k@cs.virginia.edu continue 8091869SN/A 8101869SN/A if isinstance(skeys, (list, tuple)) and '.i' in skeys: 8113546Sgblack@eecs.umich.edu continue 8123546Sgblack@eecs.umich.edu 8133546Sgblack@eecs.umich.edu scanners.append(scanner) 8143546Sgblack@eecs.umich.edu 8156121Snate@binkert.org# add the new swig scanner that we like better 8165863Snate@binkert.orgfrom SCons.Scanner import ClassicCPP as CPPScanner 8173546Sgblack@eecs.umich.eduswig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")' 8183546Sgblack@eecs.umich.eduscanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re)) 8193546Sgblack@eecs.umich.edu 8203546Sgblack@eecs.umich.edu# replace the scanners list that has what we want 8214781Snate@binkert.orgmain['SCANNERS'] = scanners 8224781Snate@binkert.org 8236658Snate@binkert.org# Add a custom Check function to test for structure members. 8246658Snate@binkert.orgdef CheckMember(context, include, decl, member, include_quotes="<>"): 8254781Snate@binkert.org context.Message("Checking for member %s in %s..." % 8263546Sgblack@eecs.umich.edu (member, decl)) 8273546Sgblack@eecs.umich.edu text = """ 8283546Sgblack@eecs.umich.edu#include %(header)s 8293546Sgblack@eecs.umich.eduint main(){ 8307756SAli.Saidi@ARM.com %(decl)s test; 8317756SAli.Saidi@ARM.com (void)test.%(member)s; 8323546Sgblack@eecs.umich.edu return 0; 8333546Sgblack@eecs.umich.edu}; 8343546Sgblack@eecs.umich.edu""" % { "header" : include_quotes[0] + include + include_quotes[1], 8353546Sgblack@eecs.umich.edu "decl" : decl, 8364202Sbinkertn@umich.edu "member" : member, 8373546Sgblack@eecs.umich.edu } 8383546Sgblack@eecs.umich.edu 8393546Sgblack@eecs.umich.edu ret = context.TryCompile(text, extension=".cc") 840955SN/A context.Result(ret) 841955SN/A return ret 842955SN/A 843955SN/A# Platform-specific configuration. Note again that we assume that all 8445863Snate@binkert.org# builds under a given build root run on the same host platform. 8455863Snate@binkert.orgconf = Configure(main, 8465343Sstever@gmail.com conf_dir = joinpath(build_root, '.scons_config'), 8475343Sstever@gmail.com log_file = joinpath(build_root, 'scons_config.log'), 8486121Snate@binkert.org custom_tests = { 8495863Snate@binkert.org 'CheckMember' : CheckMember, 8504773Snate@binkert.org }) 8515863Snate@binkert.org 8522632Sstever@eecs.umich.edu# Check if we should compile a 64 bit binary on Mac OS X/Darwin 8535863Snate@binkert.orgtry: 8542023SN/A import platform 8555863Snate@binkert.org uname = platform.uname() 8565863Snate@binkert.org if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 8575863Snate@binkert.org if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 8585863Snate@binkert.org main.Append(CCFLAGS=['-arch', 'x86_64']) 8595863Snate@binkert.org main.Append(CFLAGS=['-arch', 'x86_64']) 8605863Snate@binkert.org main.Append(LINKFLAGS=['-arch', 'x86_64']) 8615863Snate@binkert.org main.Append(ASFLAGS=['-arch', 'x86_64']) 8625863Snate@binkert.orgexcept: 8635863Snate@binkert.org pass 8642632Sstever@eecs.umich.edu 8655863Snate@binkert.org# Recent versions of scons substitute a "Null" object for Configure() 8662023SN/A# when configuration isn't necessary, e.g., if the "--help" option is 8672632Sstever@eecs.umich.edu# present. Unfortuantely this Null object always returns false, 8685863Snate@binkert.org# breaking all our configuration checks. We replace it with our own 8695342Sstever@gmail.com# more optimistic null object that returns True instead. 8705863Snate@binkert.orgif not conf: 8712632Sstever@eecs.umich.edu def NullCheck(*args, **kwargs): 8725863Snate@binkert.org return True 8735863Snate@binkert.org 8742632Sstever@eecs.umich.edu class NullConf: 8755863Snate@binkert.org def __init__(self, env): 8765863Snate@binkert.org self.env = env 8775863Snate@binkert.org def Finish(self): 8785863Snate@binkert.org return self.env 8795863Snate@binkert.org def __getattr__(self, mname): 8805863Snate@binkert.org return NullCheck 8812632Sstever@eecs.umich.edu 8825863Snate@binkert.org conf = NullConf(main) 8835863Snate@binkert.org 8842632Sstever@eecs.umich.edu# Cache build files in the supplied directory. 8851888SN/Aif main['M5_BUILD_CACHE']: 8865863Snate@binkert.org print 'Using build cache located at', main['M5_BUILD_CACHE'] 8875863Snate@binkert.org CacheDir(main['M5_BUILD_CACHE']) 8881858SN/A 8895863Snate@binkert.orgif not GetOption('without_python'): 8907756SAli.Saidi@ARM.com # Find Python include and library directories for embedding the 8912598SN/A # interpreter. We rely on python-config to resolve the appropriate 8925863Snate@binkert.org # includes and linker flags. ParseConfig does not seem to understand 8931858SN/A # the more exotic linker flags such as -Xlinker and -export-dynamic so 8941858SN/A # we add them explicitly below. If you want to link in an alternate 8951858SN/A # version of python, see above for instructions on how to invoke 8965863Snate@binkert.org # scons with the appropriate PATH set. 8971858SN/A # 8981858SN/A # First we check if python2-config exists, else we use python-config 8991858SN/A python_config = readCommand(['which', 'python2-config'], 9005863Snate@binkert.org exception='').strip() 9011871SN/A if not os.path.exists(python_config): 9021858SN/A python_config = readCommand(['which', 'python-config'], 9031858SN/A exception='').strip() 9041858SN/A py_includes = readCommand([python_config, '--includes'], 9051858SN/A exception='').split() 9061858SN/A # Strip the -I from the include folders before adding them to the 9071858SN/A # CPPPATH 9081858SN/A main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes)) 9095863Snate@binkert.org 9101858SN/A # Read the linker flags and split them into libraries and other link 9111858SN/A # flags. The libraries are added later through the call the CheckLib. 9125863Snate@binkert.org py_ld_flags = readCommand([python_config, '--ldflags'], 9131859SN/A exception='').split() 9141859SN/A py_libs = [] 9151869SN/A for lib in py_ld_flags: 9165863Snate@binkert.org if not lib.startswith('-l'): 9175863Snate@binkert.org main.Append(LINKFLAGS=[lib]) 9181869SN/A else: 9191965SN/A lib = lib[2:] 9207739Sgblack@eecs.umich.edu if lib not in py_libs: 9211965SN/A py_libs.append(lib) 9222761Sstever@eecs.umich.edu 9235863Snate@binkert.org # verify that this stuff works 9241869SN/A if not conf.CheckHeader('Python.h', '<>'): 9255863Snate@binkert.org print "Error: can't find Python.h header in", py_includes 9262667Sstever@eecs.umich.edu print "Install Python headers (package python-dev on Ubuntu and RedHat)" 9271869SN/A Exit(1) 9281869SN/A 9292929Sktlim@umich.edu for lib in py_libs: 9302929Sktlim@umich.edu if not conf.CheckLib(lib): 9315863Snate@binkert.org print "Error: can't find library %s required by python" % lib 9322929Sktlim@umich.edu Exit(1) 933955SN/A 9342598SN/A# On Solaris you need to use libsocket for socket ops 935if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 936 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 937 print "Can't find library with socket calls (e.g. accept())" 938 Exit(1) 939 940# Check for zlib. If the check passes, libz will be automatically 941# added to the LIBS environment variable. 942if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 943 print 'Error: did not find needed zlib compression library '\ 944 'and/or zlib.h header file.' 945 print ' Please install zlib and try again.' 946 Exit(1) 947 948# If we have the protobuf compiler, also make sure we have the 949# development libraries. If the check passes, libprotobuf will be 950# automatically added to the LIBS environment variable. After 951# this, we can use the HAVE_PROTOBUF flag to determine if we have 952# got both protoc and libprotobuf available. 953main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 954 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 955 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 956 957# If we have the compiler but not the library, print another warning. 958if main['PROTOC'] and not main['HAVE_PROTOBUF']: 959 print termcap.Yellow + termcap.Bold + \ 960 'Warning: did not find protocol buffer library and/or headers.\n' + \ 961 ' Please install libprotobuf-dev for tracing support.' + \ 962 termcap.Normal 963 964# Check for librt. 965have_posix_clock = \ 966 conf.CheckLibWithHeader(None, 'time.h', 'C', 967 'clock_nanosleep(0,0,NULL,NULL);') or \ 968 conf.CheckLibWithHeader('rt', 'time.h', 'C', 969 'clock_nanosleep(0,0,NULL,NULL);') 970 971have_posix_timers = \ 972 conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C', 973 'timer_create(CLOCK_MONOTONIC, NULL, NULL);') 974 975if not GetOption('without_tcmalloc'): 976 if conf.CheckLib('tcmalloc'): 977 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 978 elif conf.CheckLib('tcmalloc_minimal'): 979 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS']) 980 else: 981 print termcap.Yellow + termcap.Bold + \ 982 "You can get a 12% performance improvement by "\ 983 "installing tcmalloc (libgoogle-perftools-dev package "\ 984 "on Ubuntu or RedHat)." + termcap.Normal 985 986 987# Detect back trace implementations. The last implementation in the 988# list will be used by default. 989backtrace_impls = [ "none" ] 990 991if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', 992 'backtrace_symbols_fd((void*)0, 0, 0);'): 993 backtrace_impls.append("glibc") 994 995if backtrace_impls[-1] == "none": 996 default_backtrace_impl = "none" 997 print termcap.Yellow + termcap.Bold + \ 998 "No suitable back trace implementation found." + \ 999 termcap.Normal 1000 1001if not have_posix_clock: 1002 print "Can't find library for POSIX clocks." 1003 1004# Check for <fenv.h> (C99 FP environment control) 1005have_fenv = conf.CheckHeader('fenv.h', '<>') 1006if not have_fenv: 1007 print "Warning: Header file <fenv.h> not found." 1008 print " This host has no IEEE FP rounding mode control." 1009 1010# Check if we should enable KVM-based hardware virtualization. The API 1011# we rely on exists since version 2.6.36 of the kernel, but somehow 1012# the KVM_API_VERSION does not reflect the change. We test for one of 1013# the types as a fall back. 1014have_kvm = conf.CheckHeader('linux/kvm.h', '<>') 1015if not have_kvm: 1016 print "Info: Compatible header file <linux/kvm.h> not found, " \ 1017 "disabling KVM support." 1018 1019# x86 needs support for xsave. We test for the structure here since we 1020# won't be able to run new tests by the time we know which ISA we're 1021# targeting. 1022have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave', 1023 '#include <linux/kvm.h>') != 0 1024 1025# Check if the requested target ISA is compatible with the host 1026def is_isa_kvm_compatible(isa): 1027 try: 1028 import platform 1029 host_isa = platform.machine() 1030 except: 1031 print "Warning: Failed to determine host ISA." 1032 return False 1033 1034 if not have_posix_timers: 1035 print "Warning: Can not enable KVM, host seems to lack support " \ 1036 "for POSIX timers" 1037 return False 1038 1039 if isa == "arm": 1040 return host_isa in ( "armv7l", "aarch64" ) 1041 elif isa == "x86": 1042 if host_isa != "x86_64": 1043 return False 1044 1045 if not have_kvm_xsave: 1046 print "KVM on x86 requires xsave support in kernel headers." 1047 return False 1048 1049 return True 1050 else: 1051 return False 1052 1053 1054# Check if the exclude_host attribute is available. We want this to 1055# get accurate instruction counts in KVM. 1056main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember( 1057 'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host') 1058 1059 1060###################################################################### 1061# 1062# Finish the configuration 1063# 1064main = conf.Finish() 1065 1066###################################################################### 1067# 1068# Collect all non-global variables 1069# 1070 1071# Define the universe of supported ISAs 1072all_isa_list = [ ] 1073Export('all_isa_list') 1074 1075class CpuModel(object): 1076 '''The CpuModel class encapsulates everything the ISA parser needs to 1077 know about a particular CPU model.''' 1078 1079 # Dict of available CPU model objects. Accessible as CpuModel.dict. 1080 dict = {} 1081 1082 # Constructor. Automatically adds models to CpuModel.dict. 1083 def __init__(self, name, default=False): 1084 self.name = name # name of model 1085 1086 # This cpu is enabled by default 1087 self.default = default 1088 1089 # Add self to dict 1090 if name in CpuModel.dict: 1091 raise AttributeError, "CpuModel '%s' already registered" % name 1092 CpuModel.dict[name] = self 1093 1094Export('CpuModel') 1095 1096# Sticky variables get saved in the variables file so they persist from 1097# one invocation to the next (unless overridden, in which case the new 1098# value becomes sticky). 1099sticky_vars = Variables(args=ARGUMENTS) 1100Export('sticky_vars') 1101 1102# Sticky variables that should be exported 1103export_vars = [] 1104Export('export_vars') 1105 1106# For Ruby 1107all_protocols = [] 1108Export('all_protocols') 1109protocol_dirs = [] 1110Export('protocol_dirs') 1111slicc_includes = [] 1112Export('slicc_includes') 1113 1114# Walk the tree and execute all SConsopts scripts that wil add to the 1115# above variables 1116if GetOption('verbose'): 1117 print "Reading SConsopts" 1118for bdir in [ base_dir ] + extras_dir_list: 1119 if not isdir(bdir): 1120 print "Error: directory '%s' does not exist" % bdir 1121 Exit(1) 1122 for root, dirs, files in os.walk(bdir): 1123 if 'SConsopts' in files: 1124 if GetOption('verbose'): 1125 print "Reading", joinpath(root, 'SConsopts') 1126 SConscript(joinpath(root, 'SConsopts')) 1127 1128all_isa_list.sort() 1129 1130sticky_vars.AddVariables( 1131 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 1132 ListVariable('CPU_MODELS', 'CPU models', 1133 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 1134 sorted(CpuModel.dict.keys())), 1135 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 1136 False), 1137 BoolVariable('SS_COMPATIBLE_FP', 1138 'Make floating-point results compatible with SimpleScalar', 1139 False), 1140 BoolVariable('USE_SSE2', 1141 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 1142 False), 1143 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 1144 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 1145 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 1146 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models', have_kvm), 1147 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1148 all_protocols), 1149 EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation', 1150 backtrace_impls[-1], backtrace_impls) 1151 ) 1152 1153# These variables get exported to #defines in config/*.hh (see src/SConscript). 1154export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE', 1155 'USE_POSIX_CLOCK', 'USE_KVM', 'PROTOCOL', 'HAVE_PROTOBUF', 1156 'HAVE_PERF_ATTR_EXCLUDE_HOST'] 1157 1158################################################### 1159# 1160# Define a SCons builder for configuration flag headers. 1161# 1162################################################### 1163 1164# This function generates a config header file that #defines the 1165# variable symbol to the current variable setting (0 or 1). The source 1166# operands are the name of the variable and a Value node containing the 1167# value of the variable. 1168def build_config_file(target, source, env): 1169 (variable, value) = [s.get_contents() for s in source] 1170 f = file(str(target[0]), 'w') 1171 print >> f, '#define', variable, value 1172 f.close() 1173 return None 1174 1175# Combine the two functions into a scons Action object. 1176config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1177 1178# The emitter munges the source & target node lists to reflect what 1179# we're really doing. 1180def config_emitter(target, source, env): 1181 # extract variable name from Builder arg 1182 variable = str(target[0]) 1183 # True target is config header file 1184 target = joinpath('config', variable.lower() + '.hh') 1185 val = env[variable] 1186 if isinstance(val, bool): 1187 # Force value to 0/1 1188 val = int(val) 1189 elif isinstance(val, str): 1190 val = '"' + val + '"' 1191 1192 # Sources are variable name & value (packaged in SCons Value nodes) 1193 return ([target], [Value(variable), Value(val)]) 1194 1195config_builder = Builder(emitter = config_emitter, action = config_action) 1196 1197main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1198 1199# libelf build is shared across all configs in the build root. 1200main.SConscript('ext/libelf/SConscript', 1201 variant_dir = joinpath(build_root, 'libelf')) 1202 1203# iostream3 build is shared across all configs in the build root. 1204main.SConscript('ext/iostream3/SConscript', 1205 variant_dir = joinpath(build_root, 'iostream3')) 1206 1207# libfdt build is shared across all configs in the build root. 1208main.SConscript('ext/libfdt/SConscript', 1209 variant_dir = joinpath(build_root, 'libfdt')) 1210 1211# fputils build is shared across all configs in the build root. 1212main.SConscript('ext/fputils/SConscript', 1213 variant_dir = joinpath(build_root, 'fputils')) 1214 1215# DRAMSim2 build is shared across all configs in the build root. 1216main.SConscript('ext/dramsim2/SConscript', 1217 variant_dir = joinpath(build_root, 'dramsim2')) 1218 1219# DRAMPower build is shared across all configs in the build root. 1220main.SConscript('ext/drampower/SConscript', 1221 variant_dir = joinpath(build_root, 'drampower')) 1222 1223# nomali build is shared across all configs in the build root. 1224main.SConscript('ext/nomali/SConscript', 1225 variant_dir = joinpath(build_root, 'nomali')) 1226 1227################################################### 1228# 1229# This function is used to set up a directory with switching headers 1230# 1231################################################### 1232 1233main['ALL_ISA_LIST'] = all_isa_list 1234all_isa_deps = {} 1235def make_switching_dir(dname, switch_headers, env): 1236 # Generate the header. target[0] is the full path of the output 1237 # header to generate. 'source' is a dummy variable, since we get the 1238 # list of ISAs from env['ALL_ISA_LIST']. 1239 def gen_switch_hdr(target, source, env): 1240 fname = str(target[0]) 1241 isa = env['TARGET_ISA'].lower() 1242 try: 1243 f = open(fname, 'w') 1244 print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname)) 1245 f.close() 1246 except IOError: 1247 print "Failed to create %s" % fname 1248 raise 1249 1250 # Build SCons Action object. 'varlist' specifies env vars that this 1251 # action depends on; when env['ALL_ISA_LIST'] changes these actions 1252 # should get re-executed. 1253 switch_hdr_action = MakeAction(gen_switch_hdr, 1254 Transform("GENERATE"), varlist=['ALL_ISA_LIST']) 1255 1256 # Instantiate actions for each header 1257 for hdr in switch_headers: 1258 env.Command(hdr, [], switch_hdr_action) 1259 1260 isa_target = Dir('.').up().name.lower().replace('_', '-') 1261 env['PHONY_BASE'] = '#'+isa_target 1262 all_isa_deps[isa_target] = None 1263 1264Export('make_switching_dir') 1265 1266# all-isas -> all-deps -> all-environs -> all_targets 1267main.Alias('#all-isas', []) 1268main.Alias('#all-deps', '#all-isas') 1269 1270# Dummy target to ensure all environments are created before telling 1271# SCons what to actually make (the command line arguments). We attach 1272# them to the dependence graph after the environments are complete. 1273ORIG_BUILD_TARGETS = list(BUILD_TARGETS) # force a copy; gets closure to work. 1274def environsComplete(target, source, env): 1275 for t in ORIG_BUILD_TARGETS: 1276 main.Depends('#all-targets', t) 1277 1278# Each build/* switching_dir attaches its *-environs target to #all-environs. 1279main.Append(BUILDERS = {'CompleteEnvirons' : 1280 Builder(action=MakeAction(environsComplete, None))}) 1281main.CompleteEnvirons('#all-environs', []) 1282 1283def doNothing(**ignored): pass 1284main.Append(BUILDERS = {'Dummy': Builder(action=MakeAction(doNothing, None))}) 1285 1286# The final target to which all the original targets ultimately get attached. 1287main.Dummy('#all-targets', '#all-environs') 1288BUILD_TARGETS[:] = ['#all-targets'] 1289 1290################################################### 1291# 1292# Define build environments for selected configurations. 1293# 1294################################################### 1295 1296for variant_path in variant_paths: 1297 if not GetOption('silent'): 1298 print "Building in", variant_path 1299 1300 # Make a copy of the build-root environment to use for this config. 1301 env = main.Clone() 1302 env['BUILDDIR'] = variant_path 1303 1304 # variant_dir is the tail component of build path, and is used to 1305 # determine the build parameters (e.g., 'ALPHA_SE') 1306 (build_root, variant_dir) = splitpath(variant_path) 1307 1308 # Set env variables according to the build directory config. 1309 sticky_vars.files = [] 1310 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1311 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1312 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1313 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1314 if isfile(current_vars_file): 1315 sticky_vars.files.append(current_vars_file) 1316 if not GetOption('silent'): 1317 print "Using saved variables file %s" % current_vars_file 1318 else: 1319 # Build dir-specific variables file doesn't exist. 1320 1321 # Make sure the directory is there so we can create it later 1322 opt_dir = dirname(current_vars_file) 1323 if not isdir(opt_dir): 1324 mkdir(opt_dir) 1325 1326 # Get default build variables from source tree. Variables are 1327 # normally determined by name of $VARIANT_DIR, but can be 1328 # overridden by '--default=' arg on command line. 1329 default = GetOption('default') 1330 opts_dir = joinpath(main.root.abspath, 'build_opts') 1331 if default: 1332 default_vars_files = [joinpath(build_root, 'variables', default), 1333 joinpath(opts_dir, default)] 1334 else: 1335 default_vars_files = [joinpath(opts_dir, variant_dir)] 1336 existing_files = filter(isfile, default_vars_files) 1337 if existing_files: 1338 default_vars_file = existing_files[0] 1339 sticky_vars.files.append(default_vars_file) 1340 print "Variables file %s not found,\n using defaults in %s" \ 1341 % (current_vars_file, default_vars_file) 1342 else: 1343 print "Error: cannot find variables file %s or " \ 1344 "default file(s) %s" \ 1345 % (current_vars_file, ' or '.join(default_vars_files)) 1346 Exit(1) 1347 1348 # Apply current variable settings to env 1349 sticky_vars.Update(env) 1350 1351 help_texts["local_vars"] += \ 1352 "Build variables for %s:\n" % variant_dir \ 1353 + sticky_vars.GenerateHelpText(env) 1354 1355 # Process variable settings. 1356 1357 if not have_fenv and env['USE_FENV']: 1358 print "Warning: <fenv.h> not available; " \ 1359 "forcing USE_FENV to False in", variant_dir + "." 1360 env['USE_FENV'] = False 1361 1362 if not env['USE_FENV']: 1363 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1364 print " FP results may deviate slightly from other platforms." 1365 1366 if env['EFENCE']: 1367 env.Append(LIBS=['efence']) 1368 1369 if env['USE_KVM']: 1370 if not have_kvm: 1371 print "Warning: Can not enable KVM, host seems to lack KVM support" 1372 env['USE_KVM'] = False 1373 elif not is_isa_kvm_compatible(env['TARGET_ISA']): 1374 print "Info: KVM support disabled due to unsupported host and " \ 1375 "target ISA combination" 1376 env['USE_KVM'] = False 1377 1378 # Warn about missing optional functionality 1379 if env['USE_KVM']: 1380 if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']: 1381 print "Warning: perf_event headers lack support for the " \ 1382 "exclude_host attribute. KVM instruction counts will " \ 1383 "be inaccurate." 1384 1385 # Save sticky variable settings back to current variables file 1386 sticky_vars.Save(current_vars_file, env) 1387 1388 if env['USE_SSE2']: 1389 env.Append(CCFLAGS=['-msse2']) 1390 1391 # The src/SConscript file sets up the build rules in 'env' according 1392 # to the configured variables. It returns a list of environments, 1393 # one for each variant build (debug, opt, etc.) 1394 SConscript('src/SConscript', variant_dir = variant_path, exports = 'env') 1395 1396def pairwise(iterable): 1397 "s -> (s0,s1), (s1,s2), (s2, s3), ..." 1398 a, b = itertools.tee(iterable) 1399 b.next() 1400 return itertools.izip(a, b) 1401 1402# Create false dependencies so SCons will parse ISAs, establish 1403# dependencies, and setup the build Environments serially. Either 1404# SCons (likely) and/or our SConscripts (possibly) cannot cope with -j 1405# greater than 1. It appears to be standard race condition stuff; it 1406# doesn't always fail, but usually, and the behaviors are different. 1407# Every time I tried to remove this, builds would fail in some 1408# creative new way. So, don't do that. You'll want to, though, because 1409# tests/SConscript takes a long time to make its Environments. 1410for t1, t2 in pairwise(sorted(all_isa_deps.iterkeys())): 1411 main.Depends('#%s-deps' % t2, '#%s-deps' % t1) 1412 main.Depends('#%s-environs' % t2, '#%s-environs' % t1) 1413 1414# base help text 1415Help(''' 1416Usage: scons [scons options] [build variables] [target(s)] 1417 1418Extra scons options: 1419%(options)s 1420 1421Global build variables: 1422%(global_vars)s 1423 1424%(local_vars)s 1425''' % help_texts) 1426