SConscript revision 3515
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 315522Snate@binkert.orgimport os 326143Snate@binkert.orgimport sys 334762Snate@binkert.orgfrom os.path import isdir 345522Snate@binkert.org 35955SN/A# This file defines how to build a particular configuration of M5 365522Snate@binkert.org# based on variable settings in the 'env' build environment. 37955SN/A 385522Snate@binkert.org# Import build environment variable from SConstruct. 394202Sbinkertn@umich.eduImport('env') 405742Snate@binkert.org 41955SN/A################################################### 424381Sbinkertn@umich.edu# 434381Sbinkertn@umich.edu# Define needed sources. 448334Snate@binkert.org# 45955SN/A################################################### 46955SN/A 474202Sbinkertn@umich.edu# Base sources used by all configurations. 48955SN/A 494382Sbinkertn@umich.edubase_sources = Split(''' 504382Sbinkertn@umich.edu base/annotate.cc 514382Sbinkertn@umich.edu base/circlebuf.cc 526654Snate@binkert.org base/cprintf.cc 535517Snate@binkert.org base/fast_alloc.cc 548614Sgblack@eecs.umich.edu base/fifo_buffer.cc 557674Snate@binkert.org base/hostinfo.cc 566143Snate@binkert.org base/hybrid_pred.cc 576143Snate@binkert.org base/inifile.cc 586143Snate@binkert.org base/intmath.cc 598233Snate@binkert.org base/match.cc 608233Snate@binkert.org base/misc.cc 618233Snate@binkert.org base/output.cc 628233Snate@binkert.org base/pollevent.cc 638233Snate@binkert.org base/range.cc 648334Snate@binkert.org base/random.cc 658334Snate@binkert.org base/sat_counter.cc 6610453SAndrew.Bardsley@arm.com base/socket.cc 6710453SAndrew.Bardsley@arm.com base/statistics.cc 688233Snate@binkert.org base/str.cc 698233Snate@binkert.org base/time.cc 708233Snate@binkert.org base/trace.cc 718233Snate@binkert.org base/traceflags.cc 728233Snate@binkert.org base/userinfo.cc 738233Snate@binkert.org base/compression/lzss_compression.cc 746143Snate@binkert.org base/loader/aout_object.cc 758233Snate@binkert.org base/loader/ecoff_object.cc 768233Snate@binkert.org base/loader/elf_object.cc 778233Snate@binkert.org base/loader/object_file.cc 786143Snate@binkert.org base/loader/symtab.cc 796143Snate@binkert.org base/stats/events.cc 806143Snate@binkert.org base/stats/statdb.cc 816143Snate@binkert.org base/stats/visit.cc 828233Snate@binkert.org base/stats/text.cc 838233Snate@binkert.org 848233Snate@binkert.org cpu/activity.cc 856143Snate@binkert.org cpu/base.cc 868233Snate@binkert.org cpu/cpuevent.cc 878233Snate@binkert.org cpu/exetrace.cc 888233Snate@binkert.org cpu/func_unit.cc 898233Snate@binkert.org cpu/op_class.cc 906143Snate@binkert.org cpu/pc_event.cc 916143Snate@binkert.org cpu/quiesce_event.cc 926143Snate@binkert.org cpu/static_inst.cc 934762Snate@binkert.org cpu/simple_thread.cc 946143Snate@binkert.org cpu/thread_state.cc 958233Snate@binkert.org 968233Snate@binkert.org mem/bridge.cc 978233Snate@binkert.org mem/bus.cc 988233Snate@binkert.org mem/dram.cc 998233Snate@binkert.org mem/mem_object.cc 1006143Snate@binkert.org mem/packet.cc 1018233Snate@binkert.org mem/physical.cc 1028233Snate@binkert.org mem/port.cc 1038233Snate@binkert.org mem/tport.cc 1048233Snate@binkert.org 1056143Snate@binkert.org mem/cache/base_cache.cc 1066143Snate@binkert.org mem/cache/cache.cc 1076143Snate@binkert.org mem/cache/coherence/coherence_protocol.cc 1086143Snate@binkert.org mem/cache/coherence/uni_coherence.cc 1096143Snate@binkert.org mem/cache/miss/blocking_buffer.cc 1106143Snate@binkert.org mem/cache/miss/miss_queue.cc 1116143Snate@binkert.org mem/cache/miss/mshr.cc 1126143Snate@binkert.org mem/cache/miss/mshr_queue.cc 1136143Snate@binkert.org mem/cache/prefetch/base_prefetcher.cc 1147065Snate@binkert.org mem/cache/prefetch/ghb_prefetcher.cc 1156143Snate@binkert.org mem/cache/prefetch/prefetcher.cc 1168233Snate@binkert.org mem/cache/prefetch/stride_prefetcher.cc 1178233Snate@binkert.org mem/cache/prefetch/tagged_prefetcher.cc 1188233Snate@binkert.org mem/cache/tags/base_tags.cc 1198233Snate@binkert.org mem/cache/tags/cache_tags.cc 1208233Snate@binkert.org mem/cache/tags/fa_lru.cc 1218233Snate@binkert.org mem/cache/tags/iic.cc 1228233Snate@binkert.org mem/cache/tags/lru.cc 1238233Snate@binkert.org mem/cache/tags/repl/gen.cc 1248233Snate@binkert.org mem/cache/tags/repl/repl.cc 1258233Snate@binkert.org mem/cache/tags/split.cc 1268233Snate@binkert.org mem/cache/tags/split_lifo.cc 1278233Snate@binkert.org mem/cache/tags/split_lru.cc 1288233Snate@binkert.org 1298233Snate@binkert.org mem/cache/cache_builder.cc 1308233Snate@binkert.org 1318233Snate@binkert.org sim/builder.cc 1328233Snate@binkert.org sim/debug.cc 1338233Snate@binkert.org sim/eventq.cc 1348233Snate@binkert.org sim/faults.cc 1358233Snate@binkert.org sim/main.cc 1368233Snate@binkert.org python/swig/cc_main_wrap.cc 1378233Snate@binkert.org sim/param.cc 1388233Snate@binkert.org sim/root.cc 1398233Snate@binkert.org sim/serialize.cc 1408233Snate@binkert.org sim/sim_events.cc 1418233Snate@binkert.org sim/sim_object.cc 1428233Snate@binkert.org sim/startup.cc 1438233Snate@binkert.org sim/stat_context.cc 1448233Snate@binkert.org sim/stat_control.cc 1458233Snate@binkert.org sim/system.cc 1468233Snate@binkert.org sim/trace_context.cc 1476143Snate@binkert.org ''') 1486143Snate@binkert.org 1496143Snate@binkert.org# Old FullCPU sources 1506143Snate@binkert.orgfull_cpu_sources = Split(''' 1516143Snate@binkert.org encumbered/cpu/full/bpred.cc 1526143Snate@binkert.org encumbered/cpu/full/commit.cc 1539982Satgutier@umich.edu encumbered/cpu/full/cpu.cc 15410196SCurtis.Dunham@arm.com encumbered/cpu/full/create_vector.cc 15510196SCurtis.Dunham@arm.com encumbered/cpu/full/cv_spec_state.cc 15610196SCurtis.Dunham@arm.com encumbered/cpu/full/dd_queue.cc 15710196SCurtis.Dunham@arm.com encumbered/cpu/full/dep_link.cc 15810196SCurtis.Dunham@arm.com encumbered/cpu/full/dispatch.cc 15910196SCurtis.Dunham@arm.com encumbered/cpu/full/dyn_inst.cc 16010196SCurtis.Dunham@arm.com encumbered/cpu/full/execute.cc 16110196SCurtis.Dunham@arm.com encumbered/cpu/full/fetch.cc 1626143Snate@binkert.org encumbered/cpu/full/floss_reasons.cc 1636143Snate@binkert.org encumbered/cpu/full/fu_pool.cc 1648945Ssteve.reinhardt@amd.com encumbered/cpu/full/inst_fifo.cc 1658233Snate@binkert.org encumbered/cpu/full/instpipe.cc 1668233Snate@binkert.org encumbered/cpu/full/issue.cc 1676143Snate@binkert.org encumbered/cpu/full/ls_queue.cc 1688945Ssteve.reinhardt@amd.com encumbered/cpu/full/machine_queue.cc 1696143Snate@binkert.org encumbered/cpu/full/pipetrace.cc 1706143Snate@binkert.org encumbered/cpu/full/readyq.cc 1716143Snate@binkert.org encumbered/cpu/full/reg_info.cc 1726143Snate@binkert.org encumbered/cpu/full/rob_station.cc 1735522Snate@binkert.org encumbered/cpu/full/spec_memory.cc 1746143Snate@binkert.org encumbered/cpu/full/spec_state.cc 1756143Snate@binkert.org encumbered/cpu/full/storebuffer.cc 1766143Snate@binkert.org encumbered/cpu/full/writeback.cc 1779982Satgutier@umich.edu encumbered/cpu/full/iq/iq_station.cc 1788233Snate@binkert.org encumbered/cpu/full/iq/iqueue.cc 1798233Snate@binkert.org encumbered/cpu/full/iq/segmented/chain_info.cc 1808233Snate@binkert.org encumbered/cpu/full/iq/segmented/chain_wire.cc 1816143Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_seg.cc 1826143Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_segmented.cc 1836143Snate@binkert.org encumbered/cpu/full/iq/segmented/seg_chain.cc 1846143Snate@binkert.org encumbered/cpu/full/iq/seznec/iq_seznec.cc 1855522Snate@binkert.org encumbered/cpu/full/iq/standard/iq_standard.cc 1865522Snate@binkert.org ''') 1875522Snate@binkert.org 1885522Snate@binkert.orgtrace_reader_sources = Split(''' 1895604Snate@binkert.org cpu/trace/reader/mem_trace_reader.cc 1905604Snate@binkert.org cpu/trace/reader/ibm_reader.cc 1916143Snate@binkert.org cpu/trace/reader/itx_reader.cc 1926143Snate@binkert.org cpu/trace/reader/m5_reader.cc 1934762Snate@binkert.org cpu/trace/opt_cpu.cc 1944762Snate@binkert.org cpu/trace/trace_cpu.cc 1956143Snate@binkert.org ''') 1966727Ssteve.reinhardt@amd.com 1976727Ssteve.reinhardt@amd.com 1986727Ssteve.reinhardt@amd.com 1994762Snate@binkert.org# MySql sources 2006143Snate@binkert.orgmysql_sources = Split(''' 2016143Snate@binkert.org base/mysql.cc 2026143Snate@binkert.org base/stats/mysql.cc 2036143Snate@binkert.org ''') 2046727Ssteve.reinhardt@amd.com 2056143Snate@binkert.org# Full-system sources 2067674Snate@binkert.orgfull_system_sources = Split(''' 2077674Snate@binkert.org base/crc.cc 2085604Snate@binkert.org base/inet.cc 2096143Snate@binkert.org base/remote_gdb.cc 2106143Snate@binkert.org 2116143Snate@binkert.org cpu/intr_control.cc 2124762Snate@binkert.org cpu/profile.cc 2136143Snate@binkert.org 2144762Snate@binkert.org dev/alpha_console.cc 2154762Snate@binkert.org dev/baddev.cc 2164762Snate@binkert.org dev/disk_image.cc 2176143Snate@binkert.org dev/etherbus.cc 2186143Snate@binkert.org dev/etherdump.cc 2194762Snate@binkert.org dev/etherint.cc 2208233Snate@binkert.org dev/etherlink.cc 2218233Snate@binkert.org dev/etherpkt.cc 2228233Snate@binkert.org dev/ethertap.cc 2238233Snate@binkert.org dev/ide_ctrl.cc 2246143Snate@binkert.org dev/ide_disk.cc 2256143Snate@binkert.org dev/io_device.cc 2264762Snate@binkert.org dev/isa_fake.cc 2276143Snate@binkert.org dev/ns_gige.cc 2284762Snate@binkert.org dev/pciconfigall.cc 2296143Snate@binkert.org dev/pcidev.cc 2304762Snate@binkert.org dev/pktfifo.cc 2316143Snate@binkert.org dev/platform.cc 2328233Snate@binkert.org dev/simconsole.cc 2338233Snate@binkert.org dev/simple_disk.cc 23410453SAndrew.Bardsley@arm.com dev/tsunami.cc 2356143Snate@binkert.org dev/tsunami_cchip.cc 2366143Snate@binkert.org dev/tsunami_io.cc 2376143Snate@binkert.org dev/tsunami_pchip.cc 2386143Snate@binkert.org 2396143Snate@binkert.org dev/uart.cc 2406143Snate@binkert.org dev/uart8250.cc 2416143Snate@binkert.org 2426143Snate@binkert.org kern/kernel_stats.cc 24310453SAndrew.Bardsley@arm.com kern/system_events.cc 24410453SAndrew.Bardsley@arm.com kern/linux/events.cc 245955SN/A kern/linux/linux_syscalls.cc 2469396Sandreas.hansson@arm.com kern/linux/printk.cc 2479396Sandreas.hansson@arm.com 2489396Sandreas.hansson@arm.com mem/vport.cc 2499396Sandreas.hansson@arm.com 2509396Sandreas.hansson@arm.com sim/pseudo_inst.cc 2519396Sandreas.hansson@arm.com ''') 2529396Sandreas.hansson@arm.com #dev/sinic.cc 2539396Sandreas.hansson@arm.com #dev/i8254xGBe.cc 2549396Sandreas.hansson@arm.com 2559396Sandreas.hansson@arm.com 2569396Sandreas.hansson@arm.comif env['TARGET_ISA'] == 'alpha': 2579396Sandreas.hansson@arm.com full_system_sources += Split(''' 2589396Sandreas.hansson@arm.com kern/tru64/dump_mbuf.cc 2599930Sandreas.hansson@arm.com kern/tru64/printf.cc 2609930Sandreas.hansson@arm.com kern/tru64/tru64_events.cc 2619396Sandreas.hansson@arm.com kern/tru64/tru64_syscalls.cc 2628235Snate@binkert.org ''') 2638235Snate@binkert.org 2646143Snate@binkert.org# turbolaser encumbered sources 2658235Snate@binkert.orgturbolaser_sources = Split(''' 2669003SAli.Saidi@ARM.com encumbered/dev/dma.cc 2678235Snate@binkert.org encumbered/dev/etherdev.cc 2688235Snate@binkert.org encumbered/dev/scsi.cc 2698235Snate@binkert.org encumbered/dev/scsi_ctrl.cc 2708235Snate@binkert.org encumbered/dev/scsi_disk.cc 2718235Snate@binkert.org encumbered/dev/scsi_none.cc 2728235Snate@binkert.org encumbered/dev/tlaser_clock.cc 2738235Snate@binkert.org encumbered/dev/tlaser_ipi.cc 2748235Snate@binkert.org encumbered/dev/tlaser_mbox.cc 2758235Snate@binkert.org encumbered/dev/tlaser_mc146818.cc 2768235Snate@binkert.org encumbered/dev/tlaser_node.cc 2778235Snate@binkert.org encumbered/dev/tlaser_pcia.cc 2788235Snate@binkert.org encumbered/dev/tlaser_pcidev.cc 2798235Snate@binkert.org encumbered/dev/tlaser_serial.cc 2808235Snate@binkert.org encumbered/dev/turbolaser.cc 2819003SAli.Saidi@ARM.com encumbered/dev/uart8530.cc 2828235Snate@binkert.org ''') 2835584Snate@binkert.org 2844382Sbinkertn@umich.edu# Syscall emulation (non-full-system) sources 2854202Sbinkertn@umich.edusyscall_emulation_sources = Split(''' 2864382Sbinkertn@umich.edu mem/translating_port.cc 2874382Sbinkertn@umich.edu mem/page_table.cc 2884382Sbinkertn@umich.edu sim/process.cc 2899396Sandreas.hansson@arm.com sim/syscall_emul.cc 2905584Snate@binkert.org ''') 2914382Sbinkertn@umich.edu 2924382Sbinkertn@umich.edu#if env['TARGET_ISA'] == 'alpha': 2934382Sbinkertn@umich.edu# syscall_emulation_sources += Split(''' 2948232Snate@binkert.org# kern/tru64/tru64.cc 2955192Ssaidi@eecs.umich.edu# ''') 2968232Snate@binkert.org 2978232Snate@binkert.orgalpha_eio_sources = Split(''' 2988232Snate@binkert.org encumbered/eio/exolex.cc 2995192Ssaidi@eecs.umich.edu encumbered/eio/libexo.cc 3008232Snate@binkert.org encumbered/eio/eio.cc 3015192Ssaidi@eecs.umich.edu ''') 3025799Snate@binkert.org 3038232Snate@binkert.orgif env['TARGET_ISA'] == 'alpha': 3045192Ssaidi@eecs.umich.edu syscall_emulation_sources += alpha_eio_sources 3055192Ssaidi@eecs.umich.edu 3065192Ssaidi@eecs.umich.edumemtest_sources = Split(''' 3078232Snate@binkert.org cpu/memtest/memtest.cc 3085192Ssaidi@eecs.umich.edu ''') 3098232Snate@binkert.org 3105192Ssaidi@eecs.umich.edu# Include file paths are rooted in this directory. SCons will 3115192Ssaidi@eecs.umich.edu# automatically expand '.' to refer to both the source directory and 3125192Ssaidi@eecs.umich.edu# the corresponding build directory to pick up generated include 3135192Ssaidi@eecs.umich.edu# files. 3144382Sbinkertn@umich.eduenv.Append(CPPPATH=Dir('.')) 3154382Sbinkertn@umich.edu 3164382Sbinkertn@umich.edu# Add a flag defining what THE_ISA should be for all compilation 3172667Sstever@eecs.umich.eduenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 3182667Sstever@eecs.umich.edu 3192667Sstever@eecs.umich.eduarch_sources = SConscript('arch/SConscript', exports = 'env') 3202667Sstever@eecs.umich.edu 3212667Sstever@eecs.umich.educpu_sources = SConscript('cpu/SConscript', exports = 'env') 3222667Sstever@eecs.umich.edu 3235742Snate@binkert.org# This is outside of cpu/SConscript since the source directory isn't 3245742Snate@binkert.org# underneath 'cpu'. 3255742Snate@binkert.orgif 'FullCPU' in env['CPU_MODELS']: 3265793Snate@binkert.org cpu_sources += full_cpu_sources 3278334Snate@binkert.org 3285793Snate@binkert.org# Set up complete list of sources based on configuration. 3295793Snate@binkert.orgsources = base_sources + arch_sources + cpu_sources 3305793Snate@binkert.org 3314382Sbinkertn@umich.eduif env['FULL_SYSTEM']: 3324762Snate@binkert.org sources += full_system_sources 3335344Sstever@gmail.com if env['ALPHA_TLASER']: 3344382Sbinkertn@umich.edu sources += turbolaser_sources 3355341Sstever@gmail.comelse: 3365742Snate@binkert.org sources += syscall_emulation_sources 3375742Snate@binkert.org 3385742Snate@binkert.orgif env['USE_MYSQL']: 3395742Snate@binkert.org sources += mysql_sources 3405742Snate@binkert.org 3414762Snate@binkert.orgfor opt in env.ExportOptions: 3425742Snate@binkert.org env.ConfigFile(opt) 3435742Snate@binkert.org 3447722Sgblack@eecs.umich.edu################################################### 3455742Snate@binkert.org# 3465742Snate@binkert.org# Special build rules. 3475742Snate@binkert.org# 3489930Sandreas.hansson@arm.com################################################### 3499930Sandreas.hansson@arm.com 3509930Sandreas.hansson@arm.com# base/traceflags.{cc,hh} are generated from base/traceflags.py. 3519930Sandreas.hansson@arm.com# $TARGET.base will expand to "<build-dir>/base/traceflags". 3529930Sandreas.hansson@arm.comenv.Command(Split('base/traceflags.hh base/traceflags.cc'), 3535742Snate@binkert.org 'base/traceflags.py', 3548242Sbradley.danofsky@amd.com 'python $SOURCE $TARGET.base') 3558242Sbradley.danofsky@amd.com 3568242Sbradley.danofsky@amd.comSConscript('python/SConscript', exports = ['env']) 3578242Sbradley.danofsky@amd.com 3585341Sstever@gmail.com# This function adds the specified sources to the given build 3595742Snate@binkert.org# environment, and returns a list of all the corresponding SCons 3607722Sgblack@eecs.umich.edu# Object nodes (including an extra one for date.cc). We explicitly 3614773Snate@binkert.org# add the Object nodes so we can set up special dependencies for 3626108Snate@binkert.org# date.cc. 3631858SN/Adef make_objs(sources, env): 3641085SN/A objs = [env.Object(s) for s in sources] 3656658Snate@binkert.org # make date.cc depend on all other objects so it always gets 3666658Snate@binkert.org # recompiled whenever anything else does 3677673Snate@binkert.org date_obj = env.Object('base/date.cc') 3686658Snate@binkert.org env.Depends(date_obj, objs) 3696658Snate@binkert.org objs.append(date_obj) 3706658Snate@binkert.org return objs 3716658Snate@binkert.org 3726658Snate@binkert.org################################################### 3736658Snate@binkert.org# 3746658Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 3757673Snate@binkert.org# a slightly different build environment. 3767673Snate@binkert.org# 3777673Snate@binkert.org################################################### 3787673Snate@binkert.org 3797673Snate@binkert.org# List of constructed environments to pass back to SConstruct 3807673Snate@binkert.orgenvList = [] 3817673Snate@binkert.org 38210467Sandreas.hansson@arm.com# Function to create a new build environment as clone of current 3836658Snate@binkert.org# environment 'env' with modified object suffix and optional stripped 3847673Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 38510467Sandreas.hansson@arm.com# build environment vars. 38610467Sandreas.hansson@arm.comdef makeEnv(label, objsfx, strip = False, **kwargs): 38710467Sandreas.hansson@arm.com newEnv = env.Copy(OBJSUFFIX=objsfx) 38810467Sandreas.hansson@arm.com newEnv.Label = label 38910467Sandreas.hansson@arm.com newEnv.Append(**kwargs) 39010467Sandreas.hansson@arm.com exe = 'm5.' + label # final executable 39110467Sandreas.hansson@arm.com bin = exe + '.bin' # executable w/o appended Python zip archive 39210467Sandreas.hansson@arm.com newEnv.Program(bin, make_objs(sources, newEnv)) 39310467Sandreas.hansson@arm.com if strip: 39410467Sandreas.hansson@arm.com stripped_bin = bin + '.stripped' 39510467Sandreas.hansson@arm.com newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET') 3967673Snate@binkert.org bin = stripped_bin 3977673Snate@binkert.org targets = newEnv.Concat(exe, [bin, 'python/m5py.zip']) 3987673Snate@binkert.org newEnv.M5Binary = targets[0] 3997673Snate@binkert.org envList.append(newEnv) 4007673Snate@binkert.org 4019048SAli.Saidi@ARM.com# Debug binary 4027673Snate@binkert.org# Solaris seems to have some issue with DWARF2 debugging information, it's ok 4037673Snate@binkert.org# with stabs though 4047673Snate@binkert.orgif sys.platform == 'sunos5': 4057673Snate@binkert.org debug_flag = '-gstabs+' 4066658Snate@binkert.orgelse: 4077756SAli.Saidi@ARM.com debug_flag = '-ggdb3' 4087816Ssteve.reinhardt@amd.com 4096658Snate@binkert.orgmakeEnv('debug', '.do', 4104382Sbinkertn@umich.edu CCFLAGS = Split('%s -O0' % debug_flag), 4114382Sbinkertn@umich.edu CPPDEFINES = 'DEBUG') 4124762Snate@binkert.org 4134762Snate@binkert.org# Optimized binary 4144762Snate@binkert.orgmakeEnv('opt', '.o', 4156654Snate@binkert.org CCFLAGS = Split('-g -O3')) 4166654Snate@binkert.org 4175517Snate@binkert.org# "Fast" binary 4185517Snate@binkert.orgmakeEnv('fast', '.fo', strip = True, 4195517Snate@binkert.org CCFLAGS = Split('-O3'), 4205517Snate@binkert.org CPPDEFINES = 'NDEBUG') 4215517Snate@binkert.org 4225517Snate@binkert.org# Profiled binary 4235517Snate@binkert.orgmakeEnv('prof', '.po', 4245517Snate@binkert.org CCFLAGS = Split('-O3 -g -pg'), 4255517Snate@binkert.org LINKFLAGS = '-pg') 4265517Snate@binkert.org 4275517Snate@binkert.orgReturn('envList') 4285517Snate@binkert.org