SConscript revision 2568
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.orgimport os 30955SN/Aimport sys 315522Snate@binkert.orgfrom os.path import isdir 326143Snate@binkert.org 334762Snate@binkert.org# This file defines how to build a particular configuration of M5 345522Snate@binkert.org# based on variable settings in the 'env' build environment. 35955SN/A 365522Snate@binkert.org# Import build environment variable from SConstruct. 37955SN/AImport('env') 385522Snate@binkert.org 394202Sbinkertn@umich.edu################################################### 405742Snate@binkert.org# 41955SN/A# Define needed sources. 424381Sbinkertn@umich.edu# 434381Sbinkertn@umich.edu################################################### 448334Snate@binkert.org 45955SN/A# Base sources used by all configurations. 46955SN/A 474202Sbinkertn@umich.edubase_sources = Split(''' 48955SN/A base/circlebuf.cc 494382Sbinkertn@umich.edu base/copyright.cc 504382Sbinkertn@umich.edu base/cprintf.cc 514382Sbinkertn@umich.edu base/embedfile.cc 526654Snate@binkert.org base/fast_alloc.cc 535517Snate@binkert.org base/fifo_buffer.cc 548614Sgblack@eecs.umich.edu base/hostinfo.cc 557674Snate@binkert.org base/hybrid_pred.cc 566143Snate@binkert.org base/inifile.cc 576143Snate@binkert.org base/intmath.cc 586143Snate@binkert.org base/match.cc 598233Snate@binkert.org base/misc.cc 608233Snate@binkert.org base/output.cc 618233Snate@binkert.org base/pollevent.cc 628233Snate@binkert.org base/range.cc 638233Snate@binkert.org base/random.cc 648334Snate@binkert.org base/sat_counter.cc 658334Snate@binkert.org base/socket.cc 668233Snate@binkert.org base/statistics.cc 678233Snate@binkert.org base/str.cc 688233Snate@binkert.org base/time.cc 698233Snate@binkert.org base/trace.cc 708233Snate@binkert.org base/traceflags.cc 718233Snate@binkert.org base/userinfo.cc 726143Snate@binkert.org base/compression/lzss_compression.cc 738233Snate@binkert.org base/loader/aout_object.cc 748233Snate@binkert.org base/loader/ecoff_object.cc 758233Snate@binkert.org base/loader/elf_object.cc 766143Snate@binkert.org base/loader/object_file.cc 776143Snate@binkert.org base/loader/symtab.cc 786143Snate@binkert.org base/stats/events.cc 796143Snate@binkert.org base/stats/statdb.cc 808233Snate@binkert.org base/stats/visit.cc 818233Snate@binkert.org base/stats/text.cc 828233Snate@binkert.org 836143Snate@binkert.org cpu/base.cc 848233Snate@binkert.org cpu/cpu_exec_context.cc 858233Snate@binkert.org cpu/exetrace.cc 868233Snate@binkert.org cpu/op_class.cc 878233Snate@binkert.org cpu/pc_event.cc 886143Snate@binkert.org cpu/static_inst.cc 896143Snate@binkert.org cpu/sampler/sampler.cc 906143Snate@binkert.org 914762Snate@binkert.org mem/bridge.cc 926143Snate@binkert.org mem/bus.cc 938233Snate@binkert.org mem/connector.cc 948233Snate@binkert.org mem/mem_object.cc 958233Snate@binkert.org mem/packet.cc 968233Snate@binkert.org mem/physical.cc 978233Snate@binkert.org mem/port.cc 986143Snate@binkert.org mem/request.cc 998233Snate@binkert.org 1008233Snate@binkert.org python/pyconfig.cc 1018233Snate@binkert.org python/embedded_py.cc 1028233Snate@binkert.org 1036143Snate@binkert.org sim/builder.cc 1046143Snate@binkert.org sim/configfile.cc 1056143Snate@binkert.org sim/debug.cc 1066143Snate@binkert.org sim/eventq.cc 1076143Snate@binkert.org sim/faults.cc 1086143Snate@binkert.org sim/main.cc 1096143Snate@binkert.org sim/param.cc 1106143Snate@binkert.org sim/profile.cc 1116143Snate@binkert.org sim/root.cc 1127065Snate@binkert.org sim/serialize.cc 1136143Snate@binkert.org sim/sim_events.cc 1148233Snate@binkert.org sim/sim_exit.cc 1158233Snate@binkert.org sim/sim_object.cc 1168233Snate@binkert.org sim/startup.cc 1178233Snate@binkert.org sim/stat_context.cc 1188233Snate@binkert.org sim/stat_control.cc 1198233Snate@binkert.org sim/system.cc 1208233Snate@binkert.org sim/trace_context.cc 1218233Snate@binkert.org ''') 1228233Snate@binkert.org 1238233Snate@binkert.org# Old FullCPU sources 1248233Snate@binkert.orgfull_cpu_sources = Split(''' 1258233Snate@binkert.org encumbered/cpu/full/bpred.cc 1268233Snate@binkert.org encumbered/cpu/full/commit.cc 1278233Snate@binkert.org encumbered/cpu/full/cpu.cc 1288233Snate@binkert.org encumbered/cpu/full/create_vector.cc 1298233Snate@binkert.org encumbered/cpu/full/cv_spec_state.cc 1308233Snate@binkert.org encumbered/cpu/full/dd_queue.cc 1318233Snate@binkert.org encumbered/cpu/full/dep_link.cc 1328233Snate@binkert.org encumbered/cpu/full/dispatch.cc 1338233Snate@binkert.org encumbered/cpu/full/dyn_inst.cc 1348233Snate@binkert.org encumbered/cpu/full/execute.cc 1358233Snate@binkert.org encumbered/cpu/full/fetch.cc 1368233Snate@binkert.org encumbered/cpu/full/floss_reasons.cc 1378233Snate@binkert.org encumbered/cpu/full/fu_pool.cc 1388233Snate@binkert.org encumbered/cpu/full/inst_fifo.cc 1398233Snate@binkert.org encumbered/cpu/full/instpipe.cc 1408233Snate@binkert.org encumbered/cpu/full/issue.cc 1418233Snate@binkert.org encumbered/cpu/full/ls_queue.cc 1428233Snate@binkert.org encumbered/cpu/full/machine_queue.cc 1438233Snate@binkert.org encumbered/cpu/full/pipetrace.cc 1448233Snate@binkert.org encumbered/cpu/full/readyq.cc 1456143Snate@binkert.org encumbered/cpu/full/reg_info.cc 1466143Snate@binkert.org encumbered/cpu/full/rob_station.cc 1476143Snate@binkert.org encumbered/cpu/full/spec_memory.cc 1486143Snate@binkert.org encumbered/cpu/full/spec_state.cc 1496143Snate@binkert.org encumbered/cpu/full/storebuffer.cc 1506143Snate@binkert.org encumbered/cpu/full/writeback.cc 1516143Snate@binkert.org encumbered/cpu/full/iq/iq_station.cc 1526143Snate@binkert.org encumbered/cpu/full/iq/iqueue.cc 1536143Snate@binkert.org encumbered/cpu/full/iq/segmented/chain_info.cc 1548945Ssteve.reinhardt@amd.com encumbered/cpu/full/iq/segmented/chain_wire.cc 1558233Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_seg.cc 1568233Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_segmented.cc 1576143Snate@binkert.org encumbered/cpu/full/iq/segmented/seg_chain.cc 1588945Ssteve.reinhardt@amd.com encumbered/cpu/full/iq/seznec/iq_seznec.cc 1596143Snate@binkert.org encumbered/cpu/full/iq/standard/iq_standard.cc 1606143Snate@binkert.org ''') 1616143Snate@binkert.org 1626143Snate@binkert.orgtrace_reader_sources = Split(''' 1635522Snate@binkert.org cpu/trace/reader/mem_trace_reader.cc 1646143Snate@binkert.org cpu/trace/reader/ibm_reader.cc 1656143Snate@binkert.org cpu/trace/reader/itx_reader.cc 1666143Snate@binkert.org cpu/trace/reader/m5_reader.cc 1676143Snate@binkert.org cpu/trace/opt_cpu.cc 1688233Snate@binkert.org cpu/trace/trace_cpu.cc 1698233Snate@binkert.org ''') 1708233Snate@binkert.org 1716143Snate@binkert.org 1726143Snate@binkert.org 1736143Snate@binkert.org# MySql sources 1746143Snate@binkert.orgmysql_sources = Split(''' 1755522Snate@binkert.org base/mysql.cc 1765522Snate@binkert.org base/stats/mysql.cc 1775522Snate@binkert.org ''') 1785522Snate@binkert.org 1795604Snate@binkert.org# Full-system sources 1805604Snate@binkert.orgfull_system_sources = Split(''' 1816143Snate@binkert.org base/crc.cc 1826143Snate@binkert.org base/inet.cc 1834762Snate@binkert.org base/remote_gdb.cc 1844762Snate@binkert.org 1856143Snate@binkert.org cpu/intr_control.cc 1866727Ssteve.reinhardt@amd.com cpu/profile.cc 1876727Ssteve.reinhardt@amd.com 1886727Ssteve.reinhardt@amd.com dev/alpha_console.cc 1894762Snate@binkert.org dev/baddev.cc 1906143Snate@binkert.org dev/disk_image.cc 1916143Snate@binkert.org dev/etherbus.cc 1926143Snate@binkert.org dev/etherdump.cc 1936143Snate@binkert.org dev/etherint.cc 1946727Ssteve.reinhardt@amd.com dev/etherlink.cc 1956143Snate@binkert.org dev/etherpkt.cc 1967674Snate@binkert.org dev/ethertap.cc 1977674Snate@binkert.org dev/ide_ctrl.cc 1985604Snate@binkert.org dev/ide_disk.cc 1996143Snate@binkert.org dev/io_device.cc 2006143Snate@binkert.org dev/isa_fake.cc 2016143Snate@binkert.org dev/ns_gige.cc 2024762Snate@binkert.org dev/pciconfigall.cc 2036143Snate@binkert.org dev/pcidev.cc 2044762Snate@binkert.org dev/pcifake.cc 2054762Snate@binkert.org dev/pktfifo.cc 2064762Snate@binkert.org dev/platform.cc 2076143Snate@binkert.org dev/simconsole.cc 2086143Snate@binkert.org dev/simple_disk.cc 2094762Snate@binkert.org dev/sinic.cc 2108233Snate@binkert.org dev/tsunami.cc 2118233Snate@binkert.org dev/tsunami_cchip.cc 2128233Snate@binkert.org dev/tsunami_io.cc 2138233Snate@binkert.org dev/tsunami_fake.cc 2146143Snate@binkert.org dev/tsunami_pchip.cc 2156143Snate@binkert.org 2164762Snate@binkert.org dev/uart.cc 2176143Snate@binkert.org dev/uart8250.cc 2184762Snate@binkert.org 2196143Snate@binkert.org kern/kernel_binning.cc 2204762Snate@binkert.org kern/kernel_stats.cc 2216143Snate@binkert.org kern/system_events.cc 2228233Snate@binkert.org kern/linux/events.cc 2238233Snate@binkert.org kern/linux/linux_syscalls.cc 2248233Snate@binkert.org kern/linux/printk.cc 2256143Snate@binkert.org 2266143Snate@binkert.org mem/vport.cc 2276143Snate@binkert.org 2286143Snate@binkert.org sim/pseudo_inst.cc 2296143Snate@binkert.org ''') 2306143Snate@binkert.org 2316143Snate@binkert.org 2326143Snate@binkert.orgif env['TARGET_ISA'] == 'alpha': 2338233Snate@binkert.org full_system_sources += Split(''' 2348233Snate@binkert.org kern/tru64/dump_mbuf.cc 235955SN/A kern/tru64/printf.cc 2369396Sandreas.hansson@arm.com kern/tru64/tru64_events.cc 2379396Sandreas.hansson@arm.com kern/tru64/tru64_syscalls.cc 2389396Sandreas.hansson@arm.com ''') 2399396Sandreas.hansson@arm.com 2409396Sandreas.hansson@arm.com# turbolaser encumbered sources 2419396Sandreas.hansson@arm.comturbolaser_sources = Split(''' 2429396Sandreas.hansson@arm.com encumbered/dev/dma.cc 2439396Sandreas.hansson@arm.com encumbered/dev/etherdev.cc 2449396Sandreas.hansson@arm.com encumbered/dev/scsi.cc 2459396Sandreas.hansson@arm.com encumbered/dev/scsi_ctrl.cc 2469396Sandreas.hansson@arm.com encumbered/dev/scsi_disk.cc 2479396Sandreas.hansson@arm.com encumbered/dev/scsi_none.cc 2489396Sandreas.hansson@arm.com encumbered/dev/tlaser_clock.cc 2499396Sandreas.hansson@arm.com encumbered/dev/tlaser_ipi.cc 2509396Sandreas.hansson@arm.com encumbered/dev/tlaser_mbox.cc 2519396Sandreas.hansson@arm.com encumbered/dev/tlaser_mc146818.cc 2528235Snate@binkert.org encumbered/dev/tlaser_node.cc 2538235Snate@binkert.org encumbered/dev/tlaser_pcia.cc 2546143Snate@binkert.org encumbered/dev/tlaser_pcidev.cc 2558235Snate@binkert.org encumbered/dev/tlaser_serial.cc 2569003SAli.Saidi@ARM.com encumbered/dev/turbolaser.cc 2578235Snate@binkert.org encumbered/dev/uart8530.cc 2588235Snate@binkert.org ''') 2598235Snate@binkert.org 2608235Snate@binkert.org# Syscall emulation (non-full-system) sources 2618235Snate@binkert.orgsyscall_emulation_sources = Split(''' 2628235Snate@binkert.org mem/translating_port.cc 2638235Snate@binkert.org mem/page_table.cc 2648235Snate@binkert.org sim/process.cc 2658235Snate@binkert.org sim/syscall_emul.cc 2668235Snate@binkert.org ''') 2678235Snate@binkert.org 2688235Snate@binkert.org#if env['TARGET_ISA'] == 'alpha': 2698235Snate@binkert.org# syscall_emulation_sources += Split(''' 2708235Snate@binkert.org# kern/tru64/tru64.cc 2719003SAli.Saidi@ARM.com# ''') 2728235Snate@binkert.org 2735584Snate@binkert.orgalpha_eio_sources = Split(''' 2744382Sbinkertn@umich.edu encumbered/eio/exolex.cc 2754202Sbinkertn@umich.edu encumbered/eio/libexo.cc 2764382Sbinkertn@umich.edu encumbered/eio/eio.cc 2774382Sbinkertn@umich.edu ''') 2784382Sbinkertn@umich.edu 2799396Sandreas.hansson@arm.comif env['TARGET_ISA'] == 'ALPHA_ISA': 2805584Snate@binkert.org syscall_emulation_sources += alpha_eio_sources 2814382Sbinkertn@umich.edu 2824382Sbinkertn@umich.edumemtest_sources = Split(''' 2834382Sbinkertn@umich.edu cpu/memtest/memtest.cc 2848232Snate@binkert.org ''') 2855192Ssaidi@eecs.umich.edu 2868232Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation 2878232Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 2888232Snate@binkert.org 2895192Ssaidi@eecs.umich.eduarch_sources = SConscript('arch/SConscript', 2908232Snate@binkert.org exports = 'env', duplicate = False) 2915192Ssaidi@eecs.umich.edu 2925799Snate@binkert.orgcpu_sources = SConscript('cpu/SConscript', 2938232Snate@binkert.org exports = 'env', duplicate = False) 2945192Ssaidi@eecs.umich.edu 2955192Ssaidi@eecs.umich.edu# This is outside of cpu/SConscript since the source directory isn't 2965192Ssaidi@eecs.umich.edu# underneath 'cpu'. 2978232Snate@binkert.orgif 'FullCPU' in env['CPU_MODELS']: 2985192Ssaidi@eecs.umich.edu cpu_sources += full_cpu_sources 2998232Snate@binkert.org 3005192Ssaidi@eecs.umich.edu# Set up complete list of sources based on configuration. 3015192Ssaidi@eecs.umich.edusources = base_sources + arch_sources + cpu_sources 3025192Ssaidi@eecs.umich.edu 3035192Ssaidi@eecs.umich.eduif env['FULL_SYSTEM']: 3044382Sbinkertn@umich.edu sources += full_system_sources 3054382Sbinkertn@umich.edu if env['ALPHA_TLASER']: 3064382Sbinkertn@umich.edu sources += turbolaser_sources 3072667Sstever@eecs.umich.eduelse: 3082667Sstever@eecs.umich.edu sources += syscall_emulation_sources 3092667Sstever@eecs.umich.edu 3102667Sstever@eecs.umich.eduif env['USE_MYSQL']: 3112667Sstever@eecs.umich.edu sources += mysql_sources 3122667Sstever@eecs.umich.edu 3135742Snate@binkert.orgfor opt in env.ExportOptions: 3145742Snate@binkert.org env.ConfigFile(opt) 3155742Snate@binkert.org 3165793Snate@binkert.org################################################### 3178334Snate@binkert.org# 3185793Snate@binkert.org# Special build rules. 3195793Snate@binkert.org# 3205793Snate@binkert.org################################################### 3214382Sbinkertn@umich.edu 3224762Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py. 3235344Sstever@gmail.com# $TARGET.base will expand to "<build-dir>/base/traceflags". 3244382Sbinkertn@umich.eduenv.Command(Split('base/traceflags.hh base/traceflags.cc'), 3255341Sstever@gmail.com 'base/traceflags.py', 3265742Snate@binkert.org 'python $SOURCE $TARGET.base') 3275742Snate@binkert.org 3285742Snate@binkert.org# libelf build is described in its own SConscript file. 3295742Snate@binkert.org# SConscript-local is the per-config build, which just copies some 3305742Snate@binkert.org# header files into a place where they can be found. 3314762Snate@binkert.orgSConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 3325742Snate@binkert.orgSConscript('python/SConscript', exports = ['env'], duplicate=0) 3335742Snate@binkert.org 3347722Sgblack@eecs.umich.edu# This function adds the specified sources to the given build 3355742Snate@binkert.org# environment, and returns a list of all the corresponding SCons 3365742Snate@binkert.org# Object nodes (including an extra one for date.cc). We explicitly 3375742Snate@binkert.org# add the Object nodes so we can set up special dependencies for 3385742Snate@binkert.org# date.cc. 3398242Sbradley.danofsky@amd.comdef make_objs(sources, env): 3408242Sbradley.danofsky@amd.com objs = [env.Object(s) for s in sources] 3418242Sbradley.danofsky@amd.com # make date.cc depend on all other objects so it always gets 3428242Sbradley.danofsky@amd.com # recompiled whenever anything else does 3435341Sstever@gmail.com date_obj = env.Object('base/date.cc') 3445742Snate@binkert.org env.Depends(date_obj, objs) 3457722Sgblack@eecs.umich.edu objs.append(date_obj) 3464773Snate@binkert.org return objs 3476108Snate@binkert.org 3481858SN/A################################################### 3491085SN/A# 3506658Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 3516658Snate@binkert.org# a slightly different build environment. 3527673Snate@binkert.org# 3536658Snate@binkert.org################################################### 3546658Snate@binkert.org 3556658Snate@binkert.org# Include file paths are rooted in this directory. SCons will 3566658Snate@binkert.org# automatically expand '.' to refer to both the source directory and 3576658Snate@binkert.org# the corresponding build directory to pick up generated include 3586658Snate@binkert.org# files. 3596658Snate@binkert.orgenv.Append(CPPPATH='.') 3607673Snate@binkert.orgenv.Append(CPPPATH='./libelf') 3617673Snate@binkert.org 3627673Snate@binkert.org# Debug binary 3637673Snate@binkert.orgdebugEnv = env.Copy(OBJSUFFIX='.do') 3647673Snate@binkert.orgdebugEnv.Label = 'debug' 3657673Snate@binkert.orgdebugEnv.Append(CCFLAGS=Split('-g3 -gdwarf-2 -O0')) 3667673Snate@binkert.orgdebugEnv.Append(CPPDEFINES='DEBUG') 3676658Snate@binkert.orgtlist = debugEnv.Program(target = 'm5.debug', 3687673Snate@binkert.org source = make_objs(sources, debugEnv)) 3697673Snate@binkert.orgdebugEnv.M5Binary = tlist[0] 3707673Snate@binkert.org 3717673Snate@binkert.org# Optimized binary 3727673Snate@binkert.orgoptEnv = env.Copy() 3737673Snate@binkert.orgoptEnv.Label = 'opt' 3749048SAli.Saidi@ARM.comoptEnv.Append(CCFLAGS=Split('-g -O3')) 3757673Snate@binkert.orgtlist = optEnv.Program(target = 'm5.opt', 3767673Snate@binkert.org source = make_objs(sources, optEnv)) 3777673Snate@binkert.orgoptEnv.M5Binary = tlist[0] 3787673Snate@binkert.org 3796658Snate@binkert.org# "Fast" binary 3807756SAli.Saidi@ARM.comfastEnv = env.Copy(OBJSUFFIX='.fo') 3817816Ssteve.reinhardt@amd.comfastEnv.Label = 'fast' 3826658Snate@binkert.orgfastEnv.Append(CCFLAGS=Split('-O3')) 3834382Sbinkertn@umich.edufastEnv.Append(CPPDEFINES='NDEBUG') 3844382Sbinkertn@umich.edufastEnv.Program(target = 'm5.fast.unstripped', 3854762Snate@binkert.org source = make_objs(sources, fastEnv)) 3864762Snate@binkert.orgtlist = fastEnv.Command(target = 'm5.fast', 3874762Snate@binkert.org source = 'm5.fast.unstripped', 3886654Snate@binkert.org action = 'strip $SOURCE -o $TARGET') 3896654Snate@binkert.orgfastEnv.M5Binary = tlist[0] 3905517Snate@binkert.org 3915517Snate@binkert.org# Profiled binary 3925517Snate@binkert.orgprofEnv = env.Copy(OBJSUFFIX='.po') 3935517Snate@binkert.orgprofEnv.Label = 'prof' 3945517Snate@binkert.orgprofEnv.Append(CCFLAGS=Split('-O3 -g -pg'), LINKFLAGS='-pg') 3955517Snate@binkert.orgtlist = profEnv.Program(target = 'm5.prof', 3965517Snate@binkert.org source = make_objs(sources, profEnv)) 3975517Snate@binkert.orgprofEnv.M5Binary = tlist[0] 3985517Snate@binkert.org 3995517Snate@binkert.orgenvList = [debugEnv, optEnv, fastEnv, profEnv] 4005517Snate@binkert.org 4015517Snate@binkert.orgReturn('envList') 4025517Snate@binkert.org