SConscript revision 4762
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#
294762Snate@binkert.org# Authors: Nathan Binkert
30955SN/A
314762Snate@binkert.orgimport imp
32955SN/Aimport os
33955SN/Aimport sys
344202Sbinkertn@umich.edu
354382Sbinkertn@umich.edufrom os.path import basename
364202Sbinkertn@umich.edufrom os.path import join as joinpath
374762Snate@binkert.orgfrom os.path import exists
384762Snate@binkert.orgfrom os.path import isdir
394762Snate@binkert.orgfrom os.path import isfile
40955SN/A
414381Sbinkertn@umich.eduimport SCons
424381Sbinkertn@umich.edu
43955SN/A# This file defines how to build a particular configuration of M5
44955SN/A# based on variable settings in the 'env' build environment.
45955SN/A
464202Sbinkertn@umich.eduImport('*')
47955SN/A
484382Sbinkertn@umich.edu# Children need to see the environment
494382Sbinkertn@umich.eduExport('env')
504382Sbinkertn@umich.edu
514762Snate@binkert.orgdef sort_list(_list):
524762Snate@binkert.org    """return a sorted copy of '_list'"""
534762Snate@binkert.org    if isinstance(_list, list):
544762Snate@binkert.org        _list = _list[:]
554762Snate@binkert.org    else:
564762Snate@binkert.org        _list = list(_list)
574762Snate@binkert.org    _list.sort()
584762Snate@binkert.org    return _list
594762Snate@binkert.org
604762Snate@binkert.orgclass PySourceFile(object):
614762Snate@binkert.org    def __init__(self, package, source):
624762Snate@binkert.org        filename = str(source)
634762Snate@binkert.org        pyname = basename(filename)
644762Snate@binkert.org        assert pyname.endswith('.py')
654762Snate@binkert.org        name = pyname[:-3]
664762Snate@binkert.org        path = package.split('.')
674762Snate@binkert.org        modpath = path
684762Snate@binkert.org        if name != '__init__':
694762Snate@binkert.org            modpath += [name]
704762Snate@binkert.org        modpath = '.'.join(modpath)
714762Snate@binkert.org
724762Snate@binkert.org        arcpath = package.split('.') + [ pyname + 'c' ]
734762Snate@binkert.org        arcname = joinpath(*arcpath)
744762Snate@binkert.org
754762Snate@binkert.org        self.source = source
764762Snate@binkert.org        self.pyname = pyname
774762Snate@binkert.org        self.srcpath = source.srcnode().abspath
784762Snate@binkert.org        self.package = package
794762Snate@binkert.org        self.modpath = modpath
804762Snate@binkert.org        self.arcname = arcname
814762Snate@binkert.org        self.filename = filename
824762Snate@binkert.org        self.compiled = File(filename + 'c')
834762Snate@binkert.org
844382Sbinkertn@umich.edu########################################################################
854762Snate@binkert.org# Code for adding source files of various types
864382Sbinkertn@umich.edu#
874762Snate@binkert.orgcc_sources = []
884381Sbinkertn@umich.edudef Source(source):
894762Snate@binkert.org    '''Add a C/C++ source file to the build'''
904762Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
914762Snate@binkert.org        source = File(source)
924762Snate@binkert.org
934762Snate@binkert.org    cc_sources.append(source)
944762Snate@binkert.org
954762Snate@binkert.orgpy_sources = []
964762Snate@binkert.orgdef PySource(package, source):
974762Snate@binkert.org    '''Add a python source file to the named package'''
984762Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
994762Snate@binkert.org        source = File(source)
1004762Snate@binkert.org
1014762Snate@binkert.org    source = PySourceFile(package, source)
1024762Snate@binkert.org    py_sources.append(source)
1034762Snate@binkert.org
1044762Snate@binkert.orgsim_objects_fixed = False
1054762Snate@binkert.orgsim_object_modfiles = set()
1064762Snate@binkert.orgdef SimObject(source):
1074762Snate@binkert.org    '''Add a SimObject python file as a python source object and add
1084762Snate@binkert.org    it to a list of sim object modules'''
1094762Snate@binkert.org
1104762Snate@binkert.org    if sim_objects_fixed:
1114762Snate@binkert.org        raise AttributeError, "Too late to call SimObject now."
1124762Snate@binkert.org
1134762Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1144762Snate@binkert.org        source = File(source)
1154762Snate@binkert.org
1164762Snate@binkert.org    PySource('m5.objects', source)
1174762Snate@binkert.org    modfile = basename(str(source))
1184762Snate@binkert.org    assert modfile.endswith('.py')
1194762Snate@binkert.org    modname = modfile[:-3]
1204762Snate@binkert.org    sim_object_modfiles.add(modname)
1214762Snate@binkert.org
1224762Snate@binkert.orgswig_sources = []
1234762Snate@binkert.orgdef SwigSource(package, source):
1244762Snate@binkert.org    '''Add a swig file to build'''
1254762Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1264762Snate@binkert.org        source = File(source)
1274762Snate@binkert.org    val = source,package
1284762Snate@binkert.org    swig_sources.append(val)
129955SN/A
1304382Sbinkertn@umich.edu# Children should have access
1314202Sbinkertn@umich.eduExport('Source')
1324382Sbinkertn@umich.eduExport('PySource')
1334382Sbinkertn@umich.eduExport('SimObject')
1344382Sbinkertn@umich.eduExport('SwigSource')
1354382Sbinkertn@umich.edu
1364382Sbinkertn@umich.edu########################################################################
1374382Sbinkertn@umich.edu#
1384382Sbinkertn@umich.edu# Set some compiler variables
1394382Sbinkertn@umich.edu#
1404382Sbinkertn@umich.edu
1412667Sstever@eecs.umich.edu# Include file paths are rooted in this directory.  SCons will
1422667Sstever@eecs.umich.edu# automatically expand '.' to refer to both the source directory and
1432667Sstever@eecs.umich.edu# the corresponding build directory to pick up generated include
1442667Sstever@eecs.umich.edu# files.
1452667Sstever@eecs.umich.eduenv.Append(CPPPATH=Dir('.'))
1462667Sstever@eecs.umich.edu
1472037SN/A# Add a flag defining what THE_ISA should be for all compilation
1482037SN/Aenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])
1492037SN/A
1504382Sbinkertn@umich.edu########################################################################
1514762Snate@binkert.org#
1524202Sbinkertn@umich.edu# Walk the tree and execute all SConscripts
1534382Sbinkertn@umich.edu#
1544202Sbinkertn@umich.eduscripts = []
1554202Sbinkertn@umich.edusrcdir = env['SRCDIR']
1564202Sbinkertn@umich.edufor root, dirs, files in os.walk(srcdir, topdown=True):
1574202Sbinkertn@umich.edu    if root == srcdir:
1584202Sbinkertn@umich.edu        # we don't want to recurse back into this SConscript
1594202Sbinkertn@umich.edu        continue
1604762Snate@binkert.org
1614202Sbinkertn@umich.edu    if 'SConscript' in files:
1624202Sbinkertn@umich.edu        # strip off the srcdir part since scons will try to find the
1634202Sbinkertn@umich.edu        # script in the build directory
1644202Sbinkertn@umich.edu        base = root[len(srcdir) + 1:]
1654202Sbinkertn@umich.edu        SConscript(joinpath(base, 'SConscript'))
1661858SN/A
1671858SN/Afor opt in env.ExportOptions:
1681858SN/A    env.ConfigFile(opt)
1691085SN/A
1704382Sbinkertn@umich.edu########################################################################
1714382Sbinkertn@umich.edu#
1724762Snate@binkert.org# Prevent any SimObjects from being added after this point, they
1734762Snate@binkert.org# should all have been added in the SConscripts above
1744762Snate@binkert.org#
1754762Snate@binkert.orgsim_objects_fixed = True
1764762Snate@binkert.org
1774762Snate@binkert.org########################################################################
1784762Snate@binkert.org#
1794762Snate@binkert.org# Manually turn python/generate.py into a python module and import it
1804762Snate@binkert.org#
1814762Snate@binkert.orggenerate_file = File('python/generate.py')
1824762Snate@binkert.orggenerate_module = imp.new_module('generate')
1834762Snate@binkert.orgsys.modules['generate'] = generate_module
1844762Snate@binkert.orgexec file(generate_file.srcnode().abspath, 'r') in generate_module.__dict__
1854762Snate@binkert.org
1864762Snate@binkert.org########################################################################
1874762Snate@binkert.org#
1884762Snate@binkert.org# build a generate
1894762Snate@binkert.org#
1904762Snate@binkert.orgfrom generate import Generate
1914762Snate@binkert.orgoptionDict = dict([(opt, env[opt]) for opt in env.ExportOptions])
1924762Snate@binkert.orggenerate = Generate(py_sources, sim_object_modfiles, optionDict)
1934762Snate@binkert.orgm5 = generate.m5
1944762Snate@binkert.org
1954762Snate@binkert.org########################################################################
1964762Snate@binkert.org#
1974762Snate@binkert.org# calculate extra dependencies
1984762Snate@binkert.org#
1994762Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
2004762Snate@binkert.orgmodule_depends = [ File(generate.py_modules[dep]) for dep in module_depends ]
2014762Snate@binkert.orgfile_depends = [ generate_file ]
2024762Snate@binkert.orgdepends = module_depends + file_depends
2034762Snate@binkert.org
2044762Snate@binkert.org########################################################################
2054762Snate@binkert.org#
2064762Snate@binkert.org# Commands for the basic automatically generated python files
2074382Sbinkertn@umich.edu#
2084382Sbinkertn@umich.edu
2094762Snate@binkert.org# Generate a file with all of the compile options in it
2104762Snate@binkert.orgenv.Command('python/m5/defines.py', Value(optionDict),
2114762Snate@binkert.org            generate.makeDefinesPyFile)
2124382Sbinkertn@umich.eduPySource('m5', 'python/m5/defines.py')
2134382Sbinkertn@umich.edu
2144762Snate@binkert.org# Generate a file that wraps the basic top level files
2154382Sbinkertn@umich.eduenv.Command('python/m5/info.py',
2164382Sbinkertn@umich.edu            [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
2174762Snate@binkert.org            generate.makeInfoPyFile)
2184382Sbinkertn@umich.eduPySource('m5', 'python/m5/info.py')
2194382Sbinkertn@umich.edu
2204762Snate@binkert.org# Generate an __init__.py file for the objects package
2214382Sbinkertn@umich.eduenv.Command('python/m5/objects/__init__.py',
2224762Snate@binkert.org            [ Value(o) for o in sort_list(sim_object_modfiles) ],
2234762Snate@binkert.org            generate.makeObjectsInitFile)
2244382Sbinkertn@umich.eduPySource('m5.objects', 'python/m5/objects/__init__.py')
2254382Sbinkertn@umich.edu
2264762Snate@binkert.org########################################################################
2274762Snate@binkert.org#
2284762Snate@binkert.org# Create all of the SimObject param headers and enum headers
2294762Snate@binkert.org#
2304762Snate@binkert.org
2314762Snate@binkert.org# Generate all of the SimObject param struct header files
2324762Snate@binkert.orgparams_hh_files = []
2334762Snate@binkert.orgfor name,simobj in generate.sim_objects.iteritems():
2344762Snate@binkert.org    extra_deps = [ File(generate.py_modules[simobj.__module__]) ]
2354762Snate@binkert.org
2364762Snate@binkert.org    hh_file = File('params/%s.hh' % name)
2374762Snate@binkert.org    params_hh_files.append(hh_file)
2384762Snate@binkert.org    env.Command(hh_file, Value(name), generate.createSimObjectParam)
2394762Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
2404762Snate@binkert.org
2414762Snate@binkert.org# Generate any parameter header files needed
2424762Snate@binkert.orgfor name,param in generate.params.iteritems():
2434762Snate@binkert.org    if isinstance(param, m5.params.VectorParamDesc):
2444762Snate@binkert.org        ext = 'vptype'
2454762Snate@binkert.org    else:
2464762Snate@binkert.org        ext = 'ptype'
2474762Snate@binkert.org
2484762Snate@binkert.org    i_file = File('params/%s_%s.i' % (name, ext))
2494762Snate@binkert.org    env.Command(i_file, Value(name), generate.createSwigParam)
2504762Snate@binkert.org    env.Depends(i_file, depends)
2514762Snate@binkert.org
2524762Snate@binkert.org# Generate all enum header files
2534762Snate@binkert.orgfor name,enum in generate.enums.iteritems():
2544762Snate@binkert.org    extra_deps = [ File(generate.py_modules[enum.__module__]) ]
2554762Snate@binkert.org
2564762Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
2574762Snate@binkert.org    env.Command(cc_file, Value(name), generate.createEnumStrings)
2584762Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
2594762Snate@binkert.org    Source(cc_file)
2604762Snate@binkert.org
2614762Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
2624762Snate@binkert.org    env.Command(hh_file, Value(name), generate.createEnumParam)
2634762Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
2644762Snate@binkert.org
2654762Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject
2664762Snate@binkert.org# param structs and enum structs)
2674762Snate@binkert.orgparams_file = File('params/params.i')
2684762Snate@binkert.orgnames = sort_list(generate.sim_objects.keys())
2694762Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ],
2704762Snate@binkert.org            generate.buildParams)
2714762Snate@binkert.orgenv.Depends(params_file, params_hh_files + depends)
2724762Snate@binkert.orgSwigSource('m5.objects', params_file)
2734762Snate@binkert.org
2744762Snate@binkert.org# Build all swig modules
2754382Sbinkertn@umich.eduswig_modules = []
2764762Snate@binkert.orgfor source,package in swig_sources:
2774382Sbinkertn@umich.edu    filename = str(source)
2784762Snate@binkert.org    assert filename.endswith('.i')
2794382Sbinkertn@umich.edu
2804762Snate@binkert.org    base = '.'.join(filename.split('.')[:-1])
2814762Snate@binkert.org    module = basename(base)
2824762Snate@binkert.org    cc_file = base + '_wrap.cc'
2834762Snate@binkert.org    py_file = base + '.py'
2844382Sbinkertn@umich.edu
2854382Sbinkertn@umich.edu    env.Command([cc_file, py_file], source,
2864382Sbinkertn@umich.edu                '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
2874382Sbinkertn@umich.edu                '-o ${TARGETS[0]} $SOURCES')
2884382Sbinkertn@umich.edu    env.Depends(py_file, source)
2894382Sbinkertn@umich.edu    env.Depends(cc_file, source)
2904762Snate@binkert.org
2914382Sbinkertn@umich.edu    swig_modules.append(Value(module))
2924382Sbinkertn@umich.edu    Source(cc_file)
2934382Sbinkertn@umich.edu    PySource(package, py_file)
2944382Sbinkertn@umich.edu
2954762Snate@binkert.org# Generate the main swig init file
2964762Snate@binkert.orgenv.Command('swig/init.cc', swig_modules, generate.makeSwigInit)
2974762Snate@binkert.orgSource('swig/init.cc')
2984382Sbinkertn@umich.edu
2994762Snate@binkert.org# Build the zip file
3004382Sbinkertn@umich.edupy_compiled = []
3014382Sbinkertn@umich.edupy_zip_depends = []
3024382Sbinkertn@umich.edufor source in py_sources:
3034762Snate@binkert.org    env.Command(source.compiled, source.source, generate.compilePyFile)
3044762Snate@binkert.org    py_compiled.append(source.compiled)
3054382Sbinkertn@umich.edu
3064382Sbinkertn@umich.edu    # make the zipfile depend on the archive name so that the archive
3074382Sbinkertn@umich.edu    # is rebuilt if the name changes
3084762Snate@binkert.org    py_zip_depends.append(Value(source.arcname))
3094382Sbinkertn@umich.edu
3104382Sbinkertn@umich.edu# Add the zip file target to the environment.
3114762Snate@binkert.orgm5zip = File('m5py.zip')
3124762Snate@binkert.orgenv.Command(m5zip, py_compiled, generate.buildPyZip)
3134762Snate@binkert.orgenv.Depends(m5zip, py_zip_depends)
3144382Sbinkertn@umich.edu
3154382Sbinkertn@umich.edu########################################################################
3164382Sbinkertn@umich.edu#
3174382Sbinkertn@umich.edu# Define binaries.  Each different build type (debug, opt, etc.) gets
3184382Sbinkertn@umich.edu# a slightly different build environment.
3194382Sbinkertn@umich.edu#
3204382Sbinkertn@umich.edu
3214382Sbinkertn@umich.edu# List of constructed environments to pass back to SConstruct
3224382Sbinkertn@umich.eduenvList = []
3234382Sbinkertn@umich.edu
324955SN/A# This function adds the specified sources to the given build
325955SN/A# environment, and returns a list of all the corresponding SCons
326955SN/A# Object nodes (including an extra one for date.cc).  We explicitly
327955SN/A# add the Object nodes so we can set up special dependencies for
3281108SN/A# date.cc.
329955SN/Adef make_objs(sources, env):
330955SN/A    objs = [env.Object(s) for s in sources]
331955SN/A    # make date.cc depend on all other objects so it always gets
332955SN/A    # recompiled whenever anything else does
333955SN/A    date_obj = env.Object('base/date.cc')
334955SN/A    env.Depends(date_obj, objs)
335955SN/A    objs.append(date_obj)
336955SN/A    return objs
337955SN/A
3382655Sstever@eecs.umich.edu# Function to create a new build environment as clone of current
3392655Sstever@eecs.umich.edu# environment 'env' with modified object suffix and optional stripped
3402655Sstever@eecs.umich.edu# binary.  Additional keyword arguments are appended to corresponding
3412655Sstever@eecs.umich.edu# build environment vars.
3422655Sstever@eecs.umich.edudef makeEnv(label, objsfx, strip = False, **kwargs):
3432655Sstever@eecs.umich.edu    newEnv = env.Copy(OBJSUFFIX=objsfx)
3442655Sstever@eecs.umich.edu    newEnv.Label = label
3452655Sstever@eecs.umich.edu    newEnv.Append(**kwargs)
3462655Sstever@eecs.umich.edu    exe = 'm5.' + label  # final executable
3472655Sstever@eecs.umich.edu    bin = exe + '.bin'   # executable w/o appended Python zip archive
3484762Snate@binkert.org    newEnv.Program(bin, make_objs(cc_sources, newEnv))
3492655Sstever@eecs.umich.edu    if strip:
3502655Sstever@eecs.umich.edu        stripped_bin = bin + '.stripped'
3514007Ssaidi@eecs.umich.edu        if sys.platform == 'sunos5':
3524596Sbinkertn@umich.edu            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
3534007Ssaidi@eecs.umich.edu        else:
3544596Sbinkertn@umich.edu            cmd = 'strip $SOURCE -o $TARGET'
3554596Sbinkertn@umich.edu        newEnv.Command(stripped_bin, bin, cmd)
3562655Sstever@eecs.umich.edu        bin = stripped_bin
3574382Sbinkertn@umich.edu    targets = newEnv.Concat(exe, [bin, 'm5py.zip'])
3582655Sstever@eecs.umich.edu    newEnv.M5Binary = targets[0]
3592655Sstever@eecs.umich.edu    envList.append(newEnv)
3602655Sstever@eecs.umich.edu
361955SN/A# Debug binary
3623918Ssaidi@eecs.umich.educcflags = {}
3633918Ssaidi@eecs.umich.eduif env['GCC']:
3643918Ssaidi@eecs.umich.edu    if sys.platform == 'sunos5':
3653918Ssaidi@eecs.umich.edu        ccflags['debug'] = '-gstabs+'
3663918Ssaidi@eecs.umich.edu    else:
3673918Ssaidi@eecs.umich.edu        ccflags['debug'] = '-ggdb3'
3683918Ssaidi@eecs.umich.edu    ccflags['opt'] = '-g -O3'
3693918Ssaidi@eecs.umich.edu    ccflags['fast'] = '-O3'
3703918Ssaidi@eecs.umich.edu    ccflags['prof'] = '-O3 -g -pg'
3713918Ssaidi@eecs.umich.eduelif env['SUNCC']:
3723918Ssaidi@eecs.umich.edu    ccflags['debug'] = '-g0'
3733918Ssaidi@eecs.umich.edu    ccflags['opt'] = '-g -O'
3743918Ssaidi@eecs.umich.edu    ccflags['fast'] = '-fast'
3753918Ssaidi@eecs.umich.edu    ccflags['prof'] = '-fast -g -pg'
3763940Ssaidi@eecs.umich.eduelif env['ICC']:
3773940Ssaidi@eecs.umich.edu    ccflags['debug'] = '-g -O0'
3783940Ssaidi@eecs.umich.edu    ccflags['opt'] = '-g -O'
3793942Ssaidi@eecs.umich.edu    ccflags['fast'] = '-fast'
3803940Ssaidi@eecs.umich.edu    ccflags['prof'] = '-fast -g -pg'
3813515Ssaidi@eecs.umich.eduelse:
3823918Ssaidi@eecs.umich.edu    print 'Unknown compiler, please fix compiler options'
3834762Snate@binkert.org    Exit(1)
3843515Ssaidi@eecs.umich.edu
3852655Sstever@eecs.umich.edumakeEnv('debug', '.do',
3863918Ssaidi@eecs.umich.edu        CCFLAGS = Split(ccflags['debug']),
3873619Sbinkertn@umich.edu        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
388955SN/A
389955SN/A# Optimized binary
3902655Sstever@eecs.umich.edumakeEnv('opt', '.o',
3913918Ssaidi@eecs.umich.edu        CCFLAGS = Split(ccflags['opt']),
3923619Sbinkertn@umich.edu        CPPDEFINES = ['TRACING_ON=1'])
393955SN/A
394955SN/A# "Fast" binary
3952655Sstever@eecs.umich.edumakeEnv('fast', '.fo', strip = True,
3963918Ssaidi@eecs.umich.edu        CCFLAGS = Split(ccflags['fast']),
3973619Sbinkertn@umich.edu        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
398955SN/A
399955SN/A# Profiled binary
4002655Sstever@eecs.umich.edumakeEnv('prof', '.po',
4013918Ssaidi@eecs.umich.edu        CCFLAGS = Split(ccflags['prof']),
4023683Sstever@eecs.umich.edu        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
4032655Sstever@eecs.umich.edu        LINKFLAGS = '-pg')
4041869SN/A
4051869SN/AReturn('envList')
406