SConstruct revision 13421
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2013, 2015-2017 ARM Limited
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# The license below extends only to copyright in the software and shall
7955SN/A# not be construed as granting a license to any other intellectual
8955SN/A# property including but not limited to intellectual property relating
9955SN/A# to a hardware implementation of the functionality of the software
10955SN/A# licensed hereunder.  You may use the software subject to the license
11955SN/A# terms below provided that you ensure that this notice is replicated
12955SN/A# unmodified and in its entirety in all distributions of the software,
13955SN/A# modified or unmodified, in source code or in binary form.
14955SN/A#
15955SN/A# Copyright (c) 2011 Advanced Micro Devices, Inc.
16955SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company
17955SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
18955SN/A# All rights reserved.
19955SN/A#
20955SN/A# Redistribution and use in source and binary forms, with or without
21955SN/A# modification, are permitted provided that the following conditions are
22955SN/A# met: redistributions of source code must retain the above copyright
23955SN/A# notice, this list of conditions and the following disclaimer;
24955SN/A# redistributions in binary form must reproduce the above copyright
25955SN/A# notice, this list of conditions and the following disclaimer in the
26955SN/A# documentation and/or other materials provided with the distribution;
27955SN/A# neither the name of the copyright holders nor the names of its
282665Ssaidi@eecs.umich.edu# contributors may be used to endorse or promote products derived from
292665Ssaidi@eecs.umich.edu# this software without specific prior written permission.
30955SN/A#
31955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
352632Sstever@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
362632Sstever@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
372632Sstever@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
382632Sstever@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
402632Sstever@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
412632Sstever@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
422761Sstever@eecs.umich.edu#
432632Sstever@eecs.umich.edu# Authors: Steve Reinhardt
442632Sstever@eecs.umich.edu#          Nathan Binkert
452632Sstever@eecs.umich.edu
462761Sstever@eecs.umich.edu###################################################
472761Sstever@eecs.umich.edu#
482761Sstever@eecs.umich.edu# SCons top-level build description (SConstruct) file.
492632Sstever@eecs.umich.edu#
502632Sstever@eecs.umich.edu# While in this directory ('gem5'), just type 'scons' to build the default
512761Sstever@eecs.umich.edu# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
522761Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA/gem5.opt' for
532761Sstever@eecs.umich.edu# the optimized full-system version).
542761Sstever@eecs.umich.edu#
552761Sstever@eecs.umich.edu# You can build gem5 in a different directory as long as there is a
562632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path.  The build system
572632Sstever@eecs.umich.edu# expects that all configs under the same build directory are being
582632Sstever@eecs.umich.edu# built for the same host system.
592632Sstever@eecs.umich.edu#
602632Sstever@eecs.umich.edu# Examples:
612632Sstever@eecs.umich.edu#
622632Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
63955SN/A#   scons to search up the directory tree for this SConstruct file.
64955SN/A#   % cd <path-to-src>/gem5 ; scons build/ALPHA/gem5.debug
65955SN/A#   % cd <path-to-src>/gem5/build/ALPHA; scons -u gem5.debug
66955SN/A#
67955SN/A#   The following two commands are equivalent and demonstrate building
68955SN/A#   in a directory outside of the source tree.  The '-C' option tells
69955SN/A#   scons to chdir to the specified directory to find this SConstruct
702656Sstever@eecs.umich.edu#   file.
712656Sstever@eecs.umich.edu#   % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
722656Sstever@eecs.umich.edu#   % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
732656Sstever@eecs.umich.edu#
742656Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options.  If you're in this
752656Sstever@eecs.umich.edu# 'gem5' directory (or use -u or -C to tell scons where to find this
762656Sstever@eecs.umich.edu# file), you can use 'scons -h' to print all the gem5-specific build
772653Sstever@eecs.umich.edu# options as well.
782653Sstever@eecs.umich.edu#
792653Sstever@eecs.umich.edu###################################################
802653Sstever@eecs.umich.edu
812653Sstever@eecs.umich.edufrom __future__ import print_function
822653Sstever@eecs.umich.edu
832653Sstever@eecs.umich.edu# Global Python includes
842653Sstever@eecs.umich.eduimport itertools
852653Sstever@eecs.umich.eduimport os
862653Sstever@eecs.umich.eduimport re
872653Sstever@eecs.umich.eduimport shutil
881852SN/Aimport subprocess
89955SN/Aimport sys
90955SN/A
91955SN/Afrom os import mkdir, environ
922632Sstever@eecs.umich.edufrom os.path import abspath, basename, dirname, expanduser, normpath
932632Sstever@eecs.umich.edufrom os.path import exists,  isdir, isfile
94955SN/Afrom os.path import join as joinpath, split as splitpath
951533SN/A
962632Sstever@eecs.umich.edu# SCons includes
971533SN/Aimport SCons
98955SN/Aimport SCons.Node
99955SN/A
1002632Sstever@eecs.umich.edufrom m5.util import compareVersions, readCommand
1012632Sstever@eecs.umich.edu
102955SN/Ahelp_texts = {
103955SN/A    "options" : "",
104955SN/A    "global_vars" : "",
105955SN/A    "local_vars" : ""
1062632Sstever@eecs.umich.edu}
107955SN/A
1082632Sstever@eecs.umich.eduExport("help_texts")
109955SN/A
110955SN/A
1112632Sstever@eecs.umich.edu# There's a bug in scons in that (1) by default, the help texts from
1122632Sstever@eecs.umich.edu# AddOption() are supposed to be displayed when you type 'scons -h'
1132632Sstever@eecs.umich.edu# and (2) you can override the help displayed by 'scons -h' using the
1142632Sstever@eecs.umich.edu# Help() function, but these two features are incompatible: once
1152632Sstever@eecs.umich.edu# you've overridden the help text using Help(), there's no way to get
1162632Sstever@eecs.umich.edu# at the help texts from AddOptions.  See:
1172632Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2356
1182632Sstever@eecs.umich.edu#     http://scons.tigris.org/issues/show_bug.cgi?id=2611
1192632Sstever@eecs.umich.edu# This hack lets us extract the help text from AddOptions and
1202632Sstever@eecs.umich.edu# re-inject it via Help().  Ideally someday this bug will be fixed and
1212632Sstever@eecs.umich.edu# we can just use AddOption directly.
1222632Sstever@eecs.umich.edudef AddLocalOption(*args, **kwargs):
1232632Sstever@eecs.umich.edu    col_width = 30
1242632Sstever@eecs.umich.edu
1252632Sstever@eecs.umich.edu    help = "  " + ", ".join(args)
1262632Sstever@eecs.umich.edu    if "help" in kwargs:
1272632Sstever@eecs.umich.edu        length = len(help)
1282634Sstever@eecs.umich.edu        if length >= col_width:
1292634Sstever@eecs.umich.edu            help += "\n" + " " * col_width
1302632Sstever@eecs.umich.edu        else:
1312638Sstever@eecs.umich.edu            help += " " * (col_width - length)
1322632Sstever@eecs.umich.edu        help += kwargs["help"]
1332632Sstever@eecs.umich.edu    help_texts["options"] += help + "\n"
1342632Sstever@eecs.umich.edu
1352632Sstever@eecs.umich.edu    AddOption(*args, **kwargs)
1362632Sstever@eecs.umich.edu
1372632Sstever@eecs.umich.eduAddLocalOption('--colors', dest='use_colors', action='store_true',
1381858SN/A               help="Add color to abbreviated scons output")
1392638Sstever@eecs.umich.eduAddLocalOption('--no-colors', dest='use_colors', action='store_false',
1402638Sstever@eecs.umich.edu               help="Don't add color to abbreviated scons output")
1412638Sstever@eecs.umich.eduAddLocalOption('--with-cxx-config', dest='with_cxx_config',
1422638Sstever@eecs.umich.edu               action='store_true',
1432638Sstever@eecs.umich.edu               help="Build with support for C++-based configuration")
1442638Sstever@eecs.umich.eduAddLocalOption('--default', dest='default', type='string', action='store',
1452638Sstever@eecs.umich.edu               help='Override which build_opts file to use for defaults')
1462638Sstever@eecs.umich.eduAddLocalOption('--ignore-style', dest='ignore_style', action='store_true',
1472634Sstever@eecs.umich.edu               help='Disable style checking hooks')
1482634Sstever@eecs.umich.eduAddLocalOption('--gold-linker', dest='gold_linker', action='store_true',
1492634Sstever@eecs.umich.edu               help='Use the gold linker')
150955SN/AAddLocalOption('--no-lto', dest='no_lto', action='store_true',
151955SN/A               help='Disable Link-Time Optimization for fast')
152955SN/AAddLocalOption('--force-lto', dest='force_lto', action='store_true',
153955SN/A               help='Use Link-Time Optimization instead of partial linking' +
154955SN/A                    ' when the compiler doesn\'t support using them together.')
155955SN/AAddLocalOption('--update-ref', dest='update_ref', action='store_true',
156955SN/A               help='Update test reference outputs')
157955SN/AAddLocalOption('--verbose', dest='verbose', action='store_true',
1581858SN/A               help='Print full tool command lines')
1591858SN/AAddLocalOption('--without-python', dest='without_python',
1602632Sstever@eecs.umich.edu               action='store_true',
161955SN/A               help='Build without Python configuration support')
1622776Sstever@eecs.umich.eduAddLocalOption('--without-tcmalloc', dest='without_tcmalloc',
1631105SN/A               action='store_true',
1642667Sstever@eecs.umich.edu               help='Disable linking against tcmalloc')
1652667Sstever@eecs.umich.eduAddLocalOption('--with-ubsan', dest='with_ubsan', action='store_true',
1662667Sstever@eecs.umich.edu               help='Build with Undefined Behavior Sanitizer if available')
1672667Sstever@eecs.umich.eduAddLocalOption('--with-asan', dest='with_asan', action='store_true',
1682667Sstever@eecs.umich.edu               help='Build with Address Sanitizer if available')
1692667Sstever@eecs.umich.edu
1701869SN/Aif GetOption('no_lto') and GetOption('force_lto'):
1711869SN/A    print('--no-lto and --force-lto are mutually exclusive')
1721869SN/A    Exit(1)
1731869SN/A
1741869SN/A########################################################################
1751065SN/A#
1762632Sstever@eecs.umich.edu# Set up the main build environment.
1772632Sstever@eecs.umich.edu#
178955SN/A########################################################################
1791858SN/A
1801858SN/Amain = Environment()
1811858SN/A
1821858SN/Afrom gem5_scons import Transform
1831851SN/Afrom gem5_scons.util import get_termcap
1841851SN/Atermcap = get_termcap()
1851858SN/A
1862632Sstever@eecs.umich.edumain_dict_keys = main.Dictionary().keys()
187955SN/A
1882656Sstever@eecs.umich.edu# Check that we have a C/C++ compiler
1892656Sstever@eecs.umich.eduif not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
1902656Sstever@eecs.umich.edu    print("No C++ compiler installed (package g++ on Ubuntu and RedHat)")
1912656Sstever@eecs.umich.edu    Exit(1)
1922656Sstever@eecs.umich.edu
1932656Sstever@eecs.umich.edu###################################################
1942656Sstever@eecs.umich.edu#
1952656Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
1962656Sstever@eecs.umich.edu# the target(s).
1972656Sstever@eecs.umich.edu#
1982656Sstever@eecs.umich.edu###################################################
1992656Sstever@eecs.umich.edu
2002656Sstever@eecs.umich.edu# Find default configuration & binary.
2012656Sstever@eecs.umich.eduDefault(environ.get('M5_DEFAULT_BINARY', 'build/ALPHA/gem5.debug'))
2022656Sstever@eecs.umich.edu
2032656Sstever@eecs.umich.edu# helper function: find last occurrence of element in list
2042655Sstever@eecs.umich.edudef rfind(l, elt, offs = -1):
2052667Sstever@eecs.umich.edu    for i in range(len(l)+offs, 0, -1):
2062667Sstever@eecs.umich.edu        if l[i] == elt:
2072667Sstever@eecs.umich.edu            return i
2082667Sstever@eecs.umich.edu    raise ValueError, "element not found"
2092667Sstever@eecs.umich.edu
2102667Sstever@eecs.umich.edu# Take a list of paths (or SCons Nodes) and return a list with all
2112667Sstever@eecs.umich.edu# paths made absolute and ~-expanded.  Paths will be interpreted
2122667Sstever@eecs.umich.edu# relative to the launch directory unless a different root is provided
2132667Sstever@eecs.umich.edudef makePathListAbsolute(path_list, root=GetLaunchDir()):
2142667Sstever@eecs.umich.edu    return [abspath(joinpath(root, expanduser(str(p))))
2152667Sstever@eecs.umich.edu            for p in path_list]
2162667Sstever@eecs.umich.edu
2172667Sstever@eecs.umich.edu# Each target must have 'build' in the interior of the path; the
2182655Sstever@eecs.umich.edu# directory below this will determine the build parameters.  For
2191858SN/A# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
2201858SN/A# recognize that ALPHA_SE specifies the configuration because it
2212638Sstever@eecs.umich.edu# follow 'build' in the build path.
2222638Sstever@eecs.umich.edu
2232638Sstever@eecs.umich.edu# The funky assignment to "[:]" is needed to replace the list contents
2242638Sstever@eecs.umich.edu# in place rather than reassign the symbol to a new list, which
2252638Sstever@eecs.umich.edu# doesn't work (obviously!).
2261858SN/ABUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
2271858SN/A
2281858SN/A# Generate a list of the unique build roots and configs that the
2291858SN/A# collected targets reference.
2301858SN/Avariant_paths = []
2311858SN/Abuild_root = None
2321858SN/Afor t in BUILD_TARGETS:
2331859SN/A    path_dirs = t.split('/')
2341858SN/A    try:
2351858SN/A        build_top = rfind(path_dirs, 'build', -2)
2361858SN/A    except:
2371859SN/A        print("Error: no non-leaf 'build' dir found on target path", t)
2381859SN/A        Exit(1)
2391862SN/A    this_build_root = joinpath('/',*path_dirs[:build_top+1])
2401862SN/A    if not build_root:
2411862SN/A        build_root = this_build_root
2421862SN/A    else:
2431859SN/A        if this_build_root != build_root:
2441859SN/A            print("Error: build targets not under same build root\n"
2451963SN/A                  "  %s\n  %s" % (build_root, this_build_root))
2461963SN/A            Exit(1)
2471859SN/A    variant_path = joinpath('/',*path_dirs[:build_top+2])
2481859SN/A    if variant_path not in variant_paths:
2491859SN/A        variant_paths.append(variant_path)
2501859SN/A
2511859SN/A# Make sure build_root exists (might not if this is the first build there)
2521859SN/Aif not isdir(build_root):
2531859SN/A    mkdir(build_root)
2541859SN/Amain['BUILDROOT'] = build_root
2551862SN/A
2561859SN/AExport('main')
2571859SN/A
2581859SN/Amain.SConsignFile(joinpath(build_root, "sconsign"))
2591858SN/A
2601858SN/A# Default duplicate option is to use hard links, but this messes up
2612139SN/A# when you use emacs to edit a file in the target dir, as emacs moves
2622139SN/A# file to file~ then copies to file, breaking the link.  Symbolic
2632139SN/A# (soft) links work better.
2642155SN/Amain.SetOption('duplicate', 'soft-copy')
2652623SN/A
2662817Sksewell@umich.edu#
2672792Sktlim@umich.edu# Set up global sticky variables... these are common to an entire build
2682155SN/A# tree (not specific to a particular build like ALPHA_SE)
2691869SN/A#
2701869SN/A
2711869SN/Aglobal_vars_file = joinpath(build_root, 'variables.global')
2721869SN/A
2731869SN/Aglobal_vars = Variables(global_vars_file, args=ARGUMENTS)
2742139SN/A
2751869SN/Aglobal_vars.AddVariables(
2762508SN/A    ('CC', 'C compiler', environ.get('CC', main['CC'])),
2772508SN/A    ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
2782508SN/A    ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
2792508SN/A    ('BATCH', 'Use batch pool for build and tests', False),
2802635Sstever@eecs.umich.edu    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
2812635Sstever@eecs.umich.edu    ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
2821869SN/A    ('EXTRAS', 'Add extra directories to the compilation', '')
2831869SN/A    )
2841869SN/A
2851869SN/A# Update main environment with values from ARGUMENTS & global_vars_file
2861869SN/Aglobal_vars.Update(main)
2871869SN/Ahelp_texts["global_vars"] += global_vars.GenerateHelpText(main)
2881869SN/A
2891869SN/A# Save sticky variable settings back to current variables file
2901965SN/Aglobal_vars.Save(global_vars_file, main)
2911965SN/A
2921965SN/A# Parse EXTRAS variable to build list of all directories where we're
2931869SN/A# look for sources etc.  This list is exported as extras_dir_list.
2941869SN/Abase_dir = main.srcdir.abspath
2952733Sktlim@umich.eduif main['EXTRAS']:
2961869SN/A    extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
2971884SN/Aelse:
2981884SN/A    extras_dir_list = []
2991884SN/A
3001869SN/AExport('base_dir')
3011858SN/AExport('extras_dir_list')
3021869SN/A
3031869SN/A# the ext directory should be on the #includes path
3041869SN/Amain.Append(CPPPATH=[Dir('ext')])
3051869SN/A
3061869SN/A# Add shared top-level headers
3071858SN/Amain.Prepend(CPPPATH=Dir('include'))
3082761Sstever@eecs.umich.edu
3091869SN/Aif GetOption('verbose'):
3102733Sktlim@umich.edu    def MakeAction(action, string, *args, **kwargs):
3112733Sktlim@umich.edu        return Action(action, *args, **kwargs)
3121869SN/Aelse:
3131869SN/A    MakeAction = Action
3141869SN/A    main['CCCOMSTR']        = Transform("CC")
3151869SN/A    main['CXXCOMSTR']       = Transform("CXX")
3161869SN/A    main['ASCOMSTR']        = Transform("AS")
3171869SN/A    main['ARCOMSTR']        = Transform("AR", 0)
3181858SN/A    main['LINKCOMSTR']      = Transform("LINK", 0)
319955SN/A    main['SHLINKCOMSTR']    = Transform("SHLINK", 0)
320955SN/A    main['RANLIBCOMSTR']    = Transform("RANLIB", 0)
3211869SN/A    main['M4COMSTR']        = Transform("M4")
3221869SN/A    main['SHCCCOMSTR']      = Transform("SHCC")
3231869SN/A    main['SHCXXCOMSTR']     = Transform("SHCXX")
3241869SN/AExport('MakeAction')
3251869SN/A
3261869SN/A# Initialize the Link-Time Optimization (LTO) flags
3271869SN/Amain['LTO_CCFLAGS'] = []
3281869SN/Amain['LTO_LDFLAGS'] = []
3291869SN/A
3301869SN/A# According to the readme, tcmalloc works best if the compiler doesn't
3311869SN/A# assume that we're using the builtin malloc and friends. These flags
3321869SN/A# are compiler-specific, so we need to set them after we detect which
3331869SN/A# compiler we're using.
3341869SN/Amain['TCMALLOC_CCFLAGS'] = []
3351869SN/A
3361869SN/ACXX_version = readCommand([main['CXX'],'--version'], exception=False)
3371869SN/ACXX_V = readCommand([main['CXX'],'-V'], exception=False)
3381869SN/A
3391869SN/Amain['GCC'] = CXX_version and CXX_version.find('g++') >= 0
3401869SN/Amain['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
3411869SN/Aif main['GCC'] + main['CLANG'] > 1:
3421869SN/A    print('Error: How can we have two at the same time?')
3431869SN/A    Exit(1)
3441869SN/A
3451869SN/A# Set up default C++ compiler flags
3461869SN/Aif main['GCC'] or main['CLANG']:
3471869SN/A    # As gcc and clang share many flags, do the common parts here
3481869SN/A    main.Append(CCFLAGS=['-pipe'])
3491869SN/A    main.Append(CCFLAGS=['-fno-strict-aliasing'])
3501869SN/A    # Enable -Wall and -Wextra and then disable the few warnings that
3511869SN/A    # we consistently violate
3521869SN/A    main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra',
3531869SN/A                         '-Wno-sign-compare', '-Wno-unused-parameter'])
3541869SN/A    # We always compile using C++11
3551869SN/A    main.Append(CXXFLAGS=['-std=c++11'])
3561869SN/A    if sys.platform.startswith('freebsd'):
3571869SN/A        main.Append(CCFLAGS=['-I/usr/local/include'])
3581869SN/A        main.Append(CXXFLAGS=['-I/usr/local/include'])
3591869SN/A
3602655Sstever@eecs.umich.edu    main['FILTER_PSHLINKFLAGS'] = lambda x: str(x).replace(' -shared', '')
3612655Sstever@eecs.umich.edu    main['PSHLINKFLAGS'] = main.subst('${FILTER_PSHLINKFLAGS(SHLINKFLAGS)}')
3622655Sstever@eecs.umich.edu    if GetOption('gold_linker'):
3632655Sstever@eecs.umich.edu        main.Append(LINKFLAGS='-fuse-ld=gold')
3642655Sstever@eecs.umich.edu    main['PLINKFLAGS'] = main.subst('${LINKFLAGS}')
3652655Sstever@eecs.umich.edu    shared_partial_flags = ['-r', '-nostdlib']
3662655Sstever@eecs.umich.edu    main.Append(PSHLINKFLAGS=shared_partial_flags)
3672655Sstever@eecs.umich.edu    main.Append(PLINKFLAGS=shared_partial_flags)
3682655Sstever@eecs.umich.edu
3692655Sstever@eecs.umich.edu    # Treat warnings as errors but white list some warnings that we
3702655Sstever@eecs.umich.edu    # want to allow (e.g., deprecation warnings).
3712655Sstever@eecs.umich.edu    main.Append(CCFLAGS=['-Werror',
3722655Sstever@eecs.umich.edu                         '-Wno-error=deprecated-declarations',
3732655Sstever@eecs.umich.edu                         '-Wno-error=deprecated',
3742655Sstever@eecs.umich.edu                        ])
3752655Sstever@eecs.umich.eduelse:
3762655Sstever@eecs.umich.edu    print(termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, end=' ')
3772655Sstever@eecs.umich.edu    print("Don't know what compiler options to use for your compiler.")
3782655Sstever@eecs.umich.edu    print(termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX'])
3792655Sstever@eecs.umich.edu    print(termcap.Yellow + '       version:' + termcap.Normal, end = ' ')
3802655Sstever@eecs.umich.edu    if not CXX_version:
3812655Sstever@eecs.umich.edu        print(termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +
3822655Sstever@eecs.umich.edu              termcap.Normal)
3832655Sstever@eecs.umich.edu    else:
3842655Sstever@eecs.umich.edu        print(CXX_version.replace('\n', '<nl>'))
3852655Sstever@eecs.umich.edu    print("       If you're trying to use a compiler other than GCC")
3862634Sstever@eecs.umich.edu    print("       or clang, there appears to be something wrong with your")
3872634Sstever@eecs.umich.edu    print("       environment.")
3882634Sstever@eecs.umich.edu    print("       ")
3892634Sstever@eecs.umich.edu    print("       If you are trying to use a compiler other than those listed")
3902634Sstever@eecs.umich.edu    print("       above you will need to ease fix SConstruct and ")
3912634Sstever@eecs.umich.edu    print("       src/SConscript to support that compiler.")
3922638Sstever@eecs.umich.edu    Exit(1)
3932638Sstever@eecs.umich.edu
3942638Sstever@eecs.umich.eduif main['GCC']:
3952638Sstever@eecs.umich.edu    # Check for a supported version of gcc. >= 4.8 is chosen for its
3962638Sstever@eecs.umich.edu    # level of c++11 support. See
3971869SN/A    # http://gcc.gnu.org/projects/cxx0x.html for details.
3981869SN/A    gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
399955SN/A    if compareVersions(gcc_version, "4.8") < 0:
400955SN/A        print('Error: gcc version 4.8 or newer required.')
401955SN/A        print('       Installed version: ', gcc_version)
402955SN/A        Exit(1)
4031858SN/A
4041858SN/A    main['GCC_VERSION'] = gcc_version
4051858SN/A
4062632Sstever@eecs.umich.edu    if compareVersions(gcc_version, '4.9') >= 0:
4072632Sstever@eecs.umich.edu        # Incremental linking with LTO is currently broken in gcc versions
4082632Sstever@eecs.umich.edu        # 4.9 and above. A version where everything works completely hasn't
4092632Sstever@eecs.umich.edu        # yet been identified.
4102632Sstever@eecs.umich.edu        #
4112634Sstever@eecs.umich.edu        # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67548
4122638Sstever@eecs.umich.edu        main['BROKEN_INCREMENTAL_LTO'] = True
4132023SN/A    if compareVersions(gcc_version, '6.0') >= 0:
4142632Sstever@eecs.umich.edu        # gcc versions 6.0 and greater accept an -flinker-output flag which
4152632Sstever@eecs.umich.edu        # selects what type of output the linker should generate. This is
4162632Sstever@eecs.umich.edu        # necessary for incremental lto to work, but is also broken in
4172632Sstever@eecs.umich.edu        # current versions of gcc. It may not be necessary in future
4182632Sstever@eecs.umich.edu        # versions. We add it here since it might be, and as a reminder that
4192632Sstever@eecs.umich.edu        # it exists. It's excluded if lto is being forced.
4202632Sstever@eecs.umich.edu        #
4212632Sstever@eecs.umich.edu        # https://gcc.gnu.org/gcc-6/changes.html
4222632Sstever@eecs.umich.edu        # https://gcc.gnu.org/ml/gcc-patches/2015-11/msg03161.html
4232632Sstever@eecs.umich.edu        # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69866
4242632Sstever@eecs.umich.edu        if not GetOption('force_lto'):
4252023SN/A            main.Append(PSHLINKFLAGS='-flinker-output=rel')
4262632Sstever@eecs.umich.edu            main.Append(PLINKFLAGS='-flinker-output=rel')
4272632Sstever@eecs.umich.edu
4281889SN/A    # Make sure we warn if the user has requested to compile with the
4291889SN/A    # Undefined Benahvior Sanitizer and this version of gcc does not
4302632Sstever@eecs.umich.edu    # support it.
4312632Sstever@eecs.umich.edu    if GetOption('with_ubsan') and \
4322632Sstever@eecs.umich.edu            compareVersions(gcc_version, '4.9') < 0:
4332632Sstever@eecs.umich.edu        print(termcap.Yellow + termcap.Bold +
4342632Sstever@eecs.umich.edu            'Warning: UBSan is only supported using gcc 4.9 and later.' +
4352632Sstever@eecs.umich.edu            termcap.Normal)
4362632Sstever@eecs.umich.edu
4372632Sstever@eecs.umich.edu    disable_lto = GetOption('no_lto')
4382632Sstever@eecs.umich.edu    if not disable_lto and main.get('BROKEN_INCREMENTAL_LTO', False) and \
4392632Sstever@eecs.umich.edu            not GetOption('force_lto'):
4402632Sstever@eecs.umich.edu        print(termcap.Yellow + termcap.Bold +
4412632Sstever@eecs.umich.edu            'Warning: Your compiler doesn\'t support incremental linking' +
4422632Sstever@eecs.umich.edu            ' and lto at the same time, so lto is being disabled. To force' +
4432632Sstever@eecs.umich.edu            ' lto on anyway, use the --force-lto option. That will disable' +
4441888SN/A            ' partial linking.' +
4451888SN/A            termcap.Normal)
4461869SN/A        disable_lto = True
4471869SN/A
4481858SN/A    # Add the appropriate Link-Time Optimization (LTO) flags
4492598SN/A    # unless LTO is explicitly turned off. Note that these flags
4502598SN/A    # are only used by the fast target.
4512598SN/A    if not disable_lto:
4522598SN/A        # Pass the LTO flag when compiling to produce GIMPLE
4532598SN/A        # output, we merely create the flags here and only append
4541858SN/A        # them later
4551858SN/A        main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
4561858SN/A
4571858SN/A        # Use the same amount of jobs for LTO as we are running
4581858SN/A        # scons with
4591858SN/A        main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
4601858SN/A
4611858SN/A    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
4621858SN/A                                  '-fno-builtin-realloc', '-fno-builtin-free'])
4631871SN/A
4641858SN/A    # The address sanitizer is available for gcc >= 4.8
4651858SN/A    if GetOption('with_asan'):
4661858SN/A        if GetOption('with_ubsan') and \
4671858SN/A                compareVersions(main['GCC_VERSION'], '4.9') >= 0:
4681858SN/A            main.Append(CCFLAGS=['-fsanitize=address,undefined',
4691858SN/A                                 '-fno-omit-frame-pointer'],
4701858SN/A                        LINKFLAGS='-fsanitize=address,undefined')
4711858SN/A        else:
4721858SN/A            main.Append(CCFLAGS=['-fsanitize=address',
4731858SN/A                                 '-fno-omit-frame-pointer'],
4741858SN/A                        LINKFLAGS='-fsanitize=address')
4751859SN/A    # Only gcc >= 4.9 supports UBSan, so check both the version
4761859SN/A    # and the command-line option before adding the compiler and
4771869SN/A    # linker flags.
4781888SN/A    elif GetOption('with_ubsan') and \
4792632Sstever@eecs.umich.edu            compareVersions(main['GCC_VERSION'], '4.9') >= 0:
4801869SN/A        main.Append(CCFLAGS='-fsanitize=undefined')
4811884SN/A        main.Append(LINKFLAGS='-fsanitize=undefined')
4821884SN/A
4831884SN/Aelif main['CLANG']:
4841884SN/A    # Check for a supported version of clang, >= 3.1 is needed to
4851884SN/A    # support similar features as gcc 4.8. See
4861884SN/A    # http://clang.llvm.org/cxx_status.html for details
4871965SN/A    clang_version_re = re.compile(".* version (\d+\.\d+)")
4881965SN/A    clang_version_match = clang_version_re.search(CXX_version)
4891965SN/A    if (clang_version_match):
4902761Sstever@eecs.umich.edu        clang_version = clang_version_match.groups()[0]
4911869SN/A        if compareVersions(clang_version, "3.1") < 0:
4921869SN/A            print('Error: clang version 3.1 or newer required.')
4932632Sstever@eecs.umich.edu            print('       Installed version:', clang_version)
4942667Sstever@eecs.umich.edu            Exit(1)
4951869SN/A    else:
4961869SN/A        print('Error: Unable to determine clang version.')
4972632Sstever@eecs.umich.edu        Exit(1)
4982632Sstever@eecs.umich.edu
4992632Sstever@eecs.umich.edu    # clang has a few additional warnings that we disable, extraneous
5002632Sstever@eecs.umich.edu    # parantheses are allowed due to Ruby's printing of the AST,
501955SN/A    # finally self assignments are allowed as the generated CPU code
5022598SN/A    # is relying on this
5032598SN/A    main.Append(CCFLAGS=['-Wno-parentheses',
504955SN/A                         '-Wno-self-assign',
505955SN/A                         # Some versions of libstdc++ (4.8?) seem to
506955SN/A                         # use struct hash and class hash
5071530SN/A                         # interchangeably.
508955SN/A                         '-Wno-mismatched-tags',
509955SN/A                         ])
510955SN/A
511    main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
512
513    # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
514    # opposed to libstdc++, as the later is dated.
515    if sys.platform == "darwin":
516        main.Append(CXXFLAGS=['-stdlib=libc++'])
517        main.Append(LIBS=['c++'])
518
519    # On FreeBSD we need libthr.
520    if sys.platform.startswith('freebsd'):
521        main.Append(LIBS=['thr'])
522
523    # We require clang >= 3.1, so there is no need to check any
524    # versions here.
525    if GetOption('with_ubsan'):
526        if GetOption('with_asan'):
527            main.Append(CCFLAGS=['-fsanitize=address,undefined',
528                                 '-fno-omit-frame-pointer'],
529                       LINKFLAGS='-fsanitize=address,undefined')
530        else:
531            main.Append(CCFLAGS='-fsanitize=undefined',
532                        LINKFLAGS='-fsanitize=undefined')
533
534    elif GetOption('with_asan'):
535        main.Append(CCFLAGS=['-fsanitize=address',
536                             '-fno-omit-frame-pointer'],
537                   LINKFLAGS='-fsanitize=address')
538
539else:
540    print(termcap.Yellow + termcap.Bold + 'Error' + termcap.Normal, end=' ')
541    print("Don't know what compiler options to use for your compiler.")
542    print(termcap.Yellow + '       compiler:' + termcap.Normal, main['CXX'])
543    print(termcap.Yellow + '       version:' + termcap.Normal, end=' ')
544    if not CXX_version:
545        print(termcap.Yellow + termcap.Bold + "COMMAND NOT FOUND!" +
546              termcap.Normal)
547    else:
548        print(CXX_version.replace('\n', '<nl>'))
549    print("       If you're trying to use a compiler other than GCC")
550    print("       or clang, there appears to be something wrong with your")
551    print("       environment.")
552    print("       ")
553    print("       If you are trying to use a compiler other than those listed")
554    print("       above you will need to ease fix SConstruct and ")
555    print("       src/SConscript to support that compiler.")
556    Exit(1)
557
558# Set up common yacc/bison flags (needed for Ruby)
559main['YACCFLAGS'] = '-d'
560main['YACCHXXFILESUFFIX'] = '.hh'
561
562# Do this after we save setting back, or else we'll tack on an
563# extra 'qdo' every time we run scons.
564if main['BATCH']:
565    main['CC']     = main['BATCH_CMD'] + ' ' + main['CC']
566    main['CXX']    = main['BATCH_CMD'] + ' ' + main['CXX']
567    main['AS']     = main['BATCH_CMD'] + ' ' + main['AS']
568    main['AR']     = main['BATCH_CMD'] + ' ' + main['AR']
569    main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
570
571if sys.platform == 'cygwin':
572    # cygwin has some header file issues...
573    main.Append(CCFLAGS=["-Wno-uninitialized"])
574
575# Check for the protobuf compiler
576protoc_version = readCommand([main['PROTOC'], '--version'],
577                             exception='').split()
578
579# First two words should be "libprotoc x.y.z"
580if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
581    print(termcap.Yellow + termcap.Bold +
582        'Warning: Protocol buffer compiler (protoc) not found.\n' +
583        '         Please install protobuf-compiler for tracing support.' +
584        termcap.Normal)
585    main['PROTOC'] = False
586else:
587    # Based on the availability of the compress stream wrappers,
588    # require 2.1.0
589    min_protoc_version = '2.1.0'
590    if compareVersions(protoc_version[1], min_protoc_version) < 0:
591        print(termcap.Yellow + termcap.Bold +
592            'Warning: protoc version', min_protoc_version,
593            'or newer required.\n' +
594            '         Installed version:', protoc_version[1],
595            termcap.Normal)
596        main['PROTOC'] = False
597    else:
598        # Attempt to determine the appropriate include path and
599        # library path using pkg-config, that means we also need to
600        # check for pkg-config. Note that it is possible to use
601        # protobuf without the involvement of pkg-config. Later on we
602        # check go a library config check and at that point the test
603        # will fail if libprotobuf cannot be found.
604        if readCommand(['pkg-config', '--version'], exception=''):
605            try:
606                # Attempt to establish what linking flags to add for protobuf
607                # using pkg-config
608                main.ParseConfig('pkg-config --cflags --libs-only-L protobuf')
609            except:
610                print(termcap.Yellow + termcap.Bold +
611                    'Warning: pkg-config could not get protobuf flags.' +
612                    termcap.Normal)
613
614
615# Check for 'timeout' from GNU coreutils. If present, regressions will
616# be run with a time limit. We require version 8.13 since we rely on
617# support for the '--foreground' option.
618if sys.platform.startswith('freebsd'):
619    timeout_lines = readCommand(['gtimeout', '--version'],
620                                exception='').splitlines()
621else:
622    timeout_lines = readCommand(['timeout', '--version'],
623                                exception='').splitlines()
624# Get the first line and tokenize it
625timeout_version = timeout_lines[0].split() if timeout_lines else []
626main['TIMEOUT'] =  timeout_version and \
627    compareVersions(timeout_version[-1], '8.13') >= 0
628
629# Add a custom Check function to test for structure members.
630def CheckMember(context, include, decl, member, include_quotes="<>"):
631    context.Message("Checking for member %s in %s..." %
632                    (member, decl))
633    text = """
634#include %(header)s
635int main(){
636  %(decl)s test;
637  (void)test.%(member)s;
638  return 0;
639};
640""" % { "header" : include_quotes[0] + include + include_quotes[1],
641        "decl" : decl,
642        "member" : member,
643        }
644
645    ret = context.TryCompile(text, extension=".cc")
646    context.Result(ret)
647    return ret
648
649# Platform-specific configuration.  Note again that we assume that all
650# builds under a given build root run on the same host platform.
651conf = Configure(main,
652                 conf_dir = joinpath(build_root, '.scons_config'),
653                 log_file = joinpath(build_root, 'scons_config.log'),
654                 custom_tests = {
655        'CheckMember' : CheckMember,
656        })
657
658# Check if we should compile a 64 bit binary on Mac OS X/Darwin
659try:
660    import platform
661    uname = platform.uname()
662    if uname[0] == 'Darwin' and compareVersions(uname[2], '9.0.0') >= 0:
663        if int(readCommand('sysctl -n hw.cpu64bit_capable')[0]):
664            main.Append(CCFLAGS=['-arch', 'x86_64'])
665            main.Append(CFLAGS=['-arch', 'x86_64'])
666            main.Append(LINKFLAGS=['-arch', 'x86_64'])
667            main.Append(ASFLAGS=['-arch', 'x86_64'])
668except:
669    pass
670
671# Recent versions of scons substitute a "Null" object for Configure()
672# when configuration isn't necessary, e.g., if the "--help" option is
673# present.  Unfortuantely this Null object always returns false,
674# breaking all our configuration checks.  We replace it with our own
675# more optimistic null object that returns True instead.
676if not conf:
677    def NullCheck(*args, **kwargs):
678        return True
679
680    class NullConf:
681        def __init__(self, env):
682            self.env = env
683        def Finish(self):
684            return self.env
685        def __getattr__(self, mname):
686            return NullCheck
687
688    conf = NullConf(main)
689
690# Cache build files in the supplied directory.
691if main['M5_BUILD_CACHE']:
692    print('Using build cache located at', main['M5_BUILD_CACHE'])
693    CacheDir(main['M5_BUILD_CACHE'])
694
695main['USE_PYTHON'] = not GetOption('without_python')
696if main['USE_PYTHON']:
697    # Find Python include and library directories for embedding the
698    # interpreter. We rely on python-config to resolve the appropriate
699    # includes and linker flags. ParseConfig does not seem to understand
700    # the more exotic linker flags such as -Xlinker and -export-dynamic so
701    # we add them explicitly below. If you want to link in an alternate
702    # version of python, see above for instructions on how to invoke
703    # scons with the appropriate PATH set.
704    #
705    # First we check if python2-config exists, else we use python-config
706    python_config = readCommand(['which', 'python2-config'],
707                                exception='').strip()
708    if not os.path.exists(python_config):
709        python_config = readCommand(['which', 'python-config'],
710                                    exception='').strip()
711    py_includes = readCommand([python_config, '--includes'],
712                              exception='').split()
713    # Strip the -I from the include folders before adding them to the
714    # CPPPATH
715    main.Append(CPPPATH=map(lambda inc: inc[2:], py_includes))
716
717    # Read the linker flags and split them into libraries and other link
718    # flags. The libraries are added later through the call the CheckLib.
719    py_ld_flags = readCommand([python_config, '--ldflags'],
720        exception='').split()
721    py_libs = []
722    for lib in py_ld_flags:
723         if not lib.startswith('-l'):
724             main.Append(LINKFLAGS=[lib])
725         else:
726             lib = lib[2:]
727             if lib not in py_libs:
728                 py_libs.append(lib)
729
730    # verify that this stuff works
731    if not conf.CheckHeader('Python.h', '<>'):
732        print("Error: Check failed for Python.h header in", py_includes)
733        print("Two possible reasons:")
734        print("1. Python headers are not installed (You can install the "
735              "package python-dev on Ubuntu and RedHat)")
736        print("2. SCons is using a wrong C compiler. This can happen if "
737              "CC has the wrong value.")
738        print("CC = %s" % main['CC'])
739        Exit(1)
740
741    for lib in py_libs:
742        if not conf.CheckLib(lib):
743            print("Error: can't find library %s required by python" % lib)
744            Exit(1)
745
746# On Solaris you need to use libsocket for socket ops
747if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
748   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
749       print("Can't find library with socket calls (e.g. accept())")
750       Exit(1)
751
752# Check for zlib.  If the check passes, libz will be automatically
753# added to the LIBS environment variable.
754if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
755    print('Error: did not find needed zlib compression library '
756          'and/or zlib.h header file.')
757    print('       Please install zlib and try again.')
758    Exit(1)
759
760# If we have the protobuf compiler, also make sure we have the
761# development libraries. If the check passes, libprotobuf will be
762# automatically added to the LIBS environment variable. After
763# this, we can use the HAVE_PROTOBUF flag to determine if we have
764# got both protoc and libprotobuf available.
765main['HAVE_PROTOBUF'] = main['PROTOC'] and \
766    conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
767                            'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
768
769# Valgrind gets much less confused if you tell it when you're using
770# alternative stacks.
771main['HAVE_VALGRIND'] = conf.CheckCHeader('valgrind/valgrind.h')
772
773# If we have the compiler but not the library, print another warning.
774if main['PROTOC'] and not main['HAVE_PROTOBUF']:
775    print(termcap.Yellow + termcap.Bold +
776        'Warning: did not find protocol buffer library and/or headers.\n' +
777    '       Please install libprotobuf-dev for tracing support.' +
778    termcap.Normal)
779
780# Check for librt.
781have_posix_clock = \
782    conf.CheckLibWithHeader(None, 'time.h', 'C',
783                            'clock_nanosleep(0,0,NULL,NULL);') or \
784    conf.CheckLibWithHeader('rt', 'time.h', 'C',
785                            'clock_nanosleep(0,0,NULL,NULL);')
786
787have_posix_timers = \
788    conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
789                            'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
790
791if not GetOption('without_tcmalloc'):
792    if conf.CheckLib('tcmalloc'):
793        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
794    elif conf.CheckLib('tcmalloc_minimal'):
795        main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
796    else:
797        print(termcap.Yellow + termcap.Bold +
798              "You can get a 12% performance improvement by "
799              "installing tcmalloc (libgoogle-perftools-dev package "
800              "on Ubuntu or RedHat)." + termcap.Normal)
801
802
803# Detect back trace implementations. The last implementation in the
804# list will be used by default.
805backtrace_impls = [ "none" ]
806
807backtrace_checker = 'char temp;' + \
808    ' backtrace_symbols_fd((void*)&temp, 0, 0);'
809if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', backtrace_checker):
810    backtrace_impls.append("glibc")
811elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C',
812                             backtrace_checker):
813    # NetBSD and FreeBSD need libexecinfo.
814    backtrace_impls.append("glibc")
815    main.Append(LIBS=['execinfo'])
816
817if backtrace_impls[-1] == "none":
818    default_backtrace_impl = "none"
819    print(termcap.Yellow + termcap.Bold +
820        "No suitable back trace implementation found." +
821        termcap.Normal)
822
823if not have_posix_clock:
824    print("Can't find library for POSIX clocks.")
825
826# Check for <fenv.h> (C99 FP environment control)
827have_fenv = conf.CheckHeader('fenv.h', '<>')
828if not have_fenv:
829    print("Warning: Header file <fenv.h> not found.")
830    print("         This host has no IEEE FP rounding mode control.")
831
832# Check for <png.h> (libpng library needed if wanting to dump
833# frame buffer image in png format)
834have_png = conf.CheckHeader('png.h', '<>')
835if not have_png:
836    print("Warning: Header file <png.h> not found.")
837    print("         This host has no libpng library.")
838    print("         Disabling support for PNG framebuffers.")
839
840# Check if we should enable KVM-based hardware virtualization. The API
841# we rely on exists since version 2.6.36 of the kernel, but somehow
842# the KVM_API_VERSION does not reflect the change. We test for one of
843# the types as a fall back.
844have_kvm = conf.CheckHeader('linux/kvm.h', '<>')
845if not have_kvm:
846    print("Info: Compatible header file <linux/kvm.h> not found, "
847          "disabling KVM support.")
848
849# Check if the TUN/TAP driver is available.
850have_tuntap = conf.CheckHeader('linux/if_tun.h', '<>')
851if not have_tuntap:
852    print("Info: Compatible header file <linux/if_tun.h> not found.")
853
854# x86 needs support for xsave. We test for the structure here since we
855# won't be able to run new tests by the time we know which ISA we're
856# targeting.
857have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave',
858                                    '#include <linux/kvm.h>') != 0
859
860# Check if the requested target ISA is compatible with the host
861def is_isa_kvm_compatible(isa):
862    try:
863        import platform
864        host_isa = platform.machine()
865    except:
866        print("Warning: Failed to determine host ISA.")
867        return False
868
869    if not have_posix_timers:
870        print("Warning: Can not enable KVM, host seems to lack support "
871              "for POSIX timers")
872        return False
873
874    if isa == "arm":
875        return host_isa in ( "armv7l", "aarch64" )
876    elif isa == "x86":
877        if host_isa != "x86_64":
878            return False
879
880        if not have_kvm_xsave:
881            print("KVM on x86 requires xsave support in kernel headers.")
882            return False
883
884        return True
885    else:
886        return False
887
888
889# Check if the exclude_host attribute is available. We want this to
890# get accurate instruction counts in KVM.
891main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
892    'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
893
894
895######################################################################
896#
897# Finish the configuration
898#
899main = conf.Finish()
900
901######################################################################
902#
903# Collect all non-global variables
904#
905
906# Define the universe of supported ISAs
907all_isa_list = [ ]
908all_gpu_isa_list = [ ]
909Export('all_isa_list')
910Export('all_gpu_isa_list')
911
912class CpuModel(object):
913    '''The CpuModel class encapsulates everything the ISA parser needs to
914    know about a particular CPU model.'''
915
916    # Dict of available CPU model objects.  Accessible as CpuModel.dict.
917    dict = {}
918
919    # Constructor.  Automatically adds models to CpuModel.dict.
920    def __init__(self, name, default=False):
921        self.name = name           # name of model
922
923        # This cpu is enabled by default
924        self.default = default
925
926        # Add self to dict
927        if name in CpuModel.dict:
928            raise AttributeError, "CpuModel '%s' already registered" % name
929        CpuModel.dict[name] = self
930
931Export('CpuModel')
932
933# Sticky variables get saved in the variables file so they persist from
934# one invocation to the next (unless overridden, in which case the new
935# value becomes sticky).
936sticky_vars = Variables(args=ARGUMENTS)
937Export('sticky_vars')
938
939# Sticky variables that should be exported
940export_vars = []
941Export('export_vars')
942
943# For Ruby
944all_protocols = []
945Export('all_protocols')
946protocol_dirs = []
947Export('protocol_dirs')
948slicc_includes = []
949Export('slicc_includes')
950
951# Walk the tree and execute all SConsopts scripts that wil add to the
952# above variables
953if GetOption('verbose'):
954    print("Reading SConsopts")
955for bdir in [ base_dir ] + extras_dir_list:
956    if not isdir(bdir):
957        print("Error: directory '%s' does not exist" % bdir)
958        Exit(1)
959    for root, dirs, files in os.walk(bdir):
960        if 'SConsopts' in files:
961            if GetOption('verbose'):
962                print("Reading", joinpath(root, 'SConsopts'))
963            SConscript(joinpath(root, 'SConsopts'))
964
965all_isa_list.sort()
966all_gpu_isa_list.sort()
967
968sticky_vars.AddVariables(
969    EnumVariable('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
970    EnumVariable('TARGET_GPU_ISA', 'Target GPU ISA', 'hsail', all_gpu_isa_list),
971    ListVariable('CPU_MODELS', 'CPU models',
972                 sorted(n for n,m in CpuModel.dict.iteritems() if m.default),
973                 sorted(CpuModel.dict.keys())),
974    BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
975                 False),
976    BoolVariable('SS_COMPATIBLE_FP',
977                 'Make floating-point results compatible with SimpleScalar',
978                 False),
979    BoolVariable('USE_SSE2',
980                 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
981                 False),
982    BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
983    BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
984    BoolVariable('USE_PNG',  'Enable support for PNG images', have_png),
985    BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability',
986                 False),
987    BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models',
988                 have_kvm),
989    BoolVariable('USE_TUNTAP',
990                 'Enable using a tap device to bridge to the host network',
991                 have_tuntap),
992    BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False),
993    EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
994                  all_protocols),
995    EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation',
996                 backtrace_impls[-1], backtrace_impls)
997    )
998
999# These variables get exported to #defines in config/*.hh (see src/SConscript).
1000export_vars += ['USE_FENV', 'SS_COMPATIBLE_FP', 'TARGET_ISA', 'TARGET_GPU_ISA',
1001                'CP_ANNOTATE', 'USE_POSIX_CLOCK', 'USE_KVM', 'USE_TUNTAP',
1002                'PROTOCOL', 'HAVE_PROTOBUF', 'HAVE_VALGRIND',
1003                'HAVE_PERF_ATTR_EXCLUDE_HOST', 'USE_PNG']
1004
1005###################################################
1006#
1007# Define a SCons builder for configuration flag headers.
1008#
1009###################################################
1010
1011# This function generates a config header file that #defines the
1012# variable symbol to the current variable setting (0 or 1).  The source
1013# operands are the name of the variable and a Value node containing the
1014# value of the variable.
1015def build_config_file(target, source, env):
1016    (variable, value) = [s.get_contents() for s in source]
1017    f = file(str(target[0]), 'w')
1018    print('#define', variable, value, file=f)
1019    f.close()
1020    return None
1021
1022# Combine the two functions into a scons Action object.
1023config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
1024
1025# The emitter munges the source & target node lists to reflect what
1026# we're really doing.
1027def config_emitter(target, source, env):
1028    # extract variable name from Builder arg
1029    variable = str(target[0])
1030    # True target is config header file
1031    target = joinpath('config', variable.lower() + '.hh')
1032    val = env[variable]
1033    if isinstance(val, bool):
1034        # Force value to 0/1
1035        val = int(val)
1036    elif isinstance(val, str):
1037        val = '"' + val + '"'
1038
1039    # Sources are variable name & value (packaged in SCons Value nodes)
1040    return ([target], [Value(variable), Value(val)])
1041
1042config_builder = Builder(emitter = config_emitter, action = config_action)
1043
1044main.Append(BUILDERS = { 'ConfigFile' : config_builder })
1045
1046###################################################
1047#
1048# Builders for static and shared partially linked object files.
1049#
1050###################################################
1051
1052partial_static_builder = Builder(action=SCons.Defaults.LinkAction,
1053                                 src_suffix='$OBJSUFFIX',
1054                                 src_builder=['StaticObject', 'Object'],
1055                                 LINKFLAGS='$PLINKFLAGS',
1056                                 LIBS='')
1057
1058def partial_shared_emitter(target, source, env):
1059    for tgt in target:
1060        tgt.attributes.shared = 1
1061    return (target, source)
1062partial_shared_builder = Builder(action=SCons.Defaults.ShLinkAction,
1063                                 emitter=partial_shared_emitter,
1064                                 src_suffix='$SHOBJSUFFIX',
1065                                 src_builder='SharedObject',
1066                                 SHLINKFLAGS='$PSHLINKFLAGS',
1067                                 LIBS='')
1068
1069main.Append(BUILDERS = { 'PartialShared' : partial_shared_builder,
1070                         'PartialStatic' : partial_static_builder })
1071
1072# builds in ext are shared across all configs in the build root.
1073ext_dir = abspath(joinpath(str(main.root), 'ext'))
1074ext_build_dirs = []
1075for root, dirs, files in os.walk(ext_dir):
1076    if 'SConscript' in files:
1077        build_dir = os.path.relpath(root, ext_dir)
1078        ext_build_dirs.append(build_dir)
1079        main.SConscript(joinpath(root, 'SConscript'),
1080                        variant_dir=joinpath(build_root, build_dir))
1081
1082main.Prepend(CPPPATH=Dir('ext/pybind11/include/'))
1083
1084###################################################
1085#
1086# This builder and wrapper method are used to set up a directory with
1087# switching headers. Those are headers which are in a generic location and
1088# that include more specific headers from a directory chosen at build time
1089# based on the current build settings.
1090#
1091###################################################
1092
1093def build_switching_header(target, source, env):
1094    path = str(target[0])
1095    subdir = str(source[0])
1096    dp, fp = os.path.split(path)
1097    dp = os.path.relpath(os.path.realpath(dp),
1098                         os.path.realpath(env['BUILDDIR']))
1099    with open(path, 'w') as hdr:
1100        print('#include "%s/%s/%s"' % (dp, subdir, fp), file=hdr)
1101
1102switching_header_action = MakeAction(build_switching_header,
1103                                     Transform('GENERATE'))
1104
1105switching_header_builder = Builder(action=switching_header_action,
1106                                   source_factory=Value,
1107                                   single_source=True)
1108
1109main.Append(BUILDERS = { 'SwitchingHeader': switching_header_builder })
1110
1111def switching_headers(self, headers, source):
1112    for header in headers:
1113        self.SwitchingHeader(header, source)
1114
1115main.AddMethod(switching_headers, 'SwitchingHeaders')
1116
1117###################################################
1118#
1119# Define build environments for selected configurations.
1120#
1121###################################################
1122
1123for variant_path in variant_paths:
1124    if not GetOption('silent'):
1125        print("Building in", variant_path)
1126
1127    # Make a copy of the build-root environment to use for this config.
1128    env = main.Clone()
1129    env['BUILDDIR'] = variant_path
1130
1131    # variant_dir is the tail component of build path, and is used to
1132    # determine the build parameters (e.g., 'ALPHA_SE')
1133    (build_root, variant_dir) = splitpath(variant_path)
1134
1135    # Set env variables according to the build directory config.
1136    sticky_vars.files = []
1137    # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1138    # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1139    # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1140    current_vars_file = joinpath(build_root, 'variables', variant_dir)
1141    if isfile(current_vars_file):
1142        sticky_vars.files.append(current_vars_file)
1143        if not GetOption('silent'):
1144            print("Using saved variables file %s" % current_vars_file)
1145    elif variant_dir in ext_build_dirs:
1146        # Things in ext are built without a variant directory.
1147        continue
1148    else:
1149        # Build dir-specific variables file doesn't exist.
1150
1151        # Make sure the directory is there so we can create it later
1152        opt_dir = dirname(current_vars_file)
1153        if not isdir(opt_dir):
1154            mkdir(opt_dir)
1155
1156        # Get default build variables from source tree.  Variables are
1157        # normally determined by name of $VARIANT_DIR, but can be
1158        # overridden by '--default=' arg on command line.
1159        default = GetOption('default')
1160        opts_dir = joinpath(main.root.abspath, 'build_opts')
1161        if default:
1162            default_vars_files = [joinpath(build_root, 'variables', default),
1163                                  joinpath(opts_dir, default)]
1164        else:
1165            default_vars_files = [joinpath(opts_dir, variant_dir)]
1166        existing_files = filter(isfile, default_vars_files)
1167        if existing_files:
1168            default_vars_file = existing_files[0]
1169            sticky_vars.files.append(default_vars_file)
1170            print("Variables file %s not found,\n  using defaults in %s"
1171                  % (current_vars_file, default_vars_file))
1172        else:
1173            print("Error: cannot find variables file %s or "
1174                  "default file(s) %s"
1175                  % (current_vars_file, ' or '.join(default_vars_files)))
1176            Exit(1)
1177
1178    # Apply current variable settings to env
1179    sticky_vars.Update(env)
1180
1181    help_texts["local_vars"] += \
1182        "Build variables for %s:\n" % variant_dir \
1183                 + sticky_vars.GenerateHelpText(env)
1184
1185    # Process variable settings.
1186
1187    if not have_fenv and env['USE_FENV']:
1188        print("Warning: <fenv.h> not available; "
1189              "forcing USE_FENV to False in", variant_dir + ".")
1190        env['USE_FENV'] = False
1191
1192    if not env['USE_FENV']:
1193        print("Warning: No IEEE FP rounding mode control in",
1194              variant_dir + ".")
1195        print("         FP results may deviate slightly from other platforms.")
1196
1197    if not have_png and env['USE_PNG']:
1198        print("Warning: <png.h> not available; "
1199              "forcing USE_PNG to False in", variant_dir + ".")
1200        env['USE_PNG'] = False
1201
1202    if env['USE_PNG']:
1203        env.Append(LIBS=['png'])
1204
1205    if env['EFENCE']:
1206        env.Append(LIBS=['efence'])
1207
1208    if env['USE_KVM']:
1209        if not have_kvm:
1210            print("Warning: Can not enable KVM, host seems to "
1211                  "lack KVM support")
1212            env['USE_KVM'] = False
1213        elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1214            print("Info: KVM support disabled due to unsupported host and "
1215                  "target ISA combination")
1216            env['USE_KVM'] = False
1217
1218    if env['USE_TUNTAP']:
1219        if not have_tuntap:
1220            print("Warning: Can't connect EtherTap with a tap device.")
1221            env['USE_TUNTAP'] = False
1222
1223    if env['BUILD_GPU']:
1224        env.Append(CPPDEFINES=['BUILD_GPU'])
1225
1226    # Warn about missing optional functionality
1227    if env['USE_KVM']:
1228        if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1229            print("Warning: perf_event headers lack support for the "
1230                  "exclude_host attribute. KVM instruction counts will "
1231                  "be inaccurate.")
1232
1233    # Save sticky variable settings back to current variables file
1234    sticky_vars.Save(current_vars_file, env)
1235
1236    if env['USE_SSE2']:
1237        env.Append(CCFLAGS=['-msse2'])
1238
1239    # The src/SConscript file sets up the build rules in 'env' according
1240    # to the configured variables.  It returns a list of environments,
1241    # one for each variant build (debug, opt, etc.)
1242    SConscript('src/SConscript', variant_dir = variant_path, exports = 'env')
1243
1244# base help text
1245Help('''
1246Usage: scons [scons options] [build variables] [target(s)]
1247
1248Extra scons options:
1249%(options)s
1250
1251Global build variables:
1252%(global_vars)s
1253
1254%(local_vars)s
1255''' % help_texts)
1256