SConscript revision 1858
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/Abase_sources = Split(''' 474202Sbinkertn@umich.edu arch/alpha/decoder.cc 48955SN/A arch/alpha/alpha_o3_exec.cc 494382Sbinkertn@umich.edu arch/alpha/fast_cpu_exec.cc 504382Sbinkertn@umich.edu arch/alpha/simple_cpu_exec.cc 514382Sbinkertn@umich.edu arch/alpha/full_cpu_exec.cc 526654Snate@binkert.org arch/alpha/faults.cc 535517Snate@binkert.org arch/alpha/isa_traits.cc 548614Sgblack@eecs.umich.edu 557674Snate@binkert.org base/circlebuf.cc 566143Snate@binkert.org base/copyright.cc 576143Snate@binkert.org base/cprintf.cc 586143Snate@binkert.org base/embedfile.cc 598233Snate@binkert.org base/fast_alloc.cc 608233Snate@binkert.org base/fifo_buffer.cc 618233Snate@binkert.org base/hostinfo.cc 628233Snate@binkert.org base/hybrid_pred.cc 638233Snate@binkert.org base/inifile.cc 648334Snate@binkert.org base/intmath.cc 658334Snate@binkert.org base/match.cc 6610453SAndrew.Bardsley@arm.com base/misc.cc 6710453SAndrew.Bardsley@arm.com base/output.cc 688233Snate@binkert.org base/pollevent.cc 698233Snate@binkert.org base/range.cc 708233Snate@binkert.org base/random.cc 718233Snate@binkert.org base/sat_counter.cc 728233Snate@binkert.org base/socket.cc 738233Snate@binkert.org base/statistics.cc 746143Snate@binkert.org base/str.cc 758233Snate@binkert.org base/time.cc 768233Snate@binkert.org base/trace.cc 778233Snate@binkert.org base/traceflags.cc 786143Snate@binkert.org base/userinfo.cc 796143Snate@binkert.org base/compression/lzss_compression.cc 806143Snate@binkert.org base/loader/aout_object.cc 816143Snate@binkert.org base/loader/ecoff_object.cc 828233Snate@binkert.org base/loader/elf_object.cc 838233Snate@binkert.org base/loader/object_file.cc 848233Snate@binkert.org base/loader/symtab.cc 856143Snate@binkert.org base/stats/events.cc 868233Snate@binkert.org base/stats/statdb.cc 878233Snate@binkert.org base/stats/visit.cc 888233Snate@binkert.org base/stats/text.cc 898233Snate@binkert.org 906143Snate@binkert.org cpu/base.cc 916143Snate@binkert.org cpu/base_dyn_inst.cc 926143Snate@binkert.org cpu/exec_context.cc 934762Snate@binkert.org cpu/exetrace.cc 946143Snate@binkert.org cpu/pc_event.cc 958233Snate@binkert.org cpu/static_inst.cc 968233Snate@binkert.org cpu/o3/2bit_local_pred.cc 978233Snate@binkert.org cpu/o3/alpha_dyn_inst.cc 988233Snate@binkert.org cpu/o3/alpha_cpu.cc 998233Snate@binkert.org cpu/o3/alpha_cpu_builder.cc 1006143Snate@binkert.org cpu/o3/bpred_unit.cc 1018233Snate@binkert.org cpu/o3/btb.cc 1028233Snate@binkert.org cpu/o3/commit.cc 1038233Snate@binkert.org cpu/o3/decode.cc 1048233Snate@binkert.org cpu/o3/fetch.cc 1056143Snate@binkert.org cpu/o3/free_list.cc 1066143Snate@binkert.org cpu/o3/cpu.cc 1076143Snate@binkert.org cpu/o3/iew.cc 1086143Snate@binkert.org cpu/o3/inst_queue.cc 1096143Snate@binkert.org cpu/o3/ldstq.cc 1106143Snate@binkert.org cpu/o3/mem_dep_unit.cc 1116143Snate@binkert.org cpu/o3/ras.cc 1126143Snate@binkert.org cpu/o3/rename.cc 1136143Snate@binkert.org cpu/o3/rename_map.cc 1147065Snate@binkert.org cpu/o3/rob.cc 1156143Snate@binkert.org cpu/o3/sat_counter.cc 1168233Snate@binkert.org cpu/o3/store_set.cc 1178233Snate@binkert.org cpu/o3/tournament_pred.cc 1188233Snate@binkert.org cpu/fast/cpu.cc 1198233Snate@binkert.org cpu/sampler/sampler.cc 1208233Snate@binkert.org cpu/simple/cpu.cc 1218233Snate@binkert.org cpu/trace/reader/mem_trace_reader.cc 1228233Snate@binkert.org cpu/trace/reader/ibm_reader.cc 1238233Snate@binkert.org cpu/trace/reader/itx_reader.cc 1248233Snate@binkert.org cpu/trace/reader/m5_reader.cc 1258233Snate@binkert.org cpu/trace/opt_cpu.cc 1268233Snate@binkert.org cpu/trace/trace_cpu.cc 1278233Snate@binkert.org 1288233Snate@binkert.org encumbered/cpu/full/bpred.cc 1298233Snate@binkert.org encumbered/cpu/full/commit.cc 1308233Snate@binkert.org encumbered/cpu/full/cpu.cc 1318233Snate@binkert.org encumbered/cpu/full/create_vector.cc 1328233Snate@binkert.org encumbered/cpu/full/cv_spec_state.cc 1338233Snate@binkert.org encumbered/cpu/full/dd_queue.cc 1348233Snate@binkert.org encumbered/cpu/full/dep_link.cc 1358233Snate@binkert.org encumbered/cpu/full/dispatch.cc 1368233Snate@binkert.org encumbered/cpu/full/dyn_inst.cc 1378233Snate@binkert.org encumbered/cpu/full/execute.cc 1388233Snate@binkert.org encumbered/cpu/full/fetch.cc 1398233Snate@binkert.org encumbered/cpu/full/floss_reasons.cc 1408233Snate@binkert.org encumbered/cpu/full/fu_pool.cc 1418233Snate@binkert.org encumbered/cpu/full/inst_fifo.cc 1428233Snate@binkert.org encumbered/cpu/full/instpipe.cc 1438233Snate@binkert.org encumbered/cpu/full/issue.cc 1448233Snate@binkert.org encumbered/cpu/full/ls_queue.cc 1458233Snate@binkert.org encumbered/cpu/full/machine_queue.cc 1468233Snate@binkert.org encumbered/cpu/full/pc_sample_profile.cc 1476143Snate@binkert.org encumbered/cpu/full/pipetrace.cc 1486143Snate@binkert.org encumbered/cpu/full/readyq.cc 1496143Snate@binkert.org encumbered/cpu/full/reg_info.cc 1506143Snate@binkert.org encumbered/cpu/full/rob_station.cc 1516143Snate@binkert.org encumbered/cpu/full/spec_memory.cc 1526143Snate@binkert.org encumbered/cpu/full/spec_state.cc 1539982Satgutier@umich.edu encumbered/cpu/full/storebuffer.cc 15410196SCurtis.Dunham@arm.com encumbered/cpu/full/writeback.cc 15510196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/iq_station.cc 15610196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/iqueue.cc 15710196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/segmented/chain_info.cc 15810196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/segmented/chain_wire.cc 15910196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/segmented/iq_seg.cc 16010196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/segmented/iq_segmented.cc 16110196SCurtis.Dunham@arm.com encumbered/cpu/full/iq/segmented/seg_chain.cc 1626143Snate@binkert.org encumbered/cpu/full/iq/seznec/iq_seznec.cc 1636143Snate@binkert.org encumbered/cpu/full/iq/standard/iq_standard.cc 1648945Ssteve.reinhardt@amd.com encumbered/mem/functional/main.cc 1658233Snate@binkert.org 1668233Snate@binkert.org mem/base_hier.cc 1676143Snate@binkert.org mem/base_mem.cc 1688945Ssteve.reinhardt@amd.com mem/hier_params.cc 1696143Snate@binkert.org mem/mem_cmd.cc 1706143Snate@binkert.org mem/mem_debug.cc 1716143Snate@binkert.org mem/mem_req.cc 1726143Snate@binkert.org mem/memory_interface.cc 1735522Snate@binkert.org mem/bus/base_interface.cc 1746143Snate@binkert.org mem/bus/bus.cc 1756143Snate@binkert.org mem/bus/bus_bridge.cc 1766143Snate@binkert.org mem/bus/bus_bridge_master.cc 1779982Satgutier@umich.edu mem/bus/bus_bridge_slave.cc 1788233Snate@binkert.org mem/bus/bus_interface.cc 1798233Snate@binkert.org mem/bus/dma_bus_interface.cc 1808233Snate@binkert.org mem/bus/dma_interface.cc 1816143Snate@binkert.org mem/bus/master_interface.cc 1826143Snate@binkert.org mem/bus/slave_interface.cc 1836143Snate@binkert.org mem/cache/base_cache.cc 1846143Snate@binkert.org mem/cache/cache.cc 1855522Snate@binkert.org mem/cache/cache_builder.cc 1865522Snate@binkert.org mem/cache/coherence/coherence_protocol.cc 1875522Snate@binkert.org mem/cache/coherence/uni_coherence.cc 1885522Snate@binkert.org mem/cache/miss/blocking_buffer.cc 1895604Snate@binkert.org mem/cache/miss/miss_queue.cc 1905604Snate@binkert.org mem/cache/miss/mshr.cc 1916143Snate@binkert.org mem/cache/miss/mshr_queue.cc 1926143Snate@binkert.org mem/cache/prefetch/base_prefetcher.cc 1934762Snate@binkert.org mem/cache/prefetch/prefetcher.cc 1944762Snate@binkert.org mem/cache/prefetch/tagged_prefetcher.cc 1956143Snate@binkert.org mem/cache/tags/base_tags.cc 1966727Ssteve.reinhardt@amd.com mem/cache/tags/cache_tags.cc 1976727Ssteve.reinhardt@amd.com mem/cache/tags/fa_lru.cc 1986727Ssteve.reinhardt@amd.com mem/cache/tags/iic.cc 1994762Snate@binkert.org mem/cache/tags/lru.cc 2006143Snate@binkert.org mem/cache/tags/repl/gen.cc 2016143Snate@binkert.org mem/cache/tags/repl/repl.cc 2026143Snate@binkert.org mem/functional/functional.cc 2036143Snate@binkert.org mem/timing/base_memory.cc 2046727Ssteve.reinhardt@amd.com mem/timing/memory_builder.cc 2056143Snate@binkert.org mem/timing/simple_mem_bank.cc 2067674Snate@binkert.org mem/trace/itx_writer.cc 2077674Snate@binkert.org mem/trace/mem_trace_writer.cc 2085604Snate@binkert.org mem/trace/m5_writer.cc 2096143Snate@binkert.org 2106143Snate@binkert.org python/pyconfig.cc 2116143Snate@binkert.org python/embedded_py.cc 2124762Snate@binkert.org 2136143Snate@binkert.org sim/builder.cc 2144762Snate@binkert.org sim/configfile.cc 2154762Snate@binkert.org sim/debug.cc 2164762Snate@binkert.org sim/eventq.cc 2176143Snate@binkert.org sim/main.cc 2186143Snate@binkert.org sim/param.cc 2194762Snate@binkert.org sim/profile.cc 2208233Snate@binkert.org sim/root.cc 2218233Snate@binkert.org sim/serialize.cc 2228233Snate@binkert.org sim/sim_events.cc 2238233Snate@binkert.org sim/sim_exit.cc 2246143Snate@binkert.org sim/sim_object.cc 2256143Snate@binkert.org sim/startup.cc 2264762Snate@binkert.org sim/stat_context.cc 2276143Snate@binkert.org sim/stat_control.cc 2284762Snate@binkert.org sim/trace_context.cc 2296143Snate@binkert.org ''') 2304762Snate@binkert.org 2316143Snate@binkert.org# MySql sources 2328233Snate@binkert.orgmysql_sources = Split(''' 2338233Snate@binkert.org base/mysql.cc 23410453SAndrew.Bardsley@arm.com base/stats/mysql.cc 2356143Snate@binkert.org ''') 2366143Snate@binkert.org 2376143Snate@binkert.org# Full-system sources 2386143Snate@binkert.orgfull_system_sources = Split(''' 2396143Snate@binkert.org arch/alpha/alpha_memory.cc 2406143Snate@binkert.org arch/alpha/arguments.cc 2416143Snate@binkert.org arch/alpha/ev5.cc 2426143Snate@binkert.org arch/alpha/osfpal.cc 24310453SAndrew.Bardsley@arm.com arch/alpha/pseudo_inst.cc 24410453SAndrew.Bardsley@arm.com arch/alpha/vtophys.cc 245955SN/A 2469396Sandreas.hansson@arm.com base/crc.cc 2479396Sandreas.hansson@arm.com base/inet.cc 2489396Sandreas.hansson@arm.com base/remote_gdb.cc 2499396Sandreas.hansson@arm.com 2509396Sandreas.hansson@arm.com cpu/intr_control.cc 2519396Sandreas.hansson@arm.com 2529396Sandreas.hansson@arm.com dev/alpha_console.cc 2539396Sandreas.hansson@arm.com dev/baddev.cc 2549396Sandreas.hansson@arm.com dev/simconsole.cc 2559396Sandreas.hansson@arm.com dev/disk_image.cc 2569396Sandreas.hansson@arm.com dev/etherbus.cc 2579396Sandreas.hansson@arm.com dev/etherdump.cc 2589396Sandreas.hansson@arm.com dev/etherint.cc 2599930Sandreas.hansson@arm.com dev/etherlink.cc 2609930Sandreas.hansson@arm.com dev/etherpkt.cc 2619396Sandreas.hansson@arm.com dev/ethertap.cc 2628235Snate@binkert.org dev/ide_ctrl.cc 2638235Snate@binkert.org dev/ide_disk.cc 2646143Snate@binkert.org dev/io_device.cc 2658235Snate@binkert.org dev/ns_gige.cc 2669003SAli.Saidi@ARM.com dev/pciconfigall.cc 2678235Snate@binkert.org dev/pcidev.cc 2688235Snate@binkert.org dev/pcifake.cc 2698235Snate@binkert.org dev/pktfifo.cc 2708235Snate@binkert.org dev/platform.cc 2718235Snate@binkert.org dev/sinic.cc 2728235Snate@binkert.org dev/simple_disk.cc 2738235Snate@binkert.org dev/tsunami.cc 2748235Snate@binkert.org dev/tsunami_cchip.cc 2758235Snate@binkert.org dev/isa_fake.cc 2768235Snate@binkert.org dev/tsunami_io.cc 2778235Snate@binkert.org dev/tsunami_pchip.cc 2788235Snate@binkert.org dev/uart.cc 2798235Snate@binkert.org dev/uart8250.cc 2808235Snate@binkert.org 2819003SAli.Saidi@ARM.com kern/kernel_binning.cc 2828235Snate@binkert.org kern/kernel_stats.cc 2835584Snate@binkert.org kern/system_events.cc 2844382Sbinkertn@umich.edu kern/freebsd/freebsd_system.cc 2854202Sbinkertn@umich.edu kern/freebsd/freebsd_events.cc 2864382Sbinkertn@umich.edu kern/linux/linux_events.cc 2874382Sbinkertn@umich.edu kern/linux/linux_syscalls.cc 2884382Sbinkertn@umich.edu kern/linux/linux_system.cc 2899396Sandreas.hansson@arm.com kern/linux/printk.cc 2905584Snate@binkert.org kern/tru64/dump_mbuf.cc 2914382Sbinkertn@umich.edu kern/tru64/printf.cc 2924382Sbinkertn@umich.edu kern/tru64/tru64_events.cc 2934382Sbinkertn@umich.edu kern/tru64/tru64_syscalls.cc 2948232Snate@binkert.org kern/tru64/tru64_system.cc 2955192Ssaidi@eecs.umich.edu 2968232Snate@binkert.org mem/functional/memory_control.cc 2978232Snate@binkert.org mem/functional/physical.cc 2988232Snate@binkert.org 2995192Ssaidi@eecs.umich.edu sim/system.cc 3008232Snate@binkert.org ''') 3015192Ssaidi@eecs.umich.edu 3025799Snate@binkert.org# turbolaser encumbered sources 3038232Snate@binkert.orgturbolaser_sources = Split(''' 3045192Ssaidi@eecs.umich.edu encumbered/dev/dma.cc 3055192Ssaidi@eecs.umich.edu encumbered/dev/etherdev.cc 3065192Ssaidi@eecs.umich.edu encumbered/dev/scsi.cc 3078232Snate@binkert.org encumbered/dev/scsi_ctrl.cc 3085192Ssaidi@eecs.umich.edu encumbered/dev/scsi_disk.cc 3098232Snate@binkert.org encumbered/dev/scsi_none.cc 3105192Ssaidi@eecs.umich.edu encumbered/dev/tlaser_clock.cc 3115192Ssaidi@eecs.umich.edu encumbered/dev/tlaser_ipi.cc 3125192Ssaidi@eecs.umich.edu encumbered/dev/tlaser_mbox.cc 3135192Ssaidi@eecs.umich.edu encumbered/dev/tlaser_mc146818.cc 3144382Sbinkertn@umich.edu encumbered/dev/tlaser_node.cc 3154382Sbinkertn@umich.edu encumbered/dev/tlaser_pcia.cc 3164382Sbinkertn@umich.edu encumbered/dev/tlaser_pcidev.cc 3172667Sstever@eecs.umich.edu encumbered/dev/tlaser_serial.cc 3182667Sstever@eecs.umich.edu encumbered/dev/turbolaser.cc 3192667Sstever@eecs.umich.edu encumbered/dev/uart8530.cc 3202667Sstever@eecs.umich.edu ''') 3212667Sstever@eecs.umich.edu 3222667Sstever@eecs.umich.edu# Syscall emulation (non-full-system) sources 3235742Snate@binkert.orgsyscall_emulation_sources = Split(''' 3245742Snate@binkert.org arch/alpha/alpha_common_syscall_emul.cc 3255742Snate@binkert.org arch/alpha/alpha_linux_process.cc 3265793Snate@binkert.org arch/alpha/alpha_tru64_process.cc 3278334Snate@binkert.org cpu/memtest/memtest.cc 3285793Snate@binkert.org encumbered/eio/eio.cc 3295793Snate@binkert.org encumbered/eio/exolex.cc 3305793Snate@binkert.org encumbered/eio/libexo.cc 3314382Sbinkertn@umich.edu sim/process.cc 3324762Snate@binkert.org sim/syscall_emul.cc 3335344Sstever@gmail.com ''') 3344382Sbinkertn@umich.edu 3355341Sstever@gmail.comtargetarch_files = Split(''' 3365742Snate@binkert.org alpha_common_syscall_emul.hh 3375742Snate@binkert.org alpha_linux_process.hh 3385742Snate@binkert.org alpha_memory.hh 3395742Snate@binkert.org alpha_tru64_process.hh 3405742Snate@binkert.org aout_machdep.h 3414762Snate@binkert.org arguments.hh 3425742Snate@binkert.org byte_swap.hh 3435742Snate@binkert.org ecoff_machdep.h 3447722Sgblack@eecs.umich.edu ev5.hh 3455742Snate@binkert.org faults.hh 3465742Snate@binkert.org isa_fullsys_traits.hh 3475742Snate@binkert.org isa_traits.hh 3489930Sandreas.hansson@arm.com osfpal.hh 3499930Sandreas.hansson@arm.com pseudo_inst.hh 3509930Sandreas.hansson@arm.com vptr.hh 3519930Sandreas.hansson@arm.com vtophys.hh 3529930Sandreas.hansson@arm.com ''') 3535742Snate@binkert.org 3548242Sbradley.danofsky@amd.comfor f in targetarch_files: 3558242Sbradley.danofsky@amd.com env.Command('targetarch/' + f, 'arch/alpha/' + f, 3568242Sbradley.danofsky@amd.com '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 3578242Sbradley.danofsky@amd.com 3585341Sstever@gmail.com 3595742Snate@binkert.org# Set up complete list of sources based on configuration. 3607722Sgblack@eecs.umich.edusources = base_sources 3614773Snate@binkert.org 3626108Snate@binkert.orgif env['FULL_SYSTEM']: 3631858SN/A sources += full_system_sources 3641085SN/A if env['ALPHA_TLASER']: 3656658Snate@binkert.org sources += turbolaser_sources 3666658Snate@binkert.orgelse: 3677673Snate@binkert.org sources += syscall_emulation_sources 3686658Snate@binkert.org 3696658Snate@binkert.orgif env['USE_MYSQL']: 3706658Snate@binkert.org sources += mysql_sources 3716658Snate@binkert.org 3726658Snate@binkert.orgfor opt in env.ExportOptions: 3736658Snate@binkert.org env.ConfigFile(opt) 3746658Snate@binkert.org 3757673Snate@binkert.org################################################### 3767673Snate@binkert.org# 3777673Snate@binkert.org# Special build rules. 3787673Snate@binkert.org# 3797673Snate@binkert.org################################################### 3807673Snate@binkert.org 3817673Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py. 38210467Sandreas.hansson@arm.com# $TARGET.base will expand to "<build-dir>/base/traceflags". 3836658Snate@binkert.orgenv.Command(Split('base/traceflags.hh base/traceflags.cc'), 3847673Snate@binkert.org 'base/traceflags.py', 38510467Sandreas.hansson@arm.com 'python $SOURCE $TARGET.base') 38610467Sandreas.hansson@arm.com 38710467Sandreas.hansson@arm.com# several files are generated from arch/$TARGET_ISA/isa_desc. 38810467Sandreas.hansson@arm.comenv.Command(Split('''arch/alpha/decoder.cc 38910467Sandreas.hansson@arm.com arch/alpha/decoder.hh 39010467Sandreas.hansson@arm.com arch/alpha/alpha_o3_exec.cc 39110467Sandreas.hansson@arm.com arch/alpha/fast_cpu_exec.cc 39210467Sandreas.hansson@arm.com arch/alpha/simple_cpu_exec.cc 39310467Sandreas.hansson@arm.com arch/alpha/full_cpu_exec.cc'''), 39410467Sandreas.hansson@arm.com Split('''arch/alpha/isa_desc 39510467Sandreas.hansson@arm.com arch/isa_parser.py'''), 3967673Snate@binkert.org '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 3977673Snate@binkert.org 3987673Snate@binkert.org 3997673Snate@binkert.org# libelf build is described in its own SConscript file. 4007673Snate@binkert.org# SConscript-local is the per-config build, which just copies some 4019048SAli.Saidi@ARM.com# header files into a place where they can be found. 4027673Snate@binkert.orgSConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 4037673Snate@binkert.orgSConscript('python/SConscript', exports = ['env'], duplicate=0) 4047673Snate@binkert.org 4057673Snate@binkert.org# This function adds the specified sources to the given build 4066658Snate@binkert.org# environment, and returns a list of all the corresponding SCons 4077756SAli.Saidi@ARM.com# Object nodes (including an extra one for date.cc). We explicitly 4087816Ssteve.reinhardt@amd.com# add the Object nodes so we can set up special dependencies for 4096658Snate@binkert.org# date.cc. 4104382Sbinkertn@umich.edudef make_objs(sources, env): 4114382Sbinkertn@umich.edu objs = [env.Object(s) for s in sources] 4124762Snate@binkert.org # make date.cc depend on all other objects so it always gets 4134762Snate@binkert.org # recompiled whenever anything else does 4144762Snate@binkert.org date_obj = env.Object('base/date.cc') 4156654Snate@binkert.org env.Depends(date_obj, objs) 4166654Snate@binkert.org objs.append(date_obj) 4175517Snate@binkert.org return objs 4185517Snate@binkert.org 4195517Snate@binkert.org################################################### 4205517Snate@binkert.org# 4215517Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 4225517Snate@binkert.org# a slightly different build environment. 4235517Snate@binkert.org# 4245517Snate@binkert.org################################################### 4255517Snate@binkert.org 4265517Snate@binkert.org# Include file paths are rooted in this directory. SCons will 4275517Snate@binkert.org# automatically expand '.' to refer to both the source directory and 4285517Snate@binkert.org# the corresponding build directory to pick up generated include 4295517Snate@binkert.org# files. 4305517Snate@binkert.orgenv.Append(CPPPATH='.') 4315517Snate@binkert.org 4325517Snate@binkert.org# Debug binary 4335517Snate@binkert.orgdebug = env.Copy(OBJSUFFIX='.do') 4346654Snate@binkert.orgdebug.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 4355517Snate@binkert.orgdebug.Append(CPPDEFINES='DEBUG') 4365517Snate@binkert.orgdebug.Program(target = 'm5.debug', source = make_objs(sources, debug)) 4375517Snate@binkert.org 4385517Snate@binkert.org# Optimized binary 4395517Snate@binkert.orgopt = env.Copy() 4405517Snate@binkert.orgopt.Append(CCFLAGS=Split('-g -O5')) 4415517Snate@binkert.orgopt.Program(target = 'm5.opt', source = make_objs(sources, opt)) 4425517Snate@binkert.org 4436143Snate@binkert.org# "Fast" binary 4446654Snate@binkert.orgfast = env.Copy(OBJSUFFIX='.fo') 4455517Snate@binkert.orgfast.Append(CCFLAGS=Split('-O5')) 4465517Snate@binkert.orgfast.Append(CPPDEFINES='NDEBUG') 4475517Snate@binkert.orgfast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast)) 4485517Snate@binkert.orgfast.Command(target = 'm5.fast', source = 'm5.fast.unstripped', 4495517Snate@binkert.org action = 'strip $SOURCE -o $TARGET') 4505517Snate@binkert.org 4515517Snate@binkert.org# Profiled binary 4525517Snate@binkert.orgprof = env.Copy(OBJSUFFIX='.po') 4535517Snate@binkert.orgprof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 4545517Snate@binkert.orgprof.Program(target = 'm5.prof', source = make_objs(sources, prof)) 4555517Snate@binkert.org