SConstruct revision 4202
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
30955SN/A
31955SN/A###################################################
32955SN/A#
33955SN/A# SCons top-level build description (SConstruct) file.
34955SN/A#
352632Sstever@eecs.umich.edu# While in this directory ('m5'), just type 'scons' to build the default
362632Sstever@eecs.umich.edu# configuration (see below), or type 'scons build/<CONFIG>/<binary>'
372632Sstever@eecs.umich.edu# to build some other configuration (e.g., 'build/ALPHA_FS/m5.opt' for
382632Sstever@eecs.umich.edu# the optimized full-system version).
39955SN/A#
402632Sstever@eecs.umich.edu# You can build M5 in a different directory as long as there is a
412632Sstever@eecs.umich.edu# 'build/<CONFIG>' somewhere along the target path.  The build system
422761Sstever@eecs.umich.edu# expects that all configs under the same build directory are being
432632Sstever@eecs.umich.edu# built for the same host system.
442632Sstever@eecs.umich.edu#
452632Sstever@eecs.umich.edu# Examples:
462761Sstever@eecs.umich.edu#
472761Sstever@eecs.umich.edu#   The following two commands are equivalent.  The '-u' option tells
482761Sstever@eecs.umich.edu#   scons to search up the directory tree for this SConstruct file.
492632Sstever@eecs.umich.edu#   % cd <path-to-src>/m5 ; scons build/ALPHA_FS/m5.debug
502632Sstever@eecs.umich.edu#   % cd <path-to-src>/m5/build/ALPHA_FS; scons -u m5.debug
512761Sstever@eecs.umich.edu#
522761Sstever@eecs.umich.edu#   The following two commands are equivalent and demonstrate building
532761Sstever@eecs.umich.edu#   in a directory outside of the source tree.  The '-C' option tells
542761Sstever@eecs.umich.edu#   scons to chdir to the specified directory to find this SConstruct
552761Sstever@eecs.umich.edu#   file.
562632Sstever@eecs.umich.edu#   % cd <path-to-src>/m5 ; scons /local/foo/build/ALPHA_FS/m5.debug
572632Sstever@eecs.umich.edu#   % cd /local/foo/build/ALPHA_FS; scons -C <path-to-src>/m5 m5.debug
582632Sstever@eecs.umich.edu#
592632Sstever@eecs.umich.edu# You can use 'scons -H' to print scons options.  If you're in this
602632Sstever@eecs.umich.edu# 'm5' directory (or use -u or -C to tell scons where to find this
612632Sstever@eecs.umich.edu# file), you can use 'scons -h' to print all the M5-specific build
622632Sstever@eecs.umich.edu# options as well.
63955SN/A#
64955SN/A###################################################
65955SN/A
66955SN/Aimport sys
67955SN/Aimport os
683918Ssaidi@eecs.umich.eduimport subprocess
694202Sbinkertn@umich.edu
703716Sstever@eecs.umich.edufrom os.path import join as joinpath
71955SN/A
722656Sstever@eecs.umich.edu# Check for recent-enough Python and SCons versions.  If your system's
732656Sstever@eecs.umich.edu# default installation of Python is not recent enough, you can use a
742656Sstever@eecs.umich.edu# non-default installation of the Python interpreter by either (1)
752656Sstever@eecs.umich.edu# rearranging your PATH so that scons finds the non-default 'python'
762656Sstever@eecs.umich.edu# first or (2) explicitly invoking an alternative interpreter on the
772656Sstever@eecs.umich.edu# scons script, e.g., "/usr/local/bin/python2.4 `which scons` [args]".
782656Sstever@eecs.umich.eduEnsurePythonVersion(2,4)
792653Sstever@eecs.umich.edu
802653Sstever@eecs.umich.edu# Ironically, SCons 0.96 dies if you give EnsureSconsVersion a
812653Sstever@eecs.umich.edu# 3-element version number.
822653Sstever@eecs.umich.edumin_scons_version = (0,96,91)
832653Sstever@eecs.umich.edutry:
842653Sstever@eecs.umich.edu    EnsureSConsVersion(*min_scons_version)
852653Sstever@eecs.umich.eduexcept:
862653Sstever@eecs.umich.edu    print "Error checking current SCons version."
872653Sstever@eecs.umich.edu    print "SCons", ".".join(map(str,min_scons_version)), "or greater required."
882653Sstever@eecs.umich.edu    Exit(2)
892653Sstever@eecs.umich.edu    
901852SN/A
91955SN/A# The absolute path to the current directory (where this file lives).
92955SN/AROOT = Dir('.').abspath
93955SN/A
943717Sstever@eecs.umich.edu# Path to the M5 source tree.
953716Sstever@eecs.umich.eduSRCDIR = joinpath(ROOT, 'src')
96955SN/A
971533SN/A# tell python where to find m5 python code
983716Sstever@eecs.umich.edusys.path.append(joinpath(ROOT, 'src/python'))
991533SN/A
100955SN/A###################################################
101955SN/A#
1022632Sstever@eecs.umich.edu# Figure out which configurations to set up based on the path(s) of
1032632Sstever@eecs.umich.edu# the target(s).
104955SN/A#
105955SN/A###################################################
106955SN/A
107955SN/A# Find default configuration & binary.
1082632Sstever@eecs.umich.eduDefault(os.environ.get('M5_DEFAULT_BINARY', 'build/ALPHA_SE/m5.debug'))
109955SN/A
1102632Sstever@eecs.umich.edu# helper function: find last occurrence of element in list
1112632Sstever@eecs.umich.edudef rfind(l, elt, offs = -1):
1122632Sstever@eecs.umich.edu    for i in range(len(l)+offs, 0, -1):
1132632Sstever@eecs.umich.edu        if l[i] == elt:
1142632Sstever@eecs.umich.edu            return i
1152632Sstever@eecs.umich.edu    raise ValueError, "element not found"
1162632Sstever@eecs.umich.edu
1173053Sstever@eecs.umich.edu# helper function: compare dotted version numbers.
1183053Sstever@eecs.umich.edu# E.g., compare_version('1.3.25', '1.4.1')
1193053Sstever@eecs.umich.edu# returns -1, 0, 1 if v1 is <, ==, > v2
1203053Sstever@eecs.umich.edudef compare_versions(v1, v2):
1213053Sstever@eecs.umich.edu    # Convert dotted strings to lists
1223053Sstever@eecs.umich.edu    v1 = map(int, v1.split('.'))
1233053Sstever@eecs.umich.edu    v2 = map(int, v2.split('.'))
1243053Sstever@eecs.umich.edu    # Compare corresponding elements of lists
1253053Sstever@eecs.umich.edu    for n1,n2 in zip(v1, v2):
1263053Sstever@eecs.umich.edu        if n1 < n2: return -1
1273053Sstever@eecs.umich.edu        if n1 > n2: return  1
1283053Sstever@eecs.umich.edu    # all corresponding values are equal... see if one has extra values
1293053Sstever@eecs.umich.edu    if len(v1) < len(v2): return -1
1303053Sstever@eecs.umich.edu    if len(v1) > len(v2): return  1
1313053Sstever@eecs.umich.edu    return 0
1323053Sstever@eecs.umich.edu
1332632Sstever@eecs.umich.edu# Each target must have 'build' in the interior of the path; the
1342632Sstever@eecs.umich.edu# directory below this will determine the build parameters.  For
1352632Sstever@eecs.umich.edu# example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
1362632Sstever@eecs.umich.edu# recognize that ALPHA_SE specifies the configuration because it
1372632Sstever@eecs.umich.edu# follow 'build' in the bulid path.
1382632Sstever@eecs.umich.edu
1393718Sstever@eecs.umich.edu# Generate absolute paths to targets so we can see where the build dir is
1403718Sstever@eecs.umich.eduif COMMAND_LINE_TARGETS:
1413718Sstever@eecs.umich.edu    # Ask SCons which directory it was invoked from
1423718Sstever@eecs.umich.edu    launch_dir = GetLaunchDir()
1433718Sstever@eecs.umich.edu    # Make targets relative to invocation directory
1443718Sstever@eecs.umich.edu    abs_targets = map(lambda x: os.path.normpath(joinpath(launch_dir, str(x))),
1453718Sstever@eecs.umich.edu                      COMMAND_LINE_TARGETS)
1463718Sstever@eecs.umich.eduelse:
1473718Sstever@eecs.umich.edu    # Default targets are relative to root of tree
1483718Sstever@eecs.umich.edu    abs_targets = map(lambda x: os.path.normpath(joinpath(ROOT, str(x))),
1493718Sstever@eecs.umich.edu                      DEFAULT_TARGETS)
1503718Sstever@eecs.umich.edu
1513718Sstever@eecs.umich.edu
1522634Sstever@eecs.umich.edu# Generate a list of the unique build roots and configs that the
1532634Sstever@eecs.umich.edu# collected targets reference.
1542632Sstever@eecs.umich.edubuild_paths = []
1552638Sstever@eecs.umich.edubuild_root = None
1562632Sstever@eecs.umich.edufor t in abs_targets:
1572632Sstever@eecs.umich.edu    path_dirs = t.split('/')
1582632Sstever@eecs.umich.edu    try:
1592632Sstever@eecs.umich.edu        build_top = rfind(path_dirs, 'build', -2)
1602632Sstever@eecs.umich.edu    except:
1612632Sstever@eecs.umich.edu        print "Error: no non-leaf 'build' dir found on target path", t
1621858SN/A        Exit(1)
1633716Sstever@eecs.umich.edu    this_build_root = joinpath('/',*path_dirs[:build_top+1])
1642638Sstever@eecs.umich.edu    if not build_root:
1652638Sstever@eecs.umich.edu        build_root = this_build_root
1662638Sstever@eecs.umich.edu    else:
1672638Sstever@eecs.umich.edu        if this_build_root != build_root:
1682638Sstever@eecs.umich.edu            print "Error: build targets not under same build root\n"\
1692638Sstever@eecs.umich.edu                  "  %s\n  %s" % (build_root, this_build_root)
1702638Sstever@eecs.umich.edu            Exit(1)
1713716Sstever@eecs.umich.edu    build_path = joinpath('/',*path_dirs[:build_top+2])
1722634Sstever@eecs.umich.edu    if build_path not in build_paths:
1732634Sstever@eecs.umich.edu        build_paths.append(build_path)
174955SN/A
175955SN/A###################################################
176955SN/A#
177955SN/A# Set up the default build environment.  This environment is copied
178955SN/A# and modified according to each selected configuration.
179955SN/A#
180955SN/A###################################################
181955SN/A
1821858SN/Aenv = Environment(ENV = os.environ,  # inherit user's environment vars
1831858SN/A                  ROOT = ROOT,
1842632Sstever@eecs.umich.edu                  SRCDIR = SRCDIR)
1854202Sbinkertn@umich.eduExport('env')
186955SN/A
1873643Ssaidi@eecs.umich.edu#Parse CC/CXX early so that we use the correct compiler for 
1883643Ssaidi@eecs.umich.edu# to test for dependencies/versions/libraries/includes
1893643Ssaidi@eecs.umich.eduif ARGUMENTS.get('CC', None):
1903643Ssaidi@eecs.umich.edu    env['CC'] = ARGUMENTS.get('CC')
1913643Ssaidi@eecs.umich.edu
1923643Ssaidi@eecs.umich.eduif ARGUMENTS.get('CXX', None):
1933643Ssaidi@eecs.umich.edu    env['CXX'] = ARGUMENTS.get('CXX')
1943643Ssaidi@eecs.umich.edu
1953716Sstever@eecs.umich.eduenv.SConsignFile(joinpath(build_root,"sconsign"))
1961105SN/A
1972667Sstever@eecs.umich.edu# Default duplicate option is to use hard links, but this messes up
1982667Sstever@eecs.umich.edu# when you use emacs to edit a file in the target dir, as emacs moves
1992667Sstever@eecs.umich.edu# file to file~ then copies to file, breaking the link.  Symbolic
2002667Sstever@eecs.umich.edu# (soft) links work better.
2012667Sstever@eecs.umich.eduenv.SetOption('duplicate', 'soft-copy')
2022667Sstever@eecs.umich.edu
2031869SN/A# I waffle on this setting... it does avoid a few painful but
2041869SN/A# unnecessary builds, but it also seems to make trivial builds take
2051869SN/A# noticeably longer.
2061869SN/Aif False:
2071869SN/A    env.TargetSignatures('content')
2081065SN/A
2092632Sstever@eecs.umich.edu# M5_PLY is used by isa_parser.py to find the PLY package.
2102632Sstever@eecs.umich.eduenv.Append(ENV = { 'M5_PLY' : Dir('ext/ply') })
2113918Ssaidi@eecs.umich.eduenv['GCC'] = False
2123918Ssaidi@eecs.umich.eduenv['SUNCC'] = False
2133940Ssaidi@eecs.umich.eduenv['ICC'] = False
2143918Ssaidi@eecs.umich.eduenv['GCC'] = subprocess.Popen(env['CXX'] + ' --version', shell=True, 
2153918Ssaidi@eecs.umich.edu        stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 
2163918Ssaidi@eecs.umich.edu        close_fds=True).communicate()[0].find('GCC') >= 0
2173918Ssaidi@eecs.umich.eduenv['SUNCC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True, 
2183918Ssaidi@eecs.umich.edu        stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 
2193918Ssaidi@eecs.umich.edu        close_fds=True).communicate()[0].find('Sun C++') >= 0
2203940Ssaidi@eecs.umich.eduenv['ICC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True, 
2213940Ssaidi@eecs.umich.edu        stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 
2223940Ssaidi@eecs.umich.edu        close_fds=True).communicate()[0].find('Intel') >= 0
2233942Ssaidi@eecs.umich.eduif env['GCC'] + env['SUNCC'] + env['ICC'] > 1:
2243940Ssaidi@eecs.umich.edu    print 'Error: How can we have two at the same time?'
2253918Ssaidi@eecs.umich.edu    Exit(1)
2263918Ssaidi@eecs.umich.edu
227955SN/A
2281858SN/A# Set up default C++ compiler flags
2293918Ssaidi@eecs.umich.eduif env['GCC']:
2303918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-pipe')
2313918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-fno-strict-aliasing')
2323918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS=Split('-Wall -Wno-sign-compare -Werror -Wundef'))
2333940Ssaidi@eecs.umich.eduelif env['ICC']:
2343940Ssaidi@eecs.umich.edu    pass #Fix me... add warning flags once we clean up icc warnings
2353918Ssaidi@eecs.umich.eduelif env['SUNCC']:
2363918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-Qoption ccfe')
2373918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-features=gcc')
2383918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-features=extensions')
2393918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-library=stlport4')
2403918Ssaidi@eecs.umich.edu    env.Append(CCFLAGS='-xar')
2413918Ssaidi@eecs.umich.edu#    env.Append(CCFLAGS='-instances=semiexplicit')
2423918Ssaidi@eecs.umich.eduelse:
2433918Ssaidi@eecs.umich.edu    print 'Error: Don\'t know what compiler options to use for your compiler.'
2443940Ssaidi@eecs.umich.edu    print '       Please fix SConstruct and src/SConscript and try again.'
2453918Ssaidi@eecs.umich.edu    Exit(1)
2463918Ssaidi@eecs.umich.edu
2471851SN/Aif sys.platform == 'cygwin':
2481851SN/A    # cygwin has some header file issues...
2491858SN/A    env.Append(CCFLAGS=Split("-Wno-uninitialized"))
2502632Sstever@eecs.umich.eduenv.Append(CPPPATH=[Dir('ext/dnet')])
251955SN/A
2523053Sstever@eecs.umich.edu# Check for SWIG
2533053Sstever@eecs.umich.eduif not env.has_key('SWIG'):
2543053Sstever@eecs.umich.edu    print 'Error: SWIG utility not found.'
2553053Sstever@eecs.umich.edu    print '       Please install (see http://www.swig.org) and retry.'
2563053Sstever@eecs.umich.edu    Exit(1)
2573053Sstever@eecs.umich.edu
2583053Sstever@eecs.umich.edu# Check for appropriate SWIG version
2593053Sstever@eecs.umich.eduswig_version = os.popen('swig -version').read().split()
2603053Sstever@eecs.umich.edu# First 3 words should be "SWIG Version x.y.z"
2613053Sstever@eecs.umich.eduif swig_version[0] != 'SWIG' or swig_version[1] != 'Version':
2623053Sstever@eecs.umich.edu    print 'Error determining SWIG version.'
2633053Sstever@eecs.umich.edu    Exit(1)
2643053Sstever@eecs.umich.edu
2653053Sstever@eecs.umich.edumin_swig_version = '1.3.28'
2663053Sstever@eecs.umich.eduif compare_versions(swig_version[2], min_swig_version) < 0:
2673053Sstever@eecs.umich.edu    print 'Error: SWIG version', min_swig_version, 'or newer required.'
2683053Sstever@eecs.umich.edu    print '       Installed version:', swig_version[2]
2693053Sstever@eecs.umich.edu    Exit(1)
2703053Sstever@eecs.umich.edu
2712667Sstever@eecs.umich.edu# Set up SWIG flags & scanner
2722667Sstever@eecs.umich.eduenv.Append(SWIGFLAGS=Split('-c++ -python -modern $_CPPINCFLAGS'))
2732667Sstever@eecs.umich.edu
2742667Sstever@eecs.umich.eduimport SCons.Scanner
2752667Sstever@eecs.umich.edu
2762667Sstever@eecs.umich.eduswig_inc_re = '^[ \t]*[%,#][ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")'
2772667Sstever@eecs.umich.edu
2782667Sstever@eecs.umich.eduswig_scanner = SCons.Scanner.ClassicCPP("SwigScan", ".i", "CPPPATH",
2792667Sstever@eecs.umich.edu                                        swig_inc_re)
2802667Sstever@eecs.umich.edu
2812667Sstever@eecs.umich.eduenv.Append(SCANNERS = swig_scanner)
2822667Sstever@eecs.umich.edu
2832638Sstever@eecs.umich.edu# Platform-specific configuration.  Note again that we assume that all
2842638Sstever@eecs.umich.edu# builds under a given build root run on the same host platform.
2852638Sstever@eecs.umich.educonf = Configure(env,
2863716Sstever@eecs.umich.edu                 conf_dir = joinpath(build_root, '.scons_config'),
2873716Sstever@eecs.umich.edu                 log_file = joinpath(build_root, 'scons_config.log'))
2881858SN/A
2893118Sstever@eecs.umich.edu# Find Python include and library directories for embedding the
2903118Sstever@eecs.umich.edu# interpreter.  For consistency, we will use the same Python
2913118Sstever@eecs.umich.edu# installation used to run scons (and thus this script).  If you want
2923118Sstever@eecs.umich.edu# to link in an alternate version, see above for instructions on how
2933118Sstever@eecs.umich.edu# to invoke scons with a different copy of the Python interpreter.
2943118Sstever@eecs.umich.edu
2953118Sstever@eecs.umich.edu# Get brief Python version name (e.g., "python2.4") for locating
2963118Sstever@eecs.umich.edu# include & library files
2973118Sstever@eecs.umich.edupy_version_name = 'python' + sys.version[:3]
2983118Sstever@eecs.umich.edu
2993118Sstever@eecs.umich.edu# include path, e.g. /usr/local/include/python2.4
3003716Sstever@eecs.umich.edupy_header_path = joinpath(sys.exec_prefix, 'include', py_version_name)
3013118Sstever@eecs.umich.eduenv.Append(CPPPATH = py_header_path)
3023118Sstever@eecs.umich.edu# verify that it works
3033118Sstever@eecs.umich.eduif not conf.CheckHeader('Python.h', '<>'):
3043118Sstever@eecs.umich.edu    print "Error: can't find Python.h header in", py_header_path
3053118Sstever@eecs.umich.edu    Exit(1)
3063118Sstever@eecs.umich.edu
3073118Sstever@eecs.umich.edu# add library path too if it's not in the default place
3083118Sstever@eecs.umich.edupy_lib_path = None
3093118Sstever@eecs.umich.eduif sys.exec_prefix != '/usr':
3103716Sstever@eecs.umich.edu    py_lib_path = joinpath(sys.exec_prefix, 'lib')
3113118Sstever@eecs.umich.eduelif sys.platform == 'cygwin':
3123118Sstever@eecs.umich.edu    # cygwin puts the .dll in /bin for some reason
3133118Sstever@eecs.umich.edu    py_lib_path = '/bin'
3143118Sstever@eecs.umich.eduif py_lib_path:
3153118Sstever@eecs.umich.edu    env.Append(LIBPATH = py_lib_path)
3163118Sstever@eecs.umich.edu    print 'Adding', py_lib_path, 'to LIBPATH for', py_version_name
3173118Sstever@eecs.umich.eduif not conf.CheckLib(py_version_name):
3183118Sstever@eecs.umich.edu    print "Error: can't find Python library", py_version_name
3193118Sstever@eecs.umich.edu    Exit(1)
3203118Sstever@eecs.umich.edu
3213483Ssaidi@eecs.umich.edu# On Solaris you need to use libsocket for socket ops
3223494Ssaidi@eecs.umich.eduif not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
3233494Ssaidi@eecs.umich.edu   if not conf.CheckLibWithHeader('socket', 'sys/socket.h', 'C++', 'accept(0,0,0);'):
3243483Ssaidi@eecs.umich.edu       print "Can't find library with socket calls (e.g. accept())"
3253483Ssaidi@eecs.umich.edu       Exit(1)
3263483Ssaidi@eecs.umich.edu
3273053Sstever@eecs.umich.edu# Check for zlib.  If the check passes, libz will be automatically
3283053Sstever@eecs.umich.edu# added to the LIBS environment variable.
3293918Ssaidi@eecs.umich.eduif not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
3303053Sstever@eecs.umich.edu    print 'Error: did not find needed zlib compression library '\
3313053Sstever@eecs.umich.edu          'and/or zlib.h header file.'
3323053Sstever@eecs.umich.edu    print '       Please install zlib and try again.'
3333053Sstever@eecs.umich.edu    Exit(1)
3343053Sstever@eecs.umich.edu
3351858SN/A# Check for <fenv.h> (C99 FP environment control)
3361858SN/Ahave_fenv = conf.CheckHeader('fenv.h', '<>')
3371858SN/Aif not have_fenv:
3381858SN/A    print "Warning: Header file <fenv.h> not found."
3391858SN/A    print "         This host has no IEEE FP rounding mode control."
3401858SN/A
3411859SN/A# Check for mysql.
3421858SN/Amysql_config = WhereIs('mysql_config')
3431858SN/Ahave_mysql = mysql_config != None
3441858SN/A
3451859SN/A# Check MySQL version.
3461859SN/Aif have_mysql:
3471862SN/A    mysql_version = os.popen(mysql_config + ' --version').read()
3483053Sstever@eecs.umich.edu    min_mysql_version = '4.1'
3493053Sstever@eecs.umich.edu    if compare_versions(mysql_version, min_mysql_version) < 0:
3503053Sstever@eecs.umich.edu        print 'Warning: MySQL', min_mysql_version, 'or newer required.'
3513053Sstever@eecs.umich.edu        print '         Version', mysql_version, 'detected.'
3521859SN/A        have_mysql = False
3531859SN/A
3541859SN/A# Set up mysql_config commands.
3551859SN/Aif have_mysql:
3561859SN/A    mysql_config_include = mysql_config + ' --include'
3571859SN/A    if os.system(mysql_config_include + ' > /dev/null') != 0:
3581859SN/A        # older mysql_config versions don't support --include, use
3591859SN/A        # --cflags instead
3601862SN/A        mysql_config_include = mysql_config + ' --cflags | sed s/\\\'//g'
3611859SN/A    # This seems to work in all versions
3621859SN/A    mysql_config_libs = mysql_config + ' --libs'
3631859SN/A
3641858SN/Aenv = conf.Finish()
3651858SN/A
3662139SN/A# Define the universe of supported ISAs
3674202Sbinkertn@umich.eduall_isa_list = [ ]
3684202Sbinkertn@umich.eduExport('all_isa_list')
3692139SN/A
3702155SN/A# Define the universe of supported CPU models
3714202Sbinkertn@umich.eduall_cpu_list = [ ]
3724202Sbinkertn@umich.edudefault_cpus = [ ]
3734202Sbinkertn@umich.eduExport('all_cpu_list', 'default_cpus')
3742155SN/A
3751869SN/A# Sticky options get saved in the options file so they persist from
3761869SN/A# one invocation to the next (unless overridden, in which case the new
3771869SN/A# value becomes sticky).
3781869SN/Asticky_opts = Options(args=ARGUMENTS)
3794202Sbinkertn@umich.eduExport('sticky_opts')
3804202Sbinkertn@umich.edu
3814202Sbinkertn@umich.edu# Non-sticky options only apply to the current build.
3824202Sbinkertn@umich.edunonsticky_opts = Options(args=ARGUMENTS)
3834202Sbinkertn@umich.eduExport('nonsticky_opts')
3844202Sbinkertn@umich.edu
3854202Sbinkertn@umich.edu# Walk the tree and execute all SConsopts scripts that wil add to the
3864202Sbinkertn@umich.edu# above options
3874202Sbinkertn@umich.edufor root, dirs, files in os.walk('.'):
3884202Sbinkertn@umich.edu    if 'SConsopts' in files:
3894202Sbinkertn@umich.edu        SConscript(os.path.join(root, 'SConsopts'))
3904202Sbinkertn@umich.edu
3914202Sbinkertn@umich.eduall_isa_list.sort()
3924202Sbinkertn@umich.eduall_cpu_list.sort()
3934202Sbinkertn@umich.edudefault_cpus.sort()
3944202Sbinkertn@umich.edu
3951869SN/Asticky_opts.AddOptions(
3964202Sbinkertn@umich.edu    EnumOption('TARGET_ISA', 'Target ISA', 'alpha', all_isa_list),
3971869SN/A    BoolOption('FULL_SYSTEM', 'Full-system support', False),
3982508SN/A    # There's a bug in scons 0.96.1 that causes ListOptions with list
3992508SN/A    # values (more than one value) not to be able to be restored from
4002508SN/A    # a saved option file.  If this causes trouble then upgrade to
4012508SN/A    # scons 0.96.90 or later.
4024202Sbinkertn@umich.edu    ListOption('CPU_MODELS', 'CPU models', default_cpus, all_cpu_list),
4031869SN/A    BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),
4041869SN/A    BoolOption('EFENCE', 'Link with Electric Fence malloc debugger',
4051869SN/A               False),
4061869SN/A    BoolOption('SS_COMPATIBLE_FP',
4071869SN/A               'Make floating-point results compatible with SimpleScalar',
4081869SN/A               False),
4091965SN/A    BoolOption('USE_SSE2',
4101965SN/A               'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
4111965SN/A               False),
4121869SN/A    BoolOption('USE_MYSQL', 'Use MySQL for stats output', have_mysql),
4131869SN/A    BoolOption('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
4142733Sktlim@umich.edu    BoolOption('USE_CHECKER', 'Use checker for detailed CPU models', False),
4151869SN/A    ('CC', 'C compiler', os.environ.get('CC', env['CC'])),
4161884SN/A    ('CXX', 'C++ compiler', os.environ.get('CXX', env['CXX'])),
4171884SN/A    BoolOption('BATCH', 'Use batch pool for build and tests', False),
4183356Sbinkertn@umich.edu    ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
4193356Sbinkertn@umich.edu    ('PYTHONHOME',
4203356Sbinkertn@umich.edu     'Override the default PYTHONHOME for this system (use with caution)',
4213356Sbinkertn@umich.edu     '%s:%s' % (sys.prefix, sys.exec_prefix))
4221869SN/A    )
4231858SN/A
4241869SN/Anonsticky_opts.AddOptions(
4251869SN/A    BoolOption('update_ref', 'Update test reference outputs', False)
4261869SN/A    )
4271858SN/A
4282761Sstever@eecs.umich.edu# These options get exported to #defines in config/*.hh (see src/SConscript).
4291869SN/Aenv.ExportOptions = ['FULL_SYSTEM', 'ALPHA_TLASER', 'USE_FENV', \
4302733Sktlim@umich.edu                     'USE_MYSQL', 'NO_FAST_ALLOC', 'SS_COMPATIBLE_FP', \
4313584Ssaidi@eecs.umich.edu                     'USE_CHECKER', 'PYTHONHOME', 'TARGET_ISA']
4321869SN/A
4331869SN/A# Define a handy 'no-op' action
4341869SN/Adef no_action(target, source, env):
4351869SN/A    return 0
4361869SN/A
4371869SN/Aenv.NoAction = Action(no_action, None)
4381858SN/A
439955SN/A###################################################
440955SN/A#
4411869SN/A# Define a SCons builder for configuration flag headers.
4421869SN/A#
4431869SN/A###################################################
4441869SN/A
4451869SN/A# This function generates a config header file that #defines the
4461869SN/A# option symbol to the current option setting (0 or 1).  The source
4471869SN/A# operands are the name of the option and a Value node containing the
4481869SN/A# value of the option.
4491869SN/Adef build_config_file(target, source, env):
4501869SN/A    (option, value) = [s.get_contents() for s in source]
4511869SN/A    f = file(str(target[0]), 'w')
4521869SN/A    print >> f, '#define', option, value
4531869SN/A    f.close()
4541869SN/A    return None
4551869SN/A
4561869SN/A# Generate the message to be printed when building the config file.
4571869SN/Adef build_config_file_string(target, source, env):
4581869SN/A    (option, value) = [s.get_contents() for s in source]
4591869SN/A    return "Defining %s as %s in %s." % (option, value, target[0])
4601869SN/A
4611869SN/A# Combine the two functions into a scons Action object.
4621869SN/Aconfig_action = Action(build_config_file, build_config_file_string)
4631869SN/A
4641869SN/A# The emitter munges the source & target node lists to reflect what
4651869SN/A# we're really doing.
4661869SN/Adef config_emitter(target, source, env):
4671869SN/A    # extract option name from Builder arg
4681869SN/A    option = str(target[0])
4691869SN/A    # True target is config header file
4703716Sstever@eecs.umich.edu    target = joinpath('config', option.lower() + '.hh')
4713356Sbinkertn@umich.edu    val = env[option]
4723356Sbinkertn@umich.edu    if isinstance(val, bool):
4733356Sbinkertn@umich.edu        # Force value to 0/1
4743356Sbinkertn@umich.edu        val = int(val)
4753356Sbinkertn@umich.edu    elif isinstance(val, str):
4763356Sbinkertn@umich.edu        val = '"' + val + '"'
4773356Sbinkertn@umich.edu        
4781869SN/A    # Sources are option name & value (packaged in SCons Value nodes)
4791869SN/A    return ([target], [Value(option), Value(val)])
4801869SN/A
4811869SN/Aconfig_builder = Builder(emitter = config_emitter, action = config_action)
4821869SN/A
4831869SN/Aenv.Append(BUILDERS = { 'ConfigFile' : config_builder })
4841869SN/A
4852655Sstever@eecs.umich.edu###################################################
4862655Sstever@eecs.umich.edu#
4872655Sstever@eecs.umich.edu# Define a SCons builder for copying files.  This is used by the
4882655Sstever@eecs.umich.edu# Python zipfile code in src/python/SConscript, but is placed up here
4892655Sstever@eecs.umich.edu# since it's potentially more generally applicable.
4902655Sstever@eecs.umich.edu#
4912655Sstever@eecs.umich.edu###################################################
4922655Sstever@eecs.umich.edu
4932655Sstever@eecs.umich.educopy_builder = Builder(action = Copy("$TARGET", "$SOURCE"))
4942655Sstever@eecs.umich.edu
4952655Sstever@eecs.umich.eduenv.Append(BUILDERS = { 'CopyFile' : copy_builder })
4962655Sstever@eecs.umich.edu
4972655Sstever@eecs.umich.edu###################################################
4982655Sstever@eecs.umich.edu#
4992655Sstever@eecs.umich.edu# Define a simple SCons builder to concatenate files.
5002655Sstever@eecs.umich.edu#
5012655Sstever@eecs.umich.edu# Used to append the Python zip archive to the executable.
5022655Sstever@eecs.umich.edu#
5032655Sstever@eecs.umich.edu###################################################
5042655Sstever@eecs.umich.edu
5052655Sstever@eecs.umich.educoncat_builder = Builder(action = Action(['cat $SOURCES > $TARGET',
5062655Sstever@eecs.umich.edu                                          'chmod +x $TARGET']))
5072655Sstever@eecs.umich.edu
5082655Sstever@eecs.umich.eduenv.Append(BUILDERS = { 'Concat' : concat_builder })
5092655Sstever@eecs.umich.edu
5102655Sstever@eecs.umich.edu
5112634Sstever@eecs.umich.edu# base help text
5122634Sstever@eecs.umich.eduhelp_text = '''
5132634Sstever@eecs.umich.eduUsage: scons [scons options] [build options] [target(s)]
5142634Sstever@eecs.umich.edu
5152634Sstever@eecs.umich.edu'''
5162634Sstever@eecs.umich.edu
5172638Sstever@eecs.umich.edu# libelf build is shared across all configs in the build root.
5182638Sstever@eecs.umich.eduenv.SConscript('ext/libelf/SConscript',
5193716Sstever@eecs.umich.edu               build_dir = joinpath(build_root, 'libelf'),
5202638Sstever@eecs.umich.edu               exports = 'env')
5212638Sstever@eecs.umich.edu
5221869SN/A###################################################
5231869SN/A#
5243546Sgblack@eecs.umich.edu# This function is used to set up a directory with switching headers
5253546Sgblack@eecs.umich.edu#
5263546Sgblack@eecs.umich.edu###################################################
5273546Sgblack@eecs.umich.edu
5284202Sbinkertn@umich.eduenv['ALL_ISA_LIST'] = all_isa_list
5293546Sgblack@eecs.umich.edudef make_switching_dir(dirname, switch_headers, env):
5303546Sgblack@eecs.umich.edu    # Generate the header.  target[0] is the full path of the output
5313546Sgblack@eecs.umich.edu    # header to generate.  'source' is a dummy variable, since we get the
5323546Sgblack@eecs.umich.edu    # list of ISAs from env['ALL_ISA_LIST'].
5333546Sgblack@eecs.umich.edu    def gen_switch_hdr(target, source, env):
5343546Sgblack@eecs.umich.edu	fname = str(target[0])
5353546Sgblack@eecs.umich.edu	basename = os.path.basename(fname)
5363546Sgblack@eecs.umich.edu	f = open(fname, 'w')
5373546Sgblack@eecs.umich.edu	f.write('#include "arch/isa_specific.hh"\n')
5383546Sgblack@eecs.umich.edu	cond = '#if'
5394202Sbinkertn@umich.edu	for isa in all_isa_list:
5403546Sgblack@eecs.umich.edu	    f.write('%s THE_ISA == %s_ISA\n#include "%s/%s/%s"\n'
5413546Sgblack@eecs.umich.edu		    % (cond, isa.upper(), dirname, isa, basename))
5423546Sgblack@eecs.umich.edu	    cond = '#elif'
5433546Sgblack@eecs.umich.edu	f.write('#else\n#error "THE_ISA not set"\n#endif\n')
5443546Sgblack@eecs.umich.edu	f.close()
5453546Sgblack@eecs.umich.edu	return 0
5463546Sgblack@eecs.umich.edu
5473546Sgblack@eecs.umich.edu    # String to print when generating header
5483546Sgblack@eecs.umich.edu    def gen_switch_hdr_string(target, source, env):
5493546Sgblack@eecs.umich.edu	return "Generating switch header " + str(target[0])
5503546Sgblack@eecs.umich.edu
5513546Sgblack@eecs.umich.edu    # Build SCons Action object. 'varlist' specifies env vars that this
5523546Sgblack@eecs.umich.edu    # action depends on; when env['ALL_ISA_LIST'] changes these actions
5533546Sgblack@eecs.umich.edu    # should get re-executed.
5543546Sgblack@eecs.umich.edu    switch_hdr_action = Action(gen_switch_hdr, gen_switch_hdr_string,
5553546Sgblack@eecs.umich.edu                               varlist=['ALL_ISA_LIST'])
5563546Sgblack@eecs.umich.edu
5573546Sgblack@eecs.umich.edu    # Instantiate actions for each header
5583546Sgblack@eecs.umich.edu    for hdr in switch_headers:
5593546Sgblack@eecs.umich.edu        env.Command(hdr, [], switch_hdr_action)
5604202Sbinkertn@umich.eduExport('make_switching_dir')
5613546Sgblack@eecs.umich.edu
5623546Sgblack@eecs.umich.edu###################################################
5633546Sgblack@eecs.umich.edu#
564955SN/A# Define build environments for selected configurations.
565955SN/A#
566955SN/A###################################################
567955SN/A
5681858SN/A# rename base env
5691858SN/Abase_env = env
5701858SN/A
5712632Sstever@eecs.umich.edufor build_path in build_paths:
5722632Sstever@eecs.umich.edu    print "Building in", build_path
5732632Sstever@eecs.umich.edu    # build_dir is the tail component of build path, and is used to
5742632Sstever@eecs.umich.edu    # determine the build parameters (e.g., 'ALPHA_SE')
5752632Sstever@eecs.umich.edu    (build_root, build_dir) = os.path.split(build_path)
5762634Sstever@eecs.umich.edu    # Make a copy of the build-root environment to use for this config.
5772638Sstever@eecs.umich.edu    env = base_env.Copy()
5782023SN/A
5792632Sstever@eecs.umich.edu    # Set env options according to the build directory config.
5802632Sstever@eecs.umich.edu    sticky_opts.files = []
5812632Sstever@eecs.umich.edu    # Options for $BUILD_ROOT/$BUILD_DIR are stored in
5822632Sstever@eecs.umich.edu    # $BUILD_ROOT/options/$BUILD_DIR so you can nuke
5832632Sstever@eecs.umich.edu    # $BUILD_ROOT/$BUILD_DIR without losing your options settings.
5843716Sstever@eecs.umich.edu    current_opts_file = joinpath(build_root, 'options', build_dir)
5852632Sstever@eecs.umich.edu    if os.path.isfile(current_opts_file):
5862632Sstever@eecs.umich.edu        sticky_opts.files.append(current_opts_file)
5872632Sstever@eecs.umich.edu        print "Using saved options file %s" % current_opts_file
5882632Sstever@eecs.umich.edu    else:
5892632Sstever@eecs.umich.edu        # Build dir-specific options file doesn't exist.
5902023SN/A
5912632Sstever@eecs.umich.edu        # Make sure the directory is there so we can create it later
5922632Sstever@eecs.umich.edu        opt_dir = os.path.dirname(current_opts_file)
5931889SN/A        if not os.path.isdir(opt_dir):
5941889SN/A            os.mkdir(opt_dir)
5952632Sstever@eecs.umich.edu
5962632Sstever@eecs.umich.edu        # Get default build options from source tree.  Options are
5972632Sstever@eecs.umich.edu        # normally determined by name of $BUILD_DIR, but can be
5982632Sstever@eecs.umich.edu        # overriden by 'default=' arg on command line.
5993716Sstever@eecs.umich.edu        default_opts_file = joinpath('build_opts',
6003716Sstever@eecs.umich.edu                                     ARGUMENTS.get('default', build_dir))
6012632Sstever@eecs.umich.edu        if os.path.isfile(default_opts_file):
6022632Sstever@eecs.umich.edu            sticky_opts.files.append(default_opts_file)
6032632Sstever@eecs.umich.edu            print "Options file %s not found,\n  using defaults in %s" \
6042632Sstever@eecs.umich.edu                  % (current_opts_file, default_opts_file)
6052632Sstever@eecs.umich.edu        else:
6062632Sstever@eecs.umich.edu            print "Error: cannot find options file %s or %s" \
6072632Sstever@eecs.umich.edu                  % (current_opts_file, default_opts_file)
6082632Sstever@eecs.umich.edu            Exit(1)
6091888SN/A
6101888SN/A    # Apply current option settings to env
6111869SN/A    sticky_opts.Update(env)
6121869SN/A    nonsticky_opts.Update(env)
6131858SN/A
6142598SN/A    help_text += "Sticky options for %s:\n" % build_dir \
6152598SN/A                 + sticky_opts.GenerateHelpText(env) \
6162598SN/A                 + "\nNon-sticky options for %s:\n" % build_dir \
6172598SN/A                 + nonsticky_opts.GenerateHelpText(env)
6182598SN/A
6191858SN/A    # Process option settings.
6201858SN/A
6211858SN/A    if not have_fenv and env['USE_FENV']:
6221858SN/A        print "Warning: <fenv.h> not available; " \
6231858SN/A              "forcing USE_FENV to False in", build_dir + "."
6241858SN/A        env['USE_FENV'] = False
6251858SN/A
6261858SN/A    if not env['USE_FENV']:
6271858SN/A        print "Warning: No IEEE FP rounding mode control in", build_dir + "."
6281871SN/A        print "         FP results may deviate slightly from other platforms."
6291858SN/A
6301858SN/A    if env['EFENCE']:
6311858SN/A        env.Append(LIBS=['efence'])
6321858SN/A
6331858SN/A    if env['USE_MYSQL']:
6341858SN/A        if not have_mysql:
6351858SN/A            print "Warning: MySQL not available; " \
6361858SN/A                  "forcing USE_MYSQL to False in", build_dir + "."
6371858SN/A            env['USE_MYSQL'] = False
6381858SN/A        else:
6391858SN/A            print "Compiling in", build_dir, "with MySQL support."
6401859SN/A            env.ParseConfig(mysql_config_libs)
6411859SN/A            env.ParseConfig(mysql_config_include)
6421869SN/A
6431888SN/A    # Save sticky option settings back to current options file
6442632Sstever@eecs.umich.edu    sticky_opts.Save(current_opts_file, env)
6451869SN/A
6461884SN/A    # Do this after we save setting back, or else we'll tack on an
6471884SN/A    # extra 'qdo' every time we run scons.
6481884SN/A    if env['BATCH']:
6491884SN/A        env['CC']  = env['BATCH_CMD'] + ' ' + env['CC']
6501884SN/A        env['CXX'] = env['BATCH_CMD'] + ' ' + env['CXX']
6511884SN/A
6521965SN/A    if env['USE_SSE2']:
6531965SN/A        env.Append(CCFLAGS='-msse2')
6541965SN/A
6552761Sstever@eecs.umich.edu    # The src/SConscript file sets up the build rules in 'env' according
6561869SN/A    # to the configured options.  It returns a list of environments,
6571869SN/A    # one for each variant build (debug, opt, etc.)
6582632Sstever@eecs.umich.edu    envList = SConscript('src/SConscript', build_dir = build_path,
6592667Sstever@eecs.umich.edu                         exports = 'env')
6601869SN/A
6611869SN/A    # Set up the regression tests for each build.
6622929Sktlim@umich.edu    for e in envList:
6632929Sktlim@umich.edu        SConscript('tests/SConscript',
6643716Sstever@eecs.umich.edu                   build_dir = joinpath(build_path, 'tests', e.Label),
6652929Sktlim@umich.edu                   exports = { 'env' : e }, duplicate = False)
666955SN/A
6672598SN/AHelp(help_text)
6682598SN/A
6693546Sgblack@eecs.umich.edu
670955SN/A###################################################
671955SN/A#
672955SN/A# Let SCons do its thing.  At this point SCons will use the defined
6731530SN/A# build environments to build the requested targets.
674955SN/A#
675955SN/A###################################################
676955SN/A
677