SConstruct revision 9556
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc. 4955SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company 5955SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 6955SN/A# All rights reserved. 7955SN/A# 8955SN/A# Redistribution and use in source and binary forms, with or without 9955SN/A# modification, are permitted provided that the following conditions are 10955SN/A# met: redistributions of source code must retain the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer; 12955SN/A# redistributions in binary form must reproduce the above copyright 13955SN/A# notice, this list of conditions and the following disclaimer in the 14955SN/A# documentation and/or other materials provided with the distribution; 15955SN/A# neither the name of the copyright holders nor the names of its 16955SN/A# contributors may be used to endorse or promote products derived from 17955SN/A# this software without specific prior written permission. 18955SN/A# 19955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 282665Ssaidi@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 292665Ssaidi@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30955SN/A# 31955SN/A# Authors: Steve Reinhardt 32955SN/A# Nathan Binkert 33955SN/A 34955SN/A################################################### 352632Sstever@eecs.umich.edu# 362632Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file. 372632Sstever@eecs.umich.edu# 382632Sstever@eecs.umich.edu# While in this directory ('gem5'), just type 'scons' to build the default 39955SN/A# configuration (see below), or type 'scons build/<CONFIG>/<binary>' 402632Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for 412632Sstever@eecs.umich.edu# the optimized full-system version). 422761Sstever@eecs.umich.edu# 432632Sstever@eecs.umich.edu# You can build gem5 in a different directory as long as there is a 442632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path. The build system 452632Sstever@eecs.umich.edu# expects that all configs under the same build directory are being 462761Sstever@eecs.umich.edu# built for the same host system. 472761Sstever@eecs.umich.edu# 482761Sstever@eecs.umich.edu# Examples: 492632Sstever@eecs.umich.edu# 502632Sstever@eecs.umich.edu# The following two commands are equivalent. The '-u' option tells 512761Sstever@eecs.umich.edu# scons to search up the directory tree for this SConstruct file. 522761Sstever@eecs.umich.edu# % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug 532761Sstever@eecs.umich.edu# % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug 542761Sstever@eecs.umich.edu# 552761Sstever@eecs.umich.edu# The following two commands are equivalent and demonstrate building 562632Sstever@eecs.umich.edu# in a directory outside of the source tree. The '-C' option tells 572632Sstever@eecs.umich.edu# scons to chdir to the specified directory to find this SConstruct 582632Sstever@eecs.umich.edu# file. 592632Sstever@eecs.umich.edu# % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug 602632Sstever@eecs.umich.edu# % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug 612632Sstever@eecs.umich.edu# 622632Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options. If you're in this 63955SN/A# 'gem5' directory (or use -u or -C to tell scons where to find this 64955SN/A# file), you can use 'scons -h' to print all the gem5-specific build 65955SN/A# options as well. 66955SN/A# 67955SN/A################################################### 68955SN/A 69955SN/A# Check for recent-enough Python and SCons versions. 702656Sstever@eecs.umich.edutry: 712656Sstever@eecs.umich.edu # Really old versions of scons only take two options for the 722656Sstever@eecs.umich.edu # function, so check once without the revision and once with the 732656Sstever@eecs.umich.edu # revision, the first instance will fail for stuff other than 742656Sstever@eecs.umich.edu # 0.98, and the second will fail for 0.98.0 752656Sstever@eecs.umich.edu EnsureSConsVersion(0, 98) 762656Sstever@eecs.umich.edu EnsureSConsVersion(0, 98, 1) 772653Sstever@eecs.umich.eduexcept SystemExit, e: 782653Sstever@eecs.umich.edu print """ 792653Sstever@eecs.umich.eduFor more details, see: 802653Sstever@eecs.umich.edu http://gem5.org/Dependencies 812653Sstever@eecs.umich.edu""" 822653Sstever@eecs.umich.edu raise 832653Sstever@eecs.umich.edu 842653Sstever@eecs.umich.edu# We ensure the python version early because we have stuff that 852653Sstever@eecs.umich.edu# requires python 2.4 862653Sstever@eecs.umich.edutry: 872653Sstever@eecs.umich.edu EnsurePythonVersion(2, 4) 881852SN/Aexcept SystemExit, e: 89955SN/A print """ 90955SN/AYou can use a non-default installation of the Python interpreter by 91955SN/Aeither (1) rearranging your PATH so that scons finds the non-default 922632Sstever@eecs.umich.edu'python' first or (2) explicitly invoking an alternative interpreter 932632Sstever@eecs.umich.eduon the scons script. 94955SN/A 951533SN/AFor more details, see: 962632Sstever@eecs.umich.edu http://gem5.org/wiki/index.php/Using_a_non-default_Python_installation 971533SN/A""" 98955SN/A raise 99955SN/A 1002632Sstever@eecs.umich.edu# Global Python includes 1012632Sstever@eecs.umich.eduimport os 102955SN/Aimport re 103955SN/Aimport subprocess 104955SN/Aimport sys 105955SN/A 1062632Sstever@eecs.umich.edufrom os import mkdir, environ 107955SN/Afrom os.path import abspath, basename, dirname, expanduser, normpath 1082632Sstever@eecs.umich.edufrom os.path import exists, isdir, isfile 109955SN/Afrom os.path import join as joinpath, split as splitpath 110955SN/A 1112632Sstever@eecs.umich.edu# SCons includes 1122632Sstever@eecs.umich.eduimport SCons 1132632Sstever@eecs.umich.eduimport SCons.Node 1142632Sstever@eecs.umich.edu 1152632Sstever@eecs.umich.eduextra_python_paths = [ 1162632Sstever@eecs.umich.edu Dir('src/python').srcnode().abspath, # gem5 includes 1172632Sstever@eecs.umich.edu Dir('ext/ply').srcnode().abspath, # ply is used by several files 1182632Sstever@eecs.umich.edu ] 1192632Sstever@eecs.umich.edu 1202632Sstever@eecs.umich.edusys.path[1:1] = extra_python_paths 1212632Sstever@eecs.umich.edu 1223053Sstever@eecs.umich.edufrom m5.util import compareVersions, readCommand 1233053Sstever@eecs.umich.edufrom m5.util.terminal import get_termcap 1243053Sstever@eecs.umich.edu 1253053Sstever@eecs.umich.eduhelp_texts = { 1263053Sstever@eecs.umich.edu "options" : "", 1273053Sstever@eecs.umich.edu "global_vars" : "", 1283053Sstever@eecs.umich.edu "local_vars" : "" 1293053Sstever@eecs.umich.edu} 1303053Sstever@eecs.umich.edu 1313053Sstever@eecs.umich.eduExport("help_texts") 1323053Sstever@eecs.umich.edu 1333053Sstever@eecs.umich.edu 1343053Sstever@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from 1353053Sstever@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h' 1363053Sstever@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the 1373053Sstever@eecs.umich.edu# Help() function, but these two features are incompatible: once 1382632Sstever@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get 1392632Sstever@eecs.umich.edu# at the help texts from AddOptions. See: 1402632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2356 1412632Sstever@eecs.umich.edu# http://scons.tigris.org/issues/show_bug.cgi?id=2611 1422632Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and 1432632Sstever@eecs.umich.edu# re-inject it via Help(). Ideally someday this bug will be fixed and 1442634Sstever@eecs.umich.edu# we can just use AddOption directly. 1452634Sstever@eecs.umich.edudef AddLocalOption(*args, **kwargs): 1462632Sstever@eecs.umich.edu col_width = 30 1472638Sstever@eecs.umich.edu 1482632Sstever@eecs.umich.edu help = " " + ", ".join(args) 1492632Sstever@eecs.umich.edu if "help" in kwargs: 1502632Sstever@eecs.umich.edu length = len(help) 1512632Sstever@eecs.umich.edu if length >= col_width: 1522632Sstever@eecs.umich.edu help += "\n" + " " * col_width 1532632Sstever@eecs.umich.edu else: 1541858SN/A help += " " * (col_width - length) 1552638Sstever@eecs.umich.edu help += kwargs["help"] 1562638Sstever@eecs.umich.edu help_texts["options"] += help + "\n" 1572638Sstever@eecs.umich.edu 1582638Sstever@eecs.umich.edu AddOption(*args, **kwargs) 1592638Sstever@eecs.umich.edu 1602638Sstever@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true', 1612638Sstever@eecs.umich.edu help="Add color to abbreviated scons output") 1622638Sstever@eecs.umich.eduAddLocalOption('--no-colors', dest='use_colors', action='store_false', 1632634Sstever@eecs.umich.edu help="Don't add color to abbreviated scons output") 1642634Sstever@eecs.umich.eduAddLocalOption('--default', dest='default', type='string', action='store', 1652634Sstever@eecs.umich.edu help='Override which build_opts file to use for defaults') 166955SN/AAddLocalOption('--ignore-style', dest='ignore_style', action='store_true', 167955SN/A help='Disable style checking hooks') 168955SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true', 169955SN/A help='Disable Link-Time Optimization for fast') 170955SN/AAddLocalOption('--update-ref', dest='update_ref', action='store_true', 171955SN/A help='Update test reference outputs') 172955SN/AAddLocalOption('--verbose', dest='verbose', action='store_true', 173955SN/A help='Print full tool command lines') 1741858SN/A 1751858SN/Atermcap = get_termcap(GetOption('use_colors')) 1762632Sstever@eecs.umich.edu 177955SN/A######################################################################## 1782776Sstever@eecs.umich.edu# 1791105SN/A# Set up the main build environment. 1802667Sstever@eecs.umich.edu# 1812667Sstever@eecs.umich.edu######################################################################## 1822667Sstever@eecs.umich.eduuse_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 1832667Sstever@eecs.umich.edu 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH', 1842667Sstever@eecs.umich.edu 'RANLIB', 'SWIG' ]) 1852667Sstever@eecs.umich.edu 1861869SN/Ause_prefixes = [ 1871869SN/A "M5", # M5 configuration (e.g., path to kernels) 1881869SN/A "DISTCC_", # distcc (distributed compiler wrapper) configuration 1891869SN/A "CCACHE_", # ccache (caching compiler wrapper) configuration 1901869SN/A "CCC_", # clang static analyzer configuration 1911065SN/A ] 1922632Sstever@eecs.umich.edu 1932632Sstever@eecs.umich.eduuse_env = {} 194955SN/Afor key,val in os.environ.iteritems(): 1951858SN/A if key in use_vars or \ 1961858SN/A any([key.startswith(prefix) for prefix in use_prefixes]): 1971858SN/A use_env[key] = val 1981858SN/A 1991851SN/Amain = Environment(ENV=use_env) 2001851SN/Amain.Decider('MD5-timestamp') 2011858SN/Amain.root = Dir(".") # The current directory (where this file lives). 2022632Sstever@eecs.umich.edumain.srcdir = Dir("src") # The source directory 203955SN/A 2042656Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys() 2052656Sstever@eecs.umich.edu 2062656Sstever@eecs.umich.edu# Check that we have a C/C++ compiler 2072656Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys): 2082656Sstever@eecs.umich.edu print "No C++ compiler installed (package g++ on Ubuntu and RedHat)" 2092656Sstever@eecs.umich.edu Exit(1) 2102656Sstever@eecs.umich.edu 2112656Sstever@eecs.umich.edu# Check that swig is present 2122656Sstever@eecs.umich.eduif not 'SWIG' in main_dict_keys: 2132656Sstever@eecs.umich.edu print "swig is not installed (package swig on Ubuntu and RedHat)" 2142656Sstever@eecs.umich.edu Exit(1) 2152656Sstever@eecs.umich.edu 2162656Sstever@eecs.umich.edu# add useful python code PYTHONPATH so it can be used by subprocesses 2172656Sstever@eecs.umich.edu# as well 2182656Sstever@eecs.umich.edumain.AppendENVPath('PYTHONPATH', extra_python_paths) 2192656Sstever@eecs.umich.edu 2202655Sstever@eecs.umich.edu######################################################################## 2213053Sstever@eecs.umich.edu# 2223053Sstever@eecs.umich.edu# Mercurial Stuff. 2233053Sstever@eecs.umich.edu# 2243053Sstever@eecs.umich.edu# If the gem5 directory is a mercurial repository, we should do some 2253053Sstever@eecs.umich.edu# extra things. 2263053Sstever@eecs.umich.edu# 2273053Sstever@eecs.umich.edu######################################################################## 2283053Sstever@eecs.umich.edu 2293053Sstever@eecs.umich.eduhgdir = main.root.Dir(".hg") 2303053Sstever@eecs.umich.edu 2313053Sstever@eecs.umich.edumercurial_style_message = """ 2323053Sstever@eecs.umich.eduYou're missing the gem5 style hook, which automatically checks your code 2333053Sstever@eecs.umich.eduagainst the gem5 style rules on hg commit and qrefresh commands. This 2343053Sstever@eecs.umich.eduscript will now install the hook in your .hg/hgrc file. 2353053Sstever@eecs.umich.eduPress enter to continue, or ctrl-c to abort: """ 2363053Sstever@eecs.umich.edu 2373053Sstever@eecs.umich.edumercurial_style_hook = """ 2383053Sstever@eecs.umich.edu# The following lines were automatically added by gem5/SConstruct 2393053Sstever@eecs.umich.edu# to provide the gem5 style-checking hooks 2402667Sstever@eecs.umich.edu[extensions] 2412667Sstever@eecs.umich.edustyle = %s/util/style.py 2422667Sstever@eecs.umich.edu 2432667Sstever@eecs.umich.edu[hooks] 2442667Sstever@eecs.umich.edupretxncommit.style = python:style.check_style 2452667Sstever@eecs.umich.edupre-qrefresh.style = python:style.check_style 2462667Sstever@eecs.umich.edu# End of SConstruct additions 2472667Sstever@eecs.umich.edu 2482667Sstever@eecs.umich.edu""" % (main.root.abspath) 2492667Sstever@eecs.umich.edu 2502667Sstever@eecs.umich.edumercurial_lib_not_found = """ 2512667Sstever@eecs.umich.eduMercurial libraries cannot be found, ignoring style hook. If 2522638Sstever@eecs.umich.eduyou are a gem5 developer, please fix this and run the style 2532638Sstever@eecs.umich.eduhook. It is important. 2542638Sstever@eecs.umich.edu""" 2552638Sstever@eecs.umich.edu 2562638Sstever@eecs.umich.edu# Check for style hook and prompt for installation if it's not there. 2571858SN/A# Skip this if --ignore-style was specified, there's no .hg dir to 2583053Sstever@eecs.umich.edu# install a hook in, or there's no interactive terminal to prompt. 2593053Sstever@eecs.umich.eduif not GetOption('ignore_style') and hgdir.exists() and sys.stdin.isatty(): 2603053Sstever@eecs.umich.edu style_hook = True 2613053Sstever@eecs.umich.edu try: 2623053Sstever@eecs.umich.edu from mercurial import ui 2633053Sstever@eecs.umich.edu ui = ui.ui() 2643053Sstever@eecs.umich.edu ui.readconfig(hgdir.File('hgrc').abspath) 2653053Sstever@eecs.umich.edu style_hook = ui.config('hooks', 'pretxncommit.style', None) and \ 2661858SN/A ui.config('hooks', 'pre-qrefresh.style', None) 2671858SN/A except ImportError: 2681858SN/A print mercurial_lib_not_found 2691858SN/A 2701858SN/A if not style_hook: 2711858SN/A print mercurial_style_message, 2721859SN/A # continue unless user does ctrl-c/ctrl-d etc. 2731858SN/A try: 2741858SN/A raw_input() 2751858SN/A except: 2761859SN/A print "Input exception, exiting scons.\n" 2771859SN/A sys.exit(1) 2781862SN/A hgrc_path = '%s/.hg/hgrc' % main.root.abspath 2793053Sstever@eecs.umich.edu print "Adding style hook to", hgrc_path, "\n" 2803053Sstever@eecs.umich.edu try: 2813053Sstever@eecs.umich.edu hgrc = open(hgrc_path, 'a') 2823053Sstever@eecs.umich.edu hgrc.write(mercurial_style_hook) 2831859SN/A hgrc.close() 2841859SN/A except: 2851859SN/A print "Error updating", hgrc_path 2861859SN/A sys.exit(1) 2871859SN/A 2881859SN/A 2891859SN/A################################################### 2901859SN/A# 2911862SN/A# Figure out which configurations to set up based on the path(s) of 2921859SN/A# the target(s). 2931859SN/A# 2941859SN/A################################################### 2951858SN/A 2961858SN/A# Find default configuration & binary. 2972139SN/ADefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug')) 2982139SN/A 2992139SN/A# helper function: find last occurrence of element in list 3002155SN/Adef rfind(l, elt, offs = -1): 3012623SN/A for i in range(len(l)+offs, 0, -1): 3022817Sksewell@umich.edu if l[i] == elt: 3032792Sktlim@umich.edu return i 3042155SN/A raise ValueError, "element not found" 3051869SN/A 3061869SN/A# Take a list of paths (or SCons Nodes) and return a list with all 3071869SN/A# paths made absolute and ~-expanded. Paths will be interpreted 3081869SN/A# relative to the launch directory unless a different root is provided 3091869SN/Adef makePathListAbsolute(path_list, root=GetLaunchDir()): 3102139SN/A return [abspath(joinpath(root, expanduser(str(p)))) 3111869SN/A for p in path_list] 3122508SN/A 3132508SN/A# Each target must have 'build' in the interior of the path; the 3142508SN/A# directory below this will determine the build parameters. For 3152508SN/A# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we 3162635Sstever@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it 3172635Sstever@eecs.umich.edu# follow 'build' in the build path. 3181869SN/A 3191869SN/A# The funky assignment to "[:]" is needed to replace the list contents 3201869SN/A# in place rather than reassign the symbol to a new list, which 3211869SN/A# doesn't work (obviously!). 3221869SN/ABUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS) 3231869SN/A 3241869SN/A# Generate a list of the unique build roots and configs that the 3251869SN/A# collected targets reference. 3261965SN/Avariant_paths = [] 3271965SN/Abuild_root = None 3281965SN/Afor t in BUILD_TARGETS: 3291869SN/A path_dirs = t.split('/') 3301869SN/A try: 3312733Sktlim@umich.edu build_top = rfind(path_dirs, 'build', -2) 3321869SN/A except: 3331884SN/A print "Error: no non-leaf 'build' dir found on target path", t 3341884SN/A Exit(1) 3351884SN/A this_build_root = joinpath('/',*path_dirs[:build_top+1]) 3361869SN/A if not build_root: 3371858SN/A build_root = this_build_root 3381869SN/A else: 3391869SN/A if this_build_root != build_root: 3401869SN/A print "Error: build targets not under same build root\n"\ 3411869SN/A " %s\n %s" % (build_root, this_build_root) 3421869SN/A Exit(1) 3431858SN/A variant_path = joinpath('/',*path_dirs[:build_top+2]) 3442761Sstever@eecs.umich.edu if variant_path not in variant_paths: 3451869SN/A variant_paths.append(variant_path) 3462733Sktlim@umich.edu 3472733Sktlim@umich.edu# Make sure build_root exists (might not if this is the first build there) 3481869SN/Aif not isdir(build_root): 3491869SN/A mkdir(build_root) 3501869SN/Amain['BUILDROOT'] = build_root 3511869SN/A 3521869SN/AExport('main') 3531869SN/A 3541858SN/Amain.SConsignFile(joinpath(build_root, "sconsign")) 355955SN/A 356955SN/A# Default duplicate option is to use hard links, but this messes up 3571869SN/A# when you use emacs to edit a file in the target dir, as emacs moves 3581869SN/A# file to file~ then copies to file, breaking the link. Symbolic 3591869SN/A# (soft) links work better. 3601869SN/Amain.SetOption('duplicate', 'soft-copy') 3611869SN/A 3621869SN/A# 3631869SN/A# Set up global sticky variables... these are common to an entire build 3641869SN/A# tree (not specific to a particular build like ALPHA_SE) 3651869SN/A# 3661869SN/A 3671869SN/Aglobal_vars_file = joinpath(build_root, 'variables.global') 3681869SN/A 3691869SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS) 3701869SN/A 3711869SN/Aglobal_vars.AddVariables( 3721869SN/A ('CC', 'C compiler', environ.get('CC', main['CC'])), 3731869SN/A ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 3741869SN/A ('SWIG', 'SWIG tool', environ.get('SWIG', main['SWIG'])), 3751869SN/A ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')), 3761869SN/A ('BATCH', 'Use batch pool for build and tests', False), 3771869SN/A ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 3781869SN/A ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), 3791869SN/A ('EXTRAS', 'Add extra directories to the compilation', '') 3801869SN/A ) 3811869SN/A 3821869SN/A# Update main environment with values from ARGUMENTS & global_vars_file 3831869SN/Aglobal_vars.Update(main) 3841869SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main) 3851869SN/A 3861869SN/A# Save sticky variable settings back to current variables file 3871869SN/Aglobal_vars.Save(global_vars_file, main) 3881869SN/A 3891869SN/A# Parse EXTRAS variable to build list of all directories where we're 3901869SN/A# look for sources etc. This list is exported as extras_dir_list. 3911869SN/Abase_dir = main.srcdir.abspath 3921869SN/Aif main['EXTRAS']: 3931869SN/A extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':')) 3941869SN/Aelse: 3951869SN/A extras_dir_list = [] 3962655Sstever@eecs.umich.edu 3972655Sstever@eecs.umich.eduExport('base_dir') 3982655Sstever@eecs.umich.eduExport('extras_dir_list') 3992655Sstever@eecs.umich.edu 4002655Sstever@eecs.umich.edu# the ext directory should be on the #includes path 4012655Sstever@eecs.umich.edumain.Append(CPPPATH=[Dir('ext')]) 4022655Sstever@eecs.umich.edu 4032655Sstever@eecs.umich.edudef strip_build_path(path, env): 4042655Sstever@eecs.umich.edu path = str(path) 4052655Sstever@eecs.umich.edu variant_base = env['BUILDROOT'] + os.path.sep 4062655Sstever@eecs.umich.edu if path.startswith(variant_base): 4072655Sstever@eecs.umich.edu path = path[len(variant_base):] 4082655Sstever@eecs.umich.edu elif path.startswith('build/'): 4092655Sstever@eecs.umich.edu path = path[6:] 4102655Sstever@eecs.umich.edu return path 4112655Sstever@eecs.umich.edu 4122655Sstever@eecs.umich.edu# Generate a string of the form: 4132655Sstever@eecs.umich.edu# common/path/prefix/src1, src2 -> tgt1, tgt2 4142655Sstever@eecs.umich.edu# to print while building. 4152655Sstever@eecs.umich.educlass Transform(object): 4162655Sstever@eecs.umich.edu # all specific color settings should be here and nowhere else 4172655Sstever@eecs.umich.edu tool_color = termcap.Normal 4182655Sstever@eecs.umich.edu pfx_color = termcap.Yellow 4192655Sstever@eecs.umich.edu srcs_color = termcap.Yellow + termcap.Bold 4202655Sstever@eecs.umich.edu arrow_color = termcap.Blue + termcap.Bold 4212655Sstever@eecs.umich.edu tgts_color = termcap.Yellow + termcap.Bold 4222634Sstever@eecs.umich.edu 4232634Sstever@eecs.umich.edu def __init__(self, tool, max_sources=99): 4242634Sstever@eecs.umich.edu self.format = self.tool_color + (" [%8s] " % tool) \ 4252634Sstever@eecs.umich.edu + self.pfx_color + "%s" \ 4262634Sstever@eecs.umich.edu + self.srcs_color + "%s" \ 4272634Sstever@eecs.umich.edu + self.arrow_color + " -> " \ 4282638Sstever@eecs.umich.edu + self.tgts_color + "%s" \ 4292638Sstever@eecs.umich.edu + termcap.Normal 4302638Sstever@eecs.umich.edu self.max_sources = max_sources 4312638Sstever@eecs.umich.edu 4322638Sstever@eecs.umich.edu def __call__(self, target, source, env, for_signature=None): 4331869SN/A # truncate source list according to max_sources param 4341869SN/A source = source[0:self.max_sources] 435955SN/A def strip(f): 436955SN/A return strip_build_path(str(f), env) 437955SN/A if len(source) > 0: 438955SN/A srcs = map(strip, source) 4391858SN/A else: 4401858SN/A srcs = [''] 4411858SN/A tgts = map(strip, target) 4422632Sstever@eecs.umich.edu # surprisingly, os.path.commonprefix is a dumb char-by-char string 4432632Sstever@eecs.umich.edu # operation that has nothing to do with paths. 4442632Sstever@eecs.umich.edu com_pfx = os.path.commonprefix(srcs + tgts) 4452632Sstever@eecs.umich.edu com_pfx_len = len(com_pfx) 4462632Sstever@eecs.umich.edu if com_pfx: 4472634Sstever@eecs.umich.edu # do some cleanup and sanity checking on common prefix 4482638Sstever@eecs.umich.edu if com_pfx[-1] == ".": 4492023SN/A # prefix matches all but file extension: ok 4502632Sstever@eecs.umich.edu # back up one to change 'foo.cc -> o' to 'foo.cc -> .o' 4512632Sstever@eecs.umich.edu com_pfx = com_pfx[0:-1] 4522632Sstever@eecs.umich.edu elif com_pfx[-1] == "/": 4532632Sstever@eecs.umich.edu # common prefix is directory path: OK 4542632Sstever@eecs.umich.edu pass 4552632Sstever@eecs.umich.edu else: 4562632Sstever@eecs.umich.edu src0_len = len(srcs[0]) 4572632Sstever@eecs.umich.edu tgt0_len = len(tgts[0]) 4582632Sstever@eecs.umich.edu if src0_len == com_pfx_len: 4592632Sstever@eecs.umich.edu # source is a substring of target, OK 4602632Sstever@eecs.umich.edu pass 4612023SN/A elif tgt0_len == com_pfx_len: 4622632Sstever@eecs.umich.edu # target is a substring of source, need to back up to 4632632Sstever@eecs.umich.edu # avoid empty string on RHS of arrow 4641889SN/A sep_idx = com_pfx.rfind(".") 4651889SN/A if sep_idx != -1: 4662632Sstever@eecs.umich.edu com_pfx = com_pfx[0:sep_idx] 4672632Sstever@eecs.umich.edu else: 4682632Sstever@eecs.umich.edu com_pfx = '' 4692632Sstever@eecs.umich.edu elif src0_len > com_pfx_len and srcs[0][com_pfx_len] == ".": 4702632Sstever@eecs.umich.edu # still splitting at file extension: ok 4712632Sstever@eecs.umich.edu pass 4722632Sstever@eecs.umich.edu else: 4732632Sstever@eecs.umich.edu # probably a fluke; ignore it 4742632Sstever@eecs.umich.edu com_pfx = '' 4752632Sstever@eecs.umich.edu # recalculate length in case com_pfx was modified 4762632Sstever@eecs.umich.edu com_pfx_len = len(com_pfx) 4772632Sstever@eecs.umich.edu def fmt(files): 4782632Sstever@eecs.umich.edu f = map(lambda s: s[com_pfx_len:], files) 4792632Sstever@eecs.umich.edu return ', '.join(f) 4801888SN/A return self.format % (com_pfx, fmt(srcs), fmt(tgts)) 4811888SN/A 4821869SN/AExport('Transform') 4831869SN/A 4841858SN/A# enable the regression script to use the termcap 4852598SN/Amain['TERMCAP'] = termcap 4862598SN/A 4872598SN/Aif GetOption('verbose'): 4882598SN/A def MakeAction(action, string, *args, **kwargs): 4892598SN/A return Action(action, *args, **kwargs) 4901858SN/Aelse: 4911858SN/A MakeAction = Action 4921858SN/A main['CCCOMSTR'] = Transform("CC") 4931858SN/A main['CXXCOMSTR'] = Transform("CXX") 4941858SN/A main['ASCOMSTR'] = Transform("AS") 4951858SN/A main['SWIGCOMSTR'] = Transform("SWIG") 4961858SN/A main['ARCOMSTR'] = Transform("AR", 0) 4971858SN/A main['LINKCOMSTR'] = Transform("LINK", 0) 4981858SN/A main['RANLIBCOMSTR'] = Transform("RANLIB", 0) 4991871SN/A main['M4COMSTR'] = Transform("M4") 5001858SN/A main['SHCCCOMSTR'] = Transform("SHCC") 5011858SN/A main['SHCXXCOMSTR'] = Transform("SHCXX") 5021858SN/AExport('MakeAction') 5031858SN/A 5041858SN/A# Initialize the Link-Time Optimization (LTO) flags 5051858SN/Amain['LTO_CCFLAGS'] = [] 5061858SN/Amain['LTO_LDFLAGS'] = [] 5071858SN/A 5081858SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False) 5091858SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False) 5101858SN/A 5111859SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0 5121859SN/Amain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0 5131869SN/Aif main['GCC'] + main['CLANG'] > 1: 5141888SN/A print 'Error: How can we have two at the same time?' 5152632Sstever@eecs.umich.edu Exit(1) 5161869SN/A 5171884SN/A# Set up default C++ compiler flags 5181884SN/Aif main['GCC'] or main['CLANG']: 5191884SN/A # As gcc and clang share many flags, do the common parts here 5201884SN/A main.Append(CCFLAGS=['-pipe']) 5211884SN/A main.Append(CCFLAGS=['-fno-strict-aliasing']) 5221884SN/A # Enable -Wall and then disable the few warnings that we 5231965SN/A # consistently violate 5241965SN/A main.Append(CCFLAGS=['-Wall', '-Wno-sign-compare', '-Wundef']) 5251965SN/A # We always compile using C++11, but only gcc >= 4.7 and clang 3.1 5262761Sstever@eecs.umich.edu # actually use that name, so we stick with c++0x 5271869SN/A main.Append(CXXFLAGS=['-std=c++0x']) 5281869SN/A # Add selected sanity checks from -Wextra 5292632Sstever@eecs.umich.edu main.Append(CXXFLAGS=['-Wmissing-field-initializers', 5302667Sstever@eecs.umich.edu '-Woverloaded-virtual']) 5311869SN/Aelse: 5321869SN/A print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 5332929Sktlim@umich.edu print "Don't know what compiler options to use for your compiler." 5342929Sktlim@umich.edu print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 5353036Sstever@eecs.umich.edu print termcap.Yellow + ' version:' + termcap.Normal, 5362929Sktlim@umich.edu if not CXX_version: 537955SN/A print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 5382598SN/A termcap.Normal 5392598SN/A else: 540955SN/A print CXX_version.replace('\n', '<nl>') 541955SN/A print " If you're trying to use a compiler other than GCC" 542955SN/A print " or clang, there appears to be something wrong with your" 5431530SN/A print " environment." 544955SN/A print " " 545955SN/A print " If you are trying to use a compiler other than those listed" 546955SN/A print " above you will need to ease fix SConstruct and " 547 print " src/SConscript to support that compiler." 548 Exit(1) 549 550if main['GCC']: 551 # Check for a supported version of gcc, >= 4.4 is needed for c++0x 552 # support. See http://gcc.gnu.org/projects/cxx0x.html for details 553 gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False) 554 if compareVersions(gcc_version, "4.4") < 0: 555 print 'Error: gcc version 4.4 or newer required.' 556 print ' Installed version:', gcc_version 557 Exit(1) 558 559 main['GCC_VERSION'] = gcc_version 560 561 # Check for versions with bugs 562 if not compareVersions(gcc_version, '4.4.1') or \ 563 not compareVersions(gcc_version, '4.4.2'): 564 print 'Info: Tree vectorizer in GCC 4.4.1 & 4.4.2 is buggy, disabling.' 565 main.Append(CCFLAGS=['-fno-tree-vectorize']) 566 567 # LTO support is only really working properly from 4.6 and beyond 568 if compareVersions(gcc_version, '4.6') >= 0: 569 # Add the appropriate Link-Time Optimization (LTO) flags 570 # unless LTO is explicitly turned off. Note that these flags 571 # are only used by the fast target. 572 if not GetOption('no_lto'): 573 # Pass the LTO flag when compiling to produce GIMPLE 574 # output, we merely create the flags here and only append 575 # them later/ 576 main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')] 577 578 # Use the same amount of jobs for LTO as we are running 579 # scons with, we hardcode the use of the linker plugin 580 # which requires either gold or GNU ld >= 2.21 581 main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs'), 582 '-fuse-linker-plugin'] 583 584elif main['CLANG']: 585 # Check for a supported version of clang, >= 2.9 is needed to 586 # support similar features as gcc 4.4. See 587 # http://clang.llvm.org/cxx_status.html for details 588 clang_version_re = re.compile(".* version (\d+\.\d+)") 589 clang_version_match = clang_version_re.match(CXX_version) 590 if (clang_version_match): 591 clang_version = clang_version_match.groups()[0] 592 if compareVersions(clang_version, "2.9") < 0: 593 print 'Error: clang version 2.9 or newer required.' 594 print ' Installed version:', clang_version 595 Exit(1) 596 else: 597 print 'Error: Unable to determine clang version.' 598 Exit(1) 599 600 # clang has a few additional warnings that we disable, 601 # tautological comparisons are allowed due to unsigned integers 602 # being compared to constants that happen to be 0, and extraneous 603 # parantheses are allowed due to Ruby's printing of the AST, 604 # finally self assignments are allowed as the generated CPU code 605 # is relying on this 606 main.Append(CCFLAGS=['-Wno-tautological-compare', 607 '-Wno-parentheses', 608 '-Wno-self-assign']) 609 610 # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as 611 # opposed to libstdc++ to make the transition from TR1 to 612 # C++11. See http://libcxx.llvm.org. However, clang has chosen a 613 # strict implementation of the C++11 standard, and does not allow 614 # incomplete types in template arguments (besides unique_ptr and 615 # shared_ptr), and the libc++ STL containers create problems in 616 # combination with the current gem5 code. For now, we stick with 617 # libstdc++ and use the TR1 namespace. 618 # if sys.platform == "darwin": 619 # main.Append(CXXFLAGS=['-stdlib=libc++']) 620 621else: 622 print termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, 623 print "Don't know what compiler options to use for your compiler." 624 print termcap.Yellow + ' compiler:' + termcap.Normal, main['CXX'] 625 print termcap.Yellow + ' version:' + termcap.Normal, 626 if not CXX_version: 627 print termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +\ 628 termcap.Normal 629 else: 630 print CXX_version.replace('\n', '<nl>') 631 print " If you're trying to use a compiler other than GCC" 632 print " or clang, there appears to be something wrong with your" 633 print " environment." 634 print " " 635 print " If you are trying to use a compiler other than those listed" 636 print " above you will need to ease fix SConstruct and " 637 print " src/SConscript to support that compiler." 638 Exit(1) 639 640# Set up common yacc/bison flags (needed for Ruby) 641main['YACCFLAGS'] = '-d' 642main['YACCHXXFILESUFFIX'] = '.hh' 643 644# Do this after we save setting back, or else we'll tack on an 645# extra 'qdo' every time we run scons. 646if main['BATCH']: 647 main['CC'] = main['BATCH_CMD'] + ' ' + main['CC'] 648 main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX'] 649 main['AS'] = main['BATCH_CMD'] + ' ' + main['AS'] 650 main['AR'] = main['BATCH_CMD'] + ' ' + main['AR'] 651 main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB'] 652 653if sys.platform == 'cygwin': 654 # cygwin has some header file issues... 655 main.Append(CCFLAGS=["-Wno-uninitialized"]) 656 657# Check for the protobuf compiler 658protoc_version = readCommand([main['PROTOC'], '--version'], 659 exception='').split() 660 661# First two words should be "libprotoc x.y.z" 662if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc': 663 print termcap.Yellow + termcap.Bold + \ 664 'Warning: Protocol buffer compiler (protoc) not found.\n' + \ 665 ' Please install protobuf-compiler for tracing support.' + \ 666 termcap.Normal 667 main['PROTOC'] = False 668else: 669 # Based on the availability of the compress stream wrappers, 670 # require 2.1.0 671 min_protoc_version = '2.1.0' 672 if compareVersions(protoc_version[1], min_protoc_version) < 0: 673 print termcap.Yellow + termcap.Bold + \ 674 'Warning: protoc version', min_protoc_version, \ 675 'or newer required.\n' + \ 676 ' Installed version:', protoc_version[1], \ 677 termcap.Normal 678 main['PROTOC'] = False 679 else: 680 # Attempt to determine the appropriate include path and 681 # library path using pkg-config, that means we also need to 682 # check for pkg-config. Note that it is possible to use 683 # protobuf without the involvement of pkg-config. Later on we 684 # check go a library config check and at that point the test 685 # will fail if libprotobuf cannot be found. 686 if readCommand(['pkg-config', '--version'], exception=''): 687 try: 688 # Attempt to establish what linking flags to add for protobuf 689 # using pkg-config 690 main.ParseConfig('pkg-config --cflags --libs-only-L protobuf') 691 except: 692 print termcap.Yellow + termcap.Bold + \ 693 'Warning: pkg-config could not get protobuf flags.' + \ 694 termcap.Normal 695 696# Check for SWIG 697if not main.has_key('SWIG'): 698 print 'Error: SWIG utility not found.' 699 print ' Please install (see http://www.swig.org) and retry.' 700 Exit(1) 701 702# Check for appropriate SWIG version 703swig_version = readCommand([main['SWIG'], '-version'], exception='').split() 704# First 3 words should be "SWIG Version x.y.z" 705if len(swig_version) < 3 or \ 706 swig_version[0] != 'SWIG' or swig_version[1] != 'Version': 707 print 'Error determining SWIG version.' 708 Exit(1) 709 710min_swig_version = '1.3.34' 711if compareVersions(swig_version[2], min_swig_version) < 0: 712 print 'Error: SWIG version', min_swig_version, 'or newer required.' 713 print ' Installed version:', swig_version[2] 714 Exit(1) 715 716# Set up SWIG flags & scanner 717swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS') 718main.Append(SWIGFLAGS=swig_flags) 719 720# filter out all existing swig scanners, they mess up the dependency 721# stuff for some reason 722scanners = [] 723for scanner in main['SCANNERS']: 724 skeys = scanner.skeys 725 if skeys == '.i': 726 continue 727 728 if isinstance(skeys, (list, tuple)) and '.i' in skeys: 729 continue 730 731 scanners.append(scanner) 732 733# add the new swig scanner that we like better 734from SCons.Scanner import ClassicCPP as CPPScanner 735swig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")' 736scanners.append(CPPScanner("SwigScan", [ ".i" ], "CPPPATH", swig_inc_re)) 737 738# replace the scanners list that has what we want 739main['SCANNERS'] = scanners 740 741# Add a custom Check function to the Configure context so that we can 742# figure out if the compiler adds leading underscores to global 743# variables. This is needed for the autogenerated asm files that we 744# use for embedding the python code. 745def CheckLeading(context): 746 context.Message("Checking for leading underscore in global variables...") 747 # 1) Define a global variable called x from asm so the C compiler 748 # won't change the symbol at all. 749 # 2) Declare that variable. 750 # 3) Use the variable 751 # 752 # If the compiler prepends an underscore, this will successfully 753 # link because the external symbol 'x' will be called '_x' which 754 # was defined by the asm statement. If the compiler does not 755 # prepend an underscore, this will not successfully link because 756 # '_x' will have been defined by assembly, while the C portion of 757 # the code will be trying to use 'x' 758 ret = context.TryLink(''' 759 asm(".globl _x; _x: .byte 0"); 760 extern int x; 761 int main() { return x; } 762 ''', extension=".c") 763 context.env.Append(LEADING_UNDERSCORE=ret) 764 context.Result(ret) 765 return ret 766 767# Platform-specific configuration. Note again that we assume that all 768# builds under a given build root run on the same host platform. 769conf = Configure(main, 770 conf_dir = joinpath(build_root, '.scons_config'), 771 log_file = joinpath(build_root, 'scons_config.log'), 772 custom_tests = { 'CheckLeading' : CheckLeading }) 773 774# Check for leading underscores. Don't really need to worry either 775# way so don't need to check the return code. 776conf.CheckLeading() 777 778# Check if we should compile a 64 bit binary on Mac OS X/Darwin 779try: 780 import platform 781 uname = platform.uname() 782 if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0: 783 if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]): 784 main.Append(CCFLAGS=['-arch', 'x86_64']) 785 main.Append(CFLAGS=['-arch', 'x86_64']) 786 main.Append(LINKFLAGS=['-arch', 'x86_64']) 787 main.Append(ASFLAGS=['-arch', 'x86_64']) 788except: 789 pass 790 791# Recent versions of scons substitute a "Null" object for Configure() 792# when configuration isn't necessary, e.g., if the "--help" option is 793# present. Unfortuantely this Null object always returns false, 794# breaking all our configuration checks. We replace it with our own 795# more optimistic null object that returns True instead. 796if not conf: 797 def NullCheck(*args, **kwargs): 798 return True 799 800 class NullConf: 801 def __init__(self, env): 802 self.env = env 803 def Finish(self): 804 return self.env 805 def __getattr__(self, mname): 806 return NullCheck 807 808 conf = NullConf(main) 809 810# Find Python include and library directories for embedding the 811# interpreter. For consistency, we will use the same Python 812# installation used to run scons (and thus this script). If you want 813# to link in an alternate version, see above for instructions on how 814# to invoke scons with a different copy of the Python interpreter. 815from distutils import sysconfig 816 817py_getvar = sysconfig.get_config_var 818 819py_debug = getattr(sys, 'pydebug', False) 820py_version = 'python' + py_getvar('VERSION') + (py_debug and "_d" or "") 821 822py_general_include = sysconfig.get_python_inc() 823py_platform_include = sysconfig.get_python_inc(plat_specific=True) 824py_includes = [ py_general_include ] 825if py_platform_include != py_general_include: 826 py_includes.append(py_platform_include) 827 828py_lib_path = [ py_getvar('LIBDIR') ] 829# add the prefix/lib/pythonX.Y/config dir, but only if there is no 830# shared library in prefix/lib/. 831if not py_getvar('Py_ENABLE_SHARED'): 832 py_lib_path.append(py_getvar('LIBPL')) 833 834py_libs = [] 835for lib in py_getvar('LIBS').split() + py_getvar('SYSLIBS').split(): 836 if not lib.startswith('-l'): 837 # Python requires some special flags to link (e.g. -framework 838 # common on OS X systems), assume appending preserves order 839 main.Append(LINKFLAGS=[lib]) 840 else: 841 lib = lib[2:] 842 if lib not in py_libs: 843 py_libs.append(lib) 844py_libs.append(py_version) 845 846main.Append(CPPPATH=py_includes) 847main.Append(LIBPATH=py_lib_path) 848 849# Cache build files in the supplied directory. 850if main['M5_BUILD_CACHE']: 851 print 'Using build cache located at', main['M5_BUILD_CACHE'] 852 CacheDir(main['M5_BUILD_CACHE']) 853 854 855# verify that this stuff works 856if not conf.CheckHeader('Python.h', '<>'): 857 print "Error: can't find Python.h header in", py_includes 858 print "Install Python headers (package python-dev on Ubuntu and RedHat)" 859 Exit(1) 860 861for lib in py_libs: 862 if not conf.CheckLib(lib): 863 print "Error: can't find library %s required by python" % lib 864 Exit(1) 865 866# On Solaris you need to use libsocket for socket ops 867if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'): 868 if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'): 869 print "Can't find library with socket calls (e.g. accept())" 870 Exit(1) 871 872# Check for zlib. If the check passes, libz will be automatically 873# added to the LIBS environment variable. 874if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'): 875 print 'Error: did not find needed zlib compression library '\ 876 'and/or zlib.h header file.' 877 print ' Please install zlib and try again.' 878 Exit(1) 879 880# If we have the protobuf compiler, also make sure we have the 881# development libraries. If the check passes, libprotobuf will be 882# automatically added to the LIBS environment variable. After 883# this, we can use the HAVE_PROTOBUF flag to determine if we have 884# got both protoc and libprotobuf available. 885main['HAVE_PROTOBUF'] = main['PROTOC'] and \ 886 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h', 887 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;') 888 889# If we have the compiler but not the library, print another warning. 890if main['PROTOC'] and not main['HAVE_PROTOBUF']: 891 print termcap.Yellow + termcap.Bold + \ 892 'Warning: did not find protocol buffer library and/or headers.\n' + \ 893 ' Please install libprotobuf-dev for tracing support.' + \ 894 termcap.Normal 895 896# Check for librt. 897have_posix_clock = \ 898 conf.CheckLibWithHeader(None, 'time.h', 'C', 899 'clock_nanosleep(0,0,NULL,NULL);') or \ 900 conf.CheckLibWithHeader('rt', 'time.h', 'C', 901 'clock_nanosleep(0,0,NULL,NULL);') 902 903if conf.CheckLib('tcmalloc_minimal'): 904 have_tcmalloc = True 905else: 906 have_tcmalloc = False 907 print termcap.Yellow + termcap.Bold + \ 908 "You can get a 12% performance improvement by installing tcmalloc "\ 909 "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \ 910 termcap.Normal 911 912if not have_posix_clock: 913 print "Can't find library for POSIX clocks." 914 915# Check for <fenv.h> (C99 FP environment control) 916have_fenv = conf.CheckHeader('fenv.h', '<>') 917if not have_fenv: 918 print "Warning: Header file <fenv.h> not found." 919 print " This host has no IEEE FP rounding mode control." 920 921###################################################################### 922# 923# Finish the configuration 924# 925main = conf.Finish() 926 927###################################################################### 928# 929# Collect all non-global variables 930# 931 932# Define the universe of supported ISAs 933all_isa_list = [ ] 934Export('all_isa_list') 935 936class CpuModel(object): 937 '''The CpuModel class encapsulates everything the ISA parser needs to 938 know about a particular CPU model.''' 939 940 # Dict of available CPU model objects. Accessible as CpuModel.dict. 941 dict = {} 942 list = [] 943 defaults = [] 944 945 # Constructor. Automatically adds models to CpuModel.dict. 946 def __init__(self, name, filename, includes, strings, default=False): 947 self.name = name # name of model 948 self.filename = filename # filename for output exec code 949 self.includes = includes # include files needed in exec file 950 # The 'strings' dict holds all the per-CPU symbols we can 951 # substitute into templates etc. 952 self.strings = strings 953 954 # This cpu is enabled by default 955 self.default = default 956 957 # Add self to dict 958 if name in CpuModel.dict: 959 raise AttributeError, "CpuModel '%s' already registered" % name 960 CpuModel.dict[name] = self 961 CpuModel.list.append(name) 962 963Export('CpuModel') 964 965# Sticky variables get saved in the variables file so they persist from 966# one invocation to the next (unless overridden, in which case the new 967# value becomes sticky). 968sticky_vars = Variables(args=ARGUMENTS) 969Export('sticky_vars') 970 971# Sticky variables that should be exported 972export_vars = [] 973Export('export_vars') 974 975# For Ruby 976all_protocols = [] 977Export('all_protocols') 978protocol_dirs = [] 979Export('protocol_dirs') 980slicc_includes = [] 981Export('slicc_includes') 982 983# Walk the tree and execute all SConsopts scripts that wil add to the 984# above variables 985if not GetOption('verbose'): 986 print "Reading SConsopts" 987for bdir in [ base_dir ] + extras_dir_list: 988 if not isdir(bdir): 989 print "Error: directory '%s' does not exist" % bdir 990 Exit(1) 991 for root, dirs, files in os.walk(bdir): 992 if 'SConsopts' in files: 993 if GetOption('verbose'): 994 print "Reading", joinpath(root, 'SConsopts') 995 SConscript(joinpath(root, 'SConsopts')) 996 997all_isa_list.sort() 998 999sticky_vars.AddVariables( 1000 EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list), 1001 ListVariable('CPU_MODELS', 'CPU models', 1002 sorted(n for n,m in CpuModel.dict.iteritems() if m.default), 1003 sorted(CpuModel.list)), 1004 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger', 1005 False), 1006 BoolVariable('SS_COMPATIBLE_FP', 1007 'Make floating-point results compatible with SimpleScalar', 1008 False), 1009 BoolVariable('USE_SSE2', 1010 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts', 1011 False), 1012 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock), 1013 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv), 1014 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False), 1015 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None', 1016 all_protocols), 1017 ) 1018 1019# These variables get exported to #defines in config/*.hh (see src/SConscript). 1020export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'CP_ANNOTATE', 1021 'USE_POSIX_CLOCK', 'PROTOCOL', 'HAVE_PROTOBUF'] 1022 1023################################################### 1024# 1025# Define a SCons builder for configuration flag headers. 1026# 1027################################################### 1028 1029# This function generates a config header file that #defines the 1030# variable symbol to the current variable setting (0 or 1). The source 1031# operands are the name of the variable and a Value node containing the 1032# value of the variable. 1033def build_config_file(target, source, env): 1034 (variable, value) = [s.get_contents() for s in source] 1035 f = file(str(target[0]), 'w') 1036 print >> f, '#define', variable, value 1037 f.close() 1038 return None 1039 1040# Combine the two functions into a scons Action object. 1041config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) 1042 1043# The emitter munges the source & target node lists to reflect what 1044# we're really doing. 1045def config_emitter(target, source, env): 1046 # extract variable name from Builder arg 1047 variable = str(target[0]) 1048 # True target is config header file 1049 target = joinpath('config', variable.lower() + '.hh') 1050 val = env[variable] 1051 if isinstance(val, bool): 1052 # Force value to 0/1 1053 val = int(val) 1054 elif isinstance(val, str): 1055 val = '"' + val + '"' 1056 1057 # Sources are variable name & value (packaged in SCons Value nodes) 1058 return ([target], [Value(variable), Value(val)]) 1059 1060config_builder = Builder(emitter = config_emitter, action = config_action) 1061 1062main.Append(BUILDERS = { 'ConfigFile' : config_builder }) 1063 1064# libelf build is shared across all configs in the build root. 1065main.SConscript('ext/libelf/SConscript', 1066 variant_dir = joinpath(build_root, 'libelf')) 1067 1068# gzstream build is shared across all configs in the build root. 1069main.SConscript('ext/gzstream/SConscript', 1070 variant_dir = joinpath(build_root, 'gzstream')) 1071 1072# libfdt build is shared across all configs in the build root. 1073main.SConscript('ext/libfdt/SConscript', 1074 variant_dir = joinpath(build_root, 'libfdt')) 1075 1076################################################### 1077# 1078# This function is used to set up a directory with switching headers 1079# 1080################################################### 1081 1082main['ALL_ISA_LIST'] = all_isa_list 1083def make_switching_dir(dname, switch_headers, env): 1084 # Generate the header. target[0] is the full path of the output 1085 # header to generate. 'source' is a dummy variable, since we get the 1086 # list of ISAs from env['ALL_ISA_LIST']. 1087 def gen_switch_hdr(target, source, env): 1088 fname = str(target[0]) 1089 f = open(fname, 'w') 1090 isa = env['TARGET_ISA'].lower() 1091 print >>f, '#include "%s/%s/%s"' % (dname, isa, basename(fname)) 1092 f.close() 1093 1094 # Build SCons Action object. 'varlist' specifies env vars that this 1095 # action depends on; when env['ALL_ISA_LIST'] changes these actions 1096 # should get re-executed. 1097 switch_hdr_action = MakeAction(gen_switch_hdr, 1098 Transform("GENERATE"), varlist=['ALL_ISA_LIST']) 1099 1100 # Instantiate actions for each header 1101 for hdr in switch_headers: 1102 env.Command(hdr, [], switch_hdr_action) 1103Export('make_switching_dir') 1104 1105################################################### 1106# 1107# Define build environments for selected configurations. 1108# 1109################################################### 1110 1111for variant_path in variant_paths: 1112 print "Building in", variant_path 1113 1114 # Make a copy of the build-root environment to use for this config. 1115 env = main.Clone() 1116 env['BUILDDIR'] = variant_path 1117 1118 # variant_dir is the tail component of build path, and is used to 1119 # determine the build parameters (e.g., 'ALPHA_SE') 1120 (build_root, variant_dir) = splitpath(variant_path) 1121 1122 # Set env variables according to the build directory config. 1123 sticky_vars.files = [] 1124 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in 1125 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke 1126 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings. 1127 current_vars_file = joinpath(build_root, 'variables', variant_dir) 1128 if isfile(current_vars_file): 1129 sticky_vars.files.append(current_vars_file) 1130 print "Using saved variables file %s" % current_vars_file 1131 else: 1132 # Build dir-specific variables file doesn't exist. 1133 1134 # Make sure the directory is there so we can create it later 1135 opt_dir = dirname(current_vars_file) 1136 if not isdir(opt_dir): 1137 mkdir(opt_dir) 1138 1139 # Get default build variables from source tree. Variables are 1140 # normally determined by name of $VARIANT_DIR, but can be 1141 # overridden by '--default=' arg on command line. 1142 default = GetOption('default') 1143 opts_dir = joinpath(main.root.abspath, 'build_opts') 1144 if default: 1145 default_vars_files = [joinpath(build_root, 'variables', default), 1146 joinpath(opts_dir, default)] 1147 else: 1148 default_vars_files = [joinpath(opts_dir, variant_dir)] 1149 existing_files = filter(isfile, default_vars_files) 1150 if existing_files: 1151 default_vars_file = existing_files[0] 1152 sticky_vars.files.append(default_vars_file) 1153 print "Variables file %s not found,\n using defaults in %s" \ 1154 % (current_vars_file, default_vars_file) 1155 else: 1156 print "Error: cannot find variables file %s or " \ 1157 "default file(s) %s" \ 1158 % (current_vars_file, ' or '.join(default_vars_files)) 1159 Exit(1) 1160 1161 # Apply current variable settings to env 1162 sticky_vars.Update(env) 1163 1164 help_texts["local_vars"] += \ 1165 "Build variables for %s:\n" % variant_dir \ 1166 + sticky_vars.GenerateHelpText(env) 1167 1168 # Process variable settings. 1169 1170 if not have_fenv and env['USE_FENV']: 1171 print "Warning: <fenv.h> not available; " \ 1172 "forcing USE_FENV to False in", variant_dir + "." 1173 env['USE_FENV'] = False 1174 1175 if not env['USE_FENV']: 1176 print "Warning: No IEEE FP rounding mode control in", variant_dir + "." 1177 print " FP results may deviate slightly from other platforms." 1178 1179 if env['EFENCE']: 1180 env.Append(LIBS=['efence']) 1181 1182 # Save sticky variable settings back to current variables file 1183 sticky_vars.Save(current_vars_file, env) 1184 1185 if env['USE_SSE2']: 1186 env.Append(CCFLAGS=['-msse2']) 1187 1188 if have_tcmalloc: 1189 env.Append(LIBS=['tcmalloc_minimal']) 1190 1191 # The src/SConscript file sets up the build rules in 'env' according 1192 # to the configured variables. It returns a list of environments, 1193 # one for each variant build (debug, opt, etc.) 1194 envList = SConscript('src/SConscript', variant_dir = variant_path, 1195 exports = 'env') 1196 1197 # Set up the regression tests for each build. 1198 for e in envList: 1199 SConscript('tests/SConscript', 1200 variant_dir = joinpath(variant_path, 'tests', e.Label), 1201 exports = { 'env' : e }, duplicate = False) 1202 1203# base help text 1204Help(''' 1205Usage: scons [scons options] [build variables] [target(s)] 1206 1207Extra scons options: 1208%(options)s 1209 1210Global build variables: 1211%(global_vars)s 1212 1213%(local_vars)s 1214''' % help_texts) 1215