SConscript revision 2665
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: Steve Reinhardt
30955SN/A
314762Snate@binkert.orgimport os
32955SN/Aimport sys
33955SN/Afrom os.path import isdir
344202Sbinkertn@umich.edu
354382Sbinkertn@umich.edu# This file defines how to build a particular configuration of M5
364202Sbinkertn@umich.edu# based on variable settings in the 'env' build environment.
374762Snate@binkert.org
384762Snate@binkert.org# Import build environment variable from SConstruct.
394762Snate@binkert.orgImport('env')
40955SN/A
414381Sbinkertn@umich.edu###################################################
424381Sbinkertn@umich.edu#
43955SN/A# Define needed sources.
44955SN/A#
45955SN/A###################################################
464202Sbinkertn@umich.edu
47955SN/A# Base sources used by all configurations.
484382Sbinkertn@umich.edu
494382Sbinkertn@umich.edubase_sources = Split('''
504382Sbinkertn@umich.edu	base/circlebuf.cc
514762Snate@binkert.org	base/cprintf.cc
524762Snate@binkert.org	base/fast_alloc.cc
534762Snate@binkert.org	base/fifo_buffer.cc
544762Snate@binkert.org	base/hostinfo.cc
554762Snate@binkert.org	base/hybrid_pred.cc
564762Snate@binkert.org	base/inifile.cc
574762Snate@binkert.org	base/intmath.cc
584762Snate@binkert.org	base/match.cc
594762Snate@binkert.org	base/misc.cc
604762Snate@binkert.org	base/output.cc
614762Snate@binkert.org	base/pollevent.cc
624762Snate@binkert.org	base/range.cc
634762Snate@binkert.org	base/random.cc
644762Snate@binkert.org	base/sat_counter.cc
654762Snate@binkert.org        base/serializer.cc
664762Snate@binkert.org	base/socket.cc
674762Snate@binkert.org	base/statistics.cc
684762Snate@binkert.org	base/str.cc
694762Snate@binkert.org	base/time.cc
704762Snate@binkert.org	base/trace.cc
714762Snate@binkert.org	base/traceflags.cc
724762Snate@binkert.org	base/userinfo.cc
734762Snate@binkert.org	base/compression/lzss_compression.cc
744762Snate@binkert.org	base/loader/aout_object.cc
754762Snate@binkert.org	base/loader/ecoff_object.cc
764762Snate@binkert.org	base/loader/elf_object.cc
774762Snate@binkert.org	base/loader/object_file.cc
784762Snate@binkert.org	base/loader/symtab.cc
794762Snate@binkert.org	base/stats/events.cc
804762Snate@binkert.org	base/stats/statdb.cc
814762Snate@binkert.org	base/stats/visit.cc
824762Snate@binkert.org	base/stats/text.cc
834762Snate@binkert.org
844382Sbinkertn@umich.edu	cpu/base.cc
854762Snate@binkert.org	cpu/cpu_exec_context.cc
864382Sbinkertn@umich.edu	cpu/cpuevent.cc
874762Snate@binkert.org	cpu/exetrace.cc
884381Sbinkertn@umich.edu        cpu/op_class.cc
894762Snate@binkert.org	cpu/pc_event.cc
904762Snate@binkert.org	cpu/static_inst.cc
914762Snate@binkert.org        cpu/sampler/sampler.cc
924762Snate@binkert.org    
934762Snate@binkert.org        mem/bridge.cc
944762Snate@binkert.org        mem/bus.cc
954762Snate@binkert.org        mem/connector.cc
964762Snate@binkert.org        mem/mem_object.cc
974762Snate@binkert.org        mem/packet.cc
984762Snate@binkert.org        mem/physical.cc
994762Snate@binkert.org        mem/port.cc
1004762Snate@binkert.org
1014762Snate@binkert.org	sim/builder.cc
1024762Snate@binkert.org	sim/configfile.cc
1034762Snate@binkert.org	sim/debug.cc
1044762Snate@binkert.org	sim/eventq.cc
1054762Snate@binkert.org	sim/faults.cc
1064762Snate@binkert.org	sim/main.cc
1074762Snate@binkert.org	sim/param.cc
1084762Snate@binkert.org	sim/profile.cc
1094762Snate@binkert.org	sim/root.cc
1104762Snate@binkert.org	sim/serialize.cc
1114762Snate@binkert.org	sim/sim_events.cc
1124762Snate@binkert.org	sim/sim_exit.cc
1134762Snate@binkert.org	sim/sim_object.cc
1144762Snate@binkert.org	sim/startup.cc
1154762Snate@binkert.org	sim/stat_context.cc
1164762Snate@binkert.org	sim/stat_control.cc
1174762Snate@binkert.org	sim/system.cc
1184762Snate@binkert.org	sim/trace_context.cc
1194762Snate@binkert.org        ''')
1204762Snate@binkert.org
1214762Snate@binkert.org# Old FullCPU sources
1224762Snate@binkert.orgfull_cpu_sources = Split('''
1234762Snate@binkert.org	encumbered/cpu/full/bpred.cc
1244762Snate@binkert.org	encumbered/cpu/full/commit.cc
1254762Snate@binkert.org	encumbered/cpu/full/cpu.cc
1264762Snate@binkert.org	encumbered/cpu/full/create_vector.cc
1274762Snate@binkert.org	encumbered/cpu/full/cv_spec_state.cc
1284762Snate@binkert.org	encumbered/cpu/full/dd_queue.cc
129955SN/A	encumbered/cpu/full/dep_link.cc
1304382Sbinkertn@umich.edu	encumbered/cpu/full/dispatch.cc
1314202Sbinkertn@umich.edu	encumbered/cpu/full/dyn_inst.cc
1324382Sbinkertn@umich.edu	encumbered/cpu/full/execute.cc
1334382Sbinkertn@umich.edu	encumbered/cpu/full/fetch.cc
1344382Sbinkertn@umich.edu	encumbered/cpu/full/floss_reasons.cc
1354382Sbinkertn@umich.edu	encumbered/cpu/full/fu_pool.cc
1364382Sbinkertn@umich.edu	encumbered/cpu/full/inst_fifo.cc
1374382Sbinkertn@umich.edu	encumbered/cpu/full/instpipe.cc
1384382Sbinkertn@umich.edu	encumbered/cpu/full/issue.cc
1394382Sbinkertn@umich.edu	encumbered/cpu/full/ls_queue.cc
1404382Sbinkertn@umich.edu	encumbered/cpu/full/machine_queue.cc
1412667Sstever@eecs.umich.edu        encumbered/cpu/full/pipetrace.cc
1422667Sstever@eecs.umich.edu        encumbered/cpu/full/readyq.cc
1432667Sstever@eecs.umich.edu        encumbered/cpu/full/reg_info.cc
1442667Sstever@eecs.umich.edu        encumbered/cpu/full/rob_station.cc
1452667Sstever@eecs.umich.edu        encumbered/cpu/full/spec_memory.cc
1462667Sstever@eecs.umich.edu        encumbered/cpu/full/spec_state.cc
1472037SN/A        encumbered/cpu/full/storebuffer.cc
1482037SN/A        encumbered/cpu/full/writeback.cc
1492037SN/A        encumbered/cpu/full/iq/iq_station.cc
1504382Sbinkertn@umich.edu        encumbered/cpu/full/iq/iqueue.cc
1514762Snate@binkert.org        encumbered/cpu/full/iq/segmented/chain_info.cc
1524202Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/chain_wire.cc
1534382Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/iq_seg.cc
1544202Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/iq_segmented.cc
1554202Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/seg_chain.cc
1564202Sbinkertn@umich.edu        encumbered/cpu/full/iq/seznec/iq_seznec.cc
1574202Sbinkertn@umich.edu        encumbered/cpu/full/iq/standard/iq_standard.cc
1584202Sbinkertn@umich.edu        ''')
1594762Snate@binkert.org
1604202Sbinkertn@umich.edutrace_reader_sources = Split('''
1614202Sbinkertn@umich.edu        cpu/trace/reader/mem_trace_reader.cc
1624202Sbinkertn@umich.edu        cpu/trace/reader/ibm_reader.cc
1634202Sbinkertn@umich.edu        cpu/trace/reader/itx_reader.cc
1644202Sbinkertn@umich.edu        cpu/trace/reader/m5_reader.cc
1651858SN/A        cpu/trace/opt_cpu.cc
1664773Snate@binkert.org        cpu/trace/trace_cpu.cc
1674773Snate@binkert.org        ''')
1684773Snate@binkert.org
1694773Snate@binkert.org
1704773Snate@binkert.org
1714773Snate@binkert.org# MySql sources
1724773Snate@binkert.orgmysql_sources = Split('''
1734773Snate@binkert.org	base/mysql.cc
1744773Snate@binkert.org	base/stats/mysql.cc
1751858SN/A        ''')
1761858SN/A
1771085SN/A# Full-system sources
1784382Sbinkertn@umich.edufull_system_sources = Split('''
1794382Sbinkertn@umich.edu	base/crc.cc
1804762Snate@binkert.org	base/inet.cc
1814762Snate@binkert.org	base/remote_gdb.cc
1824762Snate@binkert.org
1834762Snate@binkert.org	cpu/intr_control.cc
1844762Snate@binkert.org        cpu/profile.cc
1854762Snate@binkert.org
1864762Snate@binkert.org	dev/alpha_console.cc
1874762Snate@binkert.org	dev/baddev.cc
1884762Snate@binkert.org	dev/disk_image.cc
1894762Snate@binkert.org	dev/etherbus.cc
1904762Snate@binkert.org	dev/etherdump.cc
1914762Snate@binkert.org	dev/etherint.cc
1924762Snate@binkert.org	dev/etherlink.cc
1934762Snate@binkert.org	dev/etherpkt.cc
1944762Snate@binkert.org	dev/ethertap.cc	
1954762Snate@binkert.org        dev/ide_ctrl.cc
1964762Snate@binkert.org	dev/ide_disk.cc
1974762Snate@binkert.org	dev/io_device.cc
1984762Snate@binkert.org	dev/isa_fake.cc
1994762Snate@binkert.org	dev/ns_gige.cc
2004762Snate@binkert.org	dev/pciconfigall.cc
2014762Snate@binkert.org	dev/pcidev.cc
2024762Snate@binkert.org	dev/pcifake.cc
2034762Snate@binkert.org	dev/pktfifo.cc
2044762Snate@binkert.org	dev/platform.cc
2054762Snate@binkert.org        dev/simconsole.cc
2064762Snate@binkert.org	dev/simple_disk.cc
2074762Snate@binkert.org	dev/sinic.cc
2084762Snate@binkert.org	dev/tsunami.cc
2094762Snate@binkert.org	dev/tsunami_cchip.cc
2104762Snate@binkert.org	dev/tsunami_io.cc
2114762Snate@binkert.org	dev/tsunami_fake.cc
2124762Snate@binkert.org	dev/tsunami_pchip.cc
2134762Snate@binkert.org
2144762Snate@binkert.org	dev/uart.cc
2154382Sbinkertn@umich.edu	dev/uart8250.cc
2164382Sbinkertn@umich.edu
2174762Snate@binkert.org	kern/kernel_binning.cc
2184762Snate@binkert.org	kern/kernel_stats.cc
2194762Snate@binkert.org	kern/system_events.cc
2204382Sbinkertn@umich.edu	kern/linux/events.cc
2214382Sbinkertn@umich.edu	kern/linux/linux_syscalls.cc
2224762Snate@binkert.org	kern/linux/printk.cc
2234382Sbinkertn@umich.edu
2244382Sbinkertn@umich.edu        mem/vport.cc
2254762Snate@binkert.org
2264382Sbinkertn@umich.edu	sim/pseudo_inst.cc
2274382Sbinkertn@umich.edu        ''')
2284762Snate@binkert.org
2294382Sbinkertn@umich.edu
2304762Snate@binkert.orgif env['TARGET_ISA'] == 'alpha':
2314762Snate@binkert.org    full_system_sources += Split('''
2324382Sbinkertn@umich.edu	kern/tru64/dump_mbuf.cc
2334382Sbinkertn@umich.edu	kern/tru64/printf.cc
2344762Snate@binkert.org	kern/tru64/tru64_events.cc
2354762Snate@binkert.org	kern/tru64/tru64_syscalls.cc
2364762Snate@binkert.org        ''')
2374762Snate@binkert.org
2384762Snate@binkert.org# turbolaser encumbered sources
2394762Snate@binkert.orgturbolaser_sources = Split('''
2404762Snate@binkert.org	encumbered/dev/dma.cc
2414762Snate@binkert.org	encumbered/dev/etherdev.cc
2424762Snate@binkert.org	encumbered/dev/scsi.cc
2434762Snate@binkert.org	encumbered/dev/scsi_ctrl.cc
2444762Snate@binkert.org	encumbered/dev/scsi_disk.cc
2454762Snate@binkert.org	encumbered/dev/scsi_none.cc
2464762Snate@binkert.org	encumbered/dev/tlaser_clock.cc
2474762Snate@binkert.org	encumbered/dev/tlaser_ipi.cc
2484762Snate@binkert.org	encumbered/dev/tlaser_mbox.cc
2494762Snate@binkert.org	encumbered/dev/tlaser_mc146818.cc
2504762Snate@binkert.org	encumbered/dev/tlaser_node.cc
2514762Snate@binkert.org	encumbered/dev/tlaser_pcia.cc
2524762Snate@binkert.org	encumbered/dev/tlaser_pcidev.cc
2534762Snate@binkert.org	encumbered/dev/tlaser_serial.cc
2544762Snate@binkert.org	encumbered/dev/turbolaser.cc
2554762Snate@binkert.org	encumbered/dev/uart8530.cc
2564762Snate@binkert.org        ''')
2574762Snate@binkert.org
2584762Snate@binkert.org# Syscall emulation (non-full-system) sources
2594762Snate@binkert.orgsyscall_emulation_sources = Split('''
2604762Snate@binkert.org        mem/translating_port.cc
2614762Snate@binkert.org        mem/page_table.cc
2624762Snate@binkert.org	sim/process.cc
2634762Snate@binkert.org	sim/syscall_emul.cc
2644762Snate@binkert.org        ''')
2654762Snate@binkert.org
2664762Snate@binkert.org#if env['TARGET_ISA'] == 'alpha':
2674762Snate@binkert.org#    syscall_emulation_sources += Split('''
2684762Snate@binkert.org#        kern/tru64/tru64.cc
2694762Snate@binkert.org#        ''')
2704762Snate@binkert.org
2714762Snate@binkert.orgalpha_eio_sources = Split('''
2724762Snate@binkert.org	encumbered/eio/exolex.cc
2734762Snate@binkert.org	encumbered/eio/libexo.cc
2744762Snate@binkert.org	encumbered/eio/eio.cc
2754762Snate@binkert.org        ''')
2764762Snate@binkert.org
2774762Snate@binkert.orgif env['TARGET_ISA'] == 'ALPHA_ISA':
2784762Snate@binkert.org    syscall_emulation_sources += alpha_eio_sources
2794762Snate@binkert.org    
2804762Snate@binkert.orgmemtest_sources = Split('''
2814762Snate@binkert.org	cpu/memtest/memtest.cc
2824762Snate@binkert.org        ''')
2834382Sbinkertn@umich.edu
2844762Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation
2854382Sbinkertn@umich.eduenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])
2864762Snate@binkert.org
2874382Sbinkertn@umich.eduarch_sources = SConscript('arch/SConscript',
2884762Snate@binkert.org                          exports = 'env', duplicate = False)
2894762Snate@binkert.org
2904762Snate@binkert.orgcpu_sources = SConscript('cpu/SConscript',
2914762Snate@binkert.org                         exports = 'env', duplicate = False)
2924382Sbinkertn@umich.edu
2934382Sbinkertn@umich.edu# This is outside of cpu/SConscript since the source directory isn't
2944382Sbinkertn@umich.edu# underneath 'cpu'.
2954382Sbinkertn@umich.eduif 'FullCPU' in env['CPU_MODELS']:
2964382Sbinkertn@umich.edu    cpu_sources += full_cpu_sources
2974382Sbinkertn@umich.edu
2984762Snate@binkert.org# Set up complete list of sources based on configuration.
2994382Sbinkertn@umich.edusources = base_sources + arch_sources + cpu_sources
3004382Sbinkertn@umich.edu
3014382Sbinkertn@umich.eduif env['FULL_SYSTEM']:
3024382Sbinkertn@umich.edu    sources += full_system_sources
3034762Snate@binkert.org    if env['ALPHA_TLASER']:
3044762Snate@binkert.org        sources += turbolaser_sources
3054762Snate@binkert.orgelse:
3064382Sbinkertn@umich.edu    sources += syscall_emulation_sources
3074762Snate@binkert.org
3084382Sbinkertn@umich.eduif env['USE_MYSQL']:
3094382Sbinkertn@umich.edu    sources += mysql_sources
3104382Sbinkertn@umich.edu
3114762Snate@binkert.orgfor opt in env.ExportOptions:
3124762Snate@binkert.org    env.ConfigFile(opt)
3134382Sbinkertn@umich.edu
3144382Sbinkertn@umich.edu###################################################
3154382Sbinkertn@umich.edu#
3164762Snate@binkert.org# Special build rules.
3174382Sbinkertn@umich.edu#
3184382Sbinkertn@umich.edu###################################################
3194762Snate@binkert.org
3204762Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py.
3214762Snate@binkert.org# $TARGET.base will expand to "<build-dir>/base/traceflags".
3224382Sbinkertn@umich.eduenv.Command(Split('base/traceflags.hh base/traceflags.cc'),
3234382Sbinkertn@umich.edu            'base/traceflags.py',
3244382Sbinkertn@umich.edu            'python $SOURCE $TARGET.base')
3254382Sbinkertn@umich.edu
3264382Sbinkertn@umich.eduSConscript('python/SConscript', exports = ['env'], duplicate=0)
3274382Sbinkertn@umich.edu
3284382Sbinkertn@umich.edu# This function adds the specified sources to the given build
3294382Sbinkertn@umich.edu# environment, and returns a list of all the corresponding SCons
3304382Sbinkertn@umich.edu# Object nodes (including an extra one for date.cc).  We explicitly
3314382Sbinkertn@umich.edu# add the Object nodes so we can set up special dependencies for
332955SN/A# date.cc.
333955SN/Adef make_objs(sources, env):
334955SN/A    objs = [env.Object(s) for s in sources]
335955SN/A    # make date.cc depend on all other objects so it always gets
3361108SN/A    # recompiled whenever anything else does
337955SN/A    date_obj = env.Object('base/date.cc')
338955SN/A    env.Depends(date_obj, objs)
339955SN/A    objs.append(date_obj)
340955SN/A    return objs
341955SN/A
342955SN/A###################################################
343955SN/A#
344955SN/A# Define binaries.  Each different build type (debug, opt, etc.) gets
345955SN/A# a slightly different build environment.
3462655Sstever@eecs.umich.edu#
3472655Sstever@eecs.umich.edu###################################################
3482655Sstever@eecs.umich.edu
3492655Sstever@eecs.umich.edu# Include file paths are rooted in this directory.  SCons will
3502655Sstever@eecs.umich.edu# automatically expand '.' to refer to both the source directory and
3512655Sstever@eecs.umich.edu# the corresponding build directory to pick up generated include
3522655Sstever@eecs.umich.edu# files.
3532655Sstever@eecs.umich.eduenv.Append(CPPPATH='.')
3542655Sstever@eecs.umich.edu
3552655Sstever@eecs.umich.edu# List of constructed environments to pass back to SConstruct
3564762Snate@binkert.orgenvList = []
3572655Sstever@eecs.umich.edu
3582655Sstever@eecs.umich.edu# Function to create a new build environment as clone of current
3594007Ssaidi@eecs.umich.edu# environment 'env' with modified object suffix and optional stripped
3604596Sbinkertn@umich.edu# binary.  Additional keyword arguments are appended to corresponding
3614007Ssaidi@eecs.umich.edu# build environment vars.
3624596Sbinkertn@umich.edudef makeEnv(label, objsfx, strip = False, **kwargs):
3634596Sbinkertn@umich.edu    newEnv = env.Copy(OBJSUFFIX=objsfx)
3642655Sstever@eecs.umich.edu    newEnv.Label = label
3654382Sbinkertn@umich.edu    newEnv.Append(**kwargs)
3662655Sstever@eecs.umich.edu    exe = 'm5.' + label  # final executable
3672655Sstever@eecs.umich.edu    bin = exe + '.bin'   # executable w/o appended Python zip archive
3682655Sstever@eecs.umich.edu    newEnv.Program(bin, make_objs(sources, newEnv))
369955SN/A    if strip:
3703918Ssaidi@eecs.umich.edu        stripped_bin = bin + '.stripped'
3713918Ssaidi@eecs.umich.edu        newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET')
3723918Ssaidi@eecs.umich.edu        bin = stripped_bin
3733918Ssaidi@eecs.umich.edu    targets = newEnv.Concat(exe, [bin, 'python/m5py.zip'])
3743918Ssaidi@eecs.umich.edu    newEnv.M5Binary = targets[0]
3753918Ssaidi@eecs.umich.edu    envList.append(newEnv)
3763918Ssaidi@eecs.umich.edu
3773918Ssaidi@eecs.umich.edu# Debug binary
3783918Ssaidi@eecs.umich.edumakeEnv('debug', '.do',
3793918Ssaidi@eecs.umich.edu        CCFLAGS = Split('-g3 -gdwarf-2 -O0'),
3803918Ssaidi@eecs.umich.edu        CPPDEFINES = 'DEBUG')
3813918Ssaidi@eecs.umich.edu
3823918Ssaidi@eecs.umich.edu# Optimized binary
3833918Ssaidi@eecs.umich.edumakeEnv('opt', '.o',
3843940Ssaidi@eecs.umich.edu        CCFLAGS = Split('-g -O3'))
3853940Ssaidi@eecs.umich.edu
3863940Ssaidi@eecs.umich.edu# "Fast" binary
3873942Ssaidi@eecs.umich.edumakeEnv('fast', '.fo', strip = True,
3883940Ssaidi@eecs.umich.edu        CCFLAGS = Split('-O3'),
3893515Ssaidi@eecs.umich.edu        CPPDEFINES = 'NDEBUG')
3903918Ssaidi@eecs.umich.edu
3914762Snate@binkert.org# Profiled binary
3923515Ssaidi@eecs.umich.edumakeEnv('prof', '.po',
3932655Sstever@eecs.umich.edu        CCFLAGS = Split('-O3 -g -pg'),
3943918Ssaidi@eecs.umich.edu        LINKFLAGS = '-pg')
3953619Sbinkertn@umich.edu
396955SN/AReturn('envList')
397955SN/A