SConscript revision 1762
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################################################### 44955SN/A 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 547674Snate@binkert.org 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 648233Snate@binkert.org base/intmath.cc 658233Snate@binkert.org base/match.cc 668233Snate@binkert.org base/misc.cc 678233Snate@binkert.org base/output.cc 688233Snate@binkert.org base/pollevent.cc 698233Snate@binkert.org base/python.cc 708233Snate@binkert.org base/range.cc 718233Snate@binkert.org base/random.cc 726143Snate@binkert.org base/sat_counter.cc 738233Snate@binkert.org base/socket.cc 748233Snate@binkert.org base/statistics.cc 758233Snate@binkert.org base/str.cc 766143Snate@binkert.org base/time.cc 776143Snate@binkert.org base/trace.cc 786143Snate@binkert.org base/traceflags.cc 796143Snate@binkert.org base/userinfo.cc 808233Snate@binkert.org base/compression/lzss_compression.cc 818233Snate@binkert.org base/loader/aout_object.cc 828233Snate@binkert.org base/loader/ecoff_object.cc 836143Snate@binkert.org base/loader/elf_object.cc 848233Snate@binkert.org base/loader/object_file.cc 858233Snate@binkert.org base/loader/symtab.cc 868233Snate@binkert.org base/stats/events.cc 878233Snate@binkert.org base/stats/python.cc 886143Snate@binkert.org base/stats/statdb.cc 896143Snate@binkert.org base/stats/visit.cc 906143Snate@binkert.org base/stats/text.cc 914762Snate@binkert.org 926143Snate@binkert.org cpu/base.cc 938233Snate@binkert.org cpu/base_dyn_inst.cc 948233Snate@binkert.org cpu/exec_context.cc 958233Snate@binkert.org cpu/exetrace.cc 968233Snate@binkert.org cpu/pc_event.cc 978233Snate@binkert.org cpu/static_inst.cc 986143Snate@binkert.org cpu/o3/2bit_local_pred.cc 998233Snate@binkert.org cpu/o3/alpha_dyn_inst.cc 1008233Snate@binkert.org cpu/o3/alpha_cpu.cc 1018233Snate@binkert.org cpu/o3/alpha_cpu_builder.cc 1028233Snate@binkert.org cpu/o3/bpred_unit.cc 1036143Snate@binkert.org cpu/o3/btb.cc 1046143Snate@binkert.org cpu/o3/commit.cc 1056143Snate@binkert.org cpu/o3/decode.cc 1066143Snate@binkert.org cpu/o3/fetch.cc 1076143Snate@binkert.org cpu/o3/free_list.cc 1086143Snate@binkert.org cpu/o3/cpu.cc 1096143Snate@binkert.org cpu/o3/iew.cc 1106143Snate@binkert.org cpu/o3/inst_queue.cc 1116143Snate@binkert.org cpu/o3/ldstq.cc 1127065Snate@binkert.org cpu/o3/mem_dep_unit.cc 1136143Snate@binkert.org cpu/o3/ras.cc 1148233Snate@binkert.org cpu/o3/rename.cc 1158233Snate@binkert.org cpu/o3/rename_map.cc 1168233Snate@binkert.org cpu/o3/rob.cc 1178233Snate@binkert.org cpu/o3/sat_counter.cc 1188233Snate@binkert.org cpu/o3/store_set.cc 1198233Snate@binkert.org cpu/o3/tournament_pred.cc 1208233Snate@binkert.org cpu/fast/cpu.cc 1218233Snate@binkert.org cpu/sampler/sampler.cc 1228233Snate@binkert.org cpu/simple/cpu.cc 1238233Snate@binkert.org cpu/trace/reader/mem_trace_reader.cc 1248233Snate@binkert.org cpu/trace/reader/ibm_reader.cc 1258233Snate@binkert.org cpu/trace/reader/itx_reader.cc 1268233Snate@binkert.org cpu/trace/reader/m5_reader.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 1456143Snate@binkert.org encumbered/cpu/full/machine_queue.cc 1466143Snate@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 1536143Snate@binkert.org encumbered/cpu/full/storebuffer.cc 1548233Snate@binkert.org encumbered/cpu/full/writeback.cc 1558233Snate@binkert.org encumbered/cpu/full/iq/iq_station.cc 1568233Snate@binkert.org encumbered/cpu/full/iq/iqueue.cc 1576143Snate@binkert.org encumbered/cpu/full/iq/segmented/chain_info.cc 1586143Snate@binkert.org encumbered/cpu/full/iq/segmented/chain_wire.cc 1596143Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_seg.cc 1606143Snate@binkert.org encumbered/cpu/full/iq/segmented/iq_segmented.cc 1616143Snate@binkert.org encumbered/cpu/full/iq/segmented/seg_chain.cc 1626143Snate@binkert.org encumbered/cpu/full/iq/seznec/iq_seznec.cc 1635522Snate@binkert.org encumbered/cpu/full/iq/standard/iq_standard.cc 1646143Snate@binkert.org encumbered/mem/functional/main.cc 1656143Snate@binkert.org 1666143Snate@binkert.org mem/base_hier.cc 1676143Snate@binkert.org mem/base_mem.cc 1688233Snate@binkert.org mem/hier_params.cc 1698233Snate@binkert.org mem/mem_cmd.cc 1708233Snate@binkert.org mem/mem_debug.cc 1716143Snate@binkert.org mem/mem_req.cc 1726143Snate@binkert.org mem/memory_interface.cc 1736143Snate@binkert.org mem/bus/base_interface.cc 1746143Snate@binkert.org mem/bus/bus.cc 1755522Snate@binkert.org mem/bus/bus_bridge.cc 1765522Snate@binkert.org mem/bus/bus_bridge_master.cc 1775522Snate@binkert.org mem/bus/bus_bridge_slave.cc 1785522Snate@binkert.org mem/bus/bus_interface.cc 1795604Snate@binkert.org mem/bus/dma_bus_interface.cc 1805604Snate@binkert.org mem/bus/dma_interface.cc 1816143Snate@binkert.org mem/bus/master_interface.cc 1826143Snate@binkert.org mem/bus/slave_interface.cc 1834762Snate@binkert.org mem/cache/base_cache.cc 1844762Snate@binkert.org mem/cache/cache.cc 1856143Snate@binkert.org mem/cache/cache_builder.cc 1866727Ssteve.reinhardt@amd.com mem/cache/coherence/coherence_protocol.cc 1876727Ssteve.reinhardt@amd.com mem/cache/coherence/uni_coherence.cc 1886727Ssteve.reinhardt@amd.com mem/cache/miss/blocking_buffer.cc 1894762Snate@binkert.org mem/cache/miss/miss_queue.cc 1906143Snate@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 1936143Snate@binkert.org mem/cache/prefetch/ghb_prefetcher.cc 1946727Ssteve.reinhardt@amd.com mem/cache/prefetch/prefetcher.cc 1956143Snate@binkert.org mem/cache/prefetch/stride_prefetcher.cc 1967674Snate@binkert.org mem/cache/prefetch/tagged_prefetcher.cc 1977674Snate@binkert.org mem/cache/tags/base_tags.cc 1985604Snate@binkert.org mem/cache/tags/cache_tags.cc 1996143Snate@binkert.org mem/cache/tags/fa_lru.cc 2006143Snate@binkert.org mem/cache/tags/iic.cc 2016143Snate@binkert.org mem/cache/tags/lru.cc 2024762Snate@binkert.org mem/cache/tags/split.cc 2036143Snate@binkert.org mem/cache/tags/split_lifo.cc 2044762Snate@binkert.org mem/cache/tags/split_lru.cc 2054762Snate@binkert.org mem/cache/tags/repl/gen.cc 2064762Snate@binkert.org mem/cache/tags/repl/repl.cc 2076143Snate@binkert.org mem/functional/functional.cc 2086143Snate@binkert.org mem/timing/base_memory.cc 2094762Snate@binkert.org mem/timing/memory_builder.cc 2108233Snate@binkert.org mem/timing/simple_mem_bank.cc 2118233Snate@binkert.org mem/trace/itx_writer.cc 2128233Snate@binkert.org mem/trace/mem_trace_writer.cc 2138233Snate@binkert.org mem/trace/m5_writer.cc 2146143Snate@binkert.org 2156143Snate@binkert.org python/pyconfig.cc 2164762Snate@binkert.org python/embedded_py.cc 2176143Snate@binkert.org 2184762Snate@binkert.org sim/builder.cc 2196143Snate@binkert.org sim/configfile.cc 2204762Snate@binkert.org sim/debug.cc 2216143Snate@binkert.org sim/eventq.cc 2228233Snate@binkert.org sim/main.cc 2238233Snate@binkert.org sim/param.cc 2248233Snate@binkert.org sim/profile.cc 2256143Snate@binkert.org sim/root.cc 2266143Snate@binkert.org sim/serialize.cc 2276143Snate@binkert.org sim/sim_events.cc 2286143Snate@binkert.org sim/sim_exit.cc 2296143Snate@binkert.org sim/sim_object.cc 2306143Snate@binkert.org sim/startup.cc 2316143Snate@binkert.org sim/stat_context.cc 2326143Snate@binkert.org sim/stat_control.cc 2338233Snate@binkert.org sim/trace_context.cc 2348233Snate@binkert.org ''') 235955SN/A 2365584Snate@binkert.org# MySql sources 2375584Snate@binkert.orgmysql_sources = Split(''' 2388233Snate@binkert.org base/mysql.cc 2398233Snate@binkert.org base/stats/mysql.cc 2405584Snate@binkert.org ''') 2415584Snate@binkert.org 2426143Snate@binkert.org# Full-system sources 2436143Snate@binkert.orgfull_system_sources = Split(''' 2446143Snate@binkert.org arch/alpha/alpha_memory.cc 2455584Snate@binkert.org arch/alpha/arguments.cc 2464382Sbinkertn@umich.edu arch/alpha/ev5.cc 2474202Sbinkertn@umich.edu arch/alpha/osfpal.cc 2484382Sbinkertn@umich.edu arch/alpha/pseudo_inst.cc 2494382Sbinkertn@umich.edu arch/alpha/vtophys.cc 2504382Sbinkertn@umich.edu 2515584Snate@binkert.org base/crc.cc 2524382Sbinkertn@umich.edu base/inet.cc 2534382Sbinkertn@umich.edu base/remote_gdb.cc 2544382Sbinkertn@umich.edu 2558232Snate@binkert.org cpu/intr_control.cc 2565192Ssaidi@eecs.umich.edu 2578232Snate@binkert.org dev/alpha_console.cc 2588232Snate@binkert.org dev/baddev.cc 2598232Snate@binkert.org dev/simconsole.cc 2605192Ssaidi@eecs.umich.edu dev/disk_image.cc 2618232Snate@binkert.org dev/etherbus.cc 2628232Snate@binkert.org dev/etherdump.cc 2635192Ssaidi@eecs.umich.edu dev/etherint.cc 2645799Snate@binkert.org dev/etherlink.cc 2658232Snate@binkert.org dev/etherpkt.cc 2665192Ssaidi@eecs.umich.edu dev/ethertap.cc 2675192Ssaidi@eecs.umich.edu dev/ide_ctrl.cc 2685192Ssaidi@eecs.umich.edu dev/ide_disk.cc 2698232Snate@binkert.org dev/io_device.cc 2705192Ssaidi@eecs.umich.edu dev/ns_gige.cc 2718232Snate@binkert.org dev/pciconfigall.cc 2725192Ssaidi@eecs.umich.edu dev/pcidev.cc 2735192Ssaidi@eecs.umich.edu dev/pktfifo.cc 2745192Ssaidi@eecs.umich.edu dev/platform.cc 2755192Ssaidi@eecs.umich.edu dev/sinic.cc 2765192Ssaidi@eecs.umich.edu dev/simple_disk.cc 2774382Sbinkertn@umich.edu dev/tsunami.cc 2784382Sbinkertn@umich.edu dev/tsunami_cchip.cc 2794382Sbinkertn@umich.edu dev/tsunami_fake.cc 2802667Sstever@eecs.umich.edu dev/tsunami_io.cc 2812667Sstever@eecs.umich.edu dev/tsunami_pchip.cc 2822667Sstever@eecs.umich.edu dev/uart.cc 2832667Sstever@eecs.umich.edu dev/uart8250.cc 2842667Sstever@eecs.umich.edu 2852667Sstever@eecs.umich.edu kern/kernel_binning.cc 2865742Snate@binkert.org kern/kernel_stats.cc 2875742Snate@binkert.org kern/system_events.cc 2885742Snate@binkert.org kern/linux/linux_events.cc 2895793Snate@binkert.org kern/linux/linux_syscalls.cc 2905793Snate@binkert.org kern/linux/linux_system.cc 2915793Snate@binkert.org kern/linux/printk.cc 2925793Snate@binkert.org kern/tru64/dump_mbuf.cc 2935793Snate@binkert.org kern/tru64/printf.cc 2944382Sbinkertn@umich.edu kern/tru64/tru64_events.cc 2954762Snate@binkert.org kern/tru64/tru64_syscalls.cc 2965344Sstever@gmail.com kern/tru64/tru64_system.cc 2974382Sbinkertn@umich.edu 2985341Sstever@gmail.com mem/functional/memory_control.cc 2995742Snate@binkert.org mem/functional/physical.cc 3005742Snate@binkert.org 3015742Snate@binkert.org sim/system.cc 3025742Snate@binkert.org ''') 3035742Snate@binkert.org 3044762Snate@binkert.org# turbolaser encumbered sources 3055742Snate@binkert.orgturbolaser_sources = Split(''' 3065742Snate@binkert.org encumbered/dev/dma.cc 3077722Sgblack@eecs.umich.edu encumbered/dev/etherdev.cc 3085742Snate@binkert.org encumbered/dev/scsi.cc 3095742Snate@binkert.org encumbered/dev/scsi_ctrl.cc 3105742Snate@binkert.org encumbered/dev/scsi_disk.cc 3115742Snate@binkert.org encumbered/dev/scsi_none.cc 3125341Sstever@gmail.com encumbered/dev/tlaser_clock.cc 3135742Snate@binkert.org encumbered/dev/tlaser_ipi.cc 3147722Sgblack@eecs.umich.edu encumbered/dev/tlaser_mbox.cc 3154773Snate@binkert.org encumbered/dev/tlaser_mc146818.cc 3166108Snate@binkert.org encumbered/dev/tlaser_node.cc 3171858SN/A encumbered/dev/tlaser_pcia.cc 3181085SN/A encumbered/dev/tlaser_pcidev.cc 3196658Snate@binkert.org encumbered/dev/tlaser_serial.cc 3206658Snate@binkert.org encumbered/dev/turbolaser.cc 3217673Snate@binkert.org encumbered/dev/uart8530.cc 3226658Snate@binkert.org ''') 3236658Snate@binkert.org 3246658Snate@binkert.org# Syscall emulation (non-full-system) sources 3256658Snate@binkert.orgsyscall_emulation_sources = Split(''' 3266658Snate@binkert.org arch/alpha/alpha_common_syscall_emul.cc 3276658Snate@binkert.org arch/alpha/alpha_linux_process.cc 3286658Snate@binkert.org arch/alpha/alpha_tru64_process.cc 3297673Snate@binkert.org cpu/memtest/memtest.cc 3307673Snate@binkert.org cpu/trace/opt_cpu.cc 3317673Snate@binkert.org cpu/trace/trace_cpu.cc 3327673Snate@binkert.org encumbered/eio/eio.cc 3337673Snate@binkert.org encumbered/eio/exolex.cc 3347673Snate@binkert.org encumbered/eio/libexo.cc 3357673Snate@binkert.org sim/process.cc 3366658Snate@binkert.org sim/syscall_emul.cc 3377673Snate@binkert.org ''') 3387673Snate@binkert.org 3397673Snate@binkert.orgtargetarch_files = Split(''' 3407673Snate@binkert.org alpha_common_syscall_emul.hh 3417673Snate@binkert.org alpha_linux_process.hh 3427673Snate@binkert.org alpha_memory.hh 3437673Snate@binkert.org alpha_tru64_process.hh 3447673Snate@binkert.org aout_machdep.h 3457673Snate@binkert.org arguments.hh 3467673Snate@binkert.org byte_swap.hh 3476658Snate@binkert.org ecoff_machdep.h 3487756SAli.Saidi@ARM.com elf_machdep.h 3497816Ssteve.reinhardt@amd.com ev5.hh 3506658Snate@binkert.org faults.hh 3514382Sbinkertn@umich.edu isa_fullsys_traits.hh 3524382Sbinkertn@umich.edu isa_traits.hh 3534762Snate@binkert.org osfpal.hh 3544762Snate@binkert.org pseudo_inst.hh 3554762Snate@binkert.org vptr.hh 3566654Snate@binkert.org vtophys.hh 3576654Snate@binkert.org ''') 3585517Snate@binkert.org 3595517Snate@binkert.orgfor f in targetarch_files: 3605517Snate@binkert.org env.Command('targetarch/' + f, 'arch/alpha/' + f, 3615517Snate@binkert.org '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 3625517Snate@binkert.org 3635517Snate@binkert.org 3645517Snate@binkert.org# Set up complete list of sources based on configuration. 3655517Snate@binkert.orgsources = base_sources 3665517Snate@binkert.org 3675517Snate@binkert.orgif env['FULL_SYSTEM']: 3685517Snate@binkert.org sources += full_system_sources 3695517Snate@binkert.org if env['ALPHA_TLASER']: 3705517Snate@binkert.org sources += turbolaser_sources 3715517Snate@binkert.orgelse: 3725517Snate@binkert.org sources += syscall_emulation_sources 3735517Snate@binkert.org 3745517Snate@binkert.orgextra_libraries = [] 3756654Snate@binkert.orgenv.Append(LIBS=['z']) 3765517Snate@binkert.orgif isdir('/usr/lib64/mysql') or isdir('/usr/lib/mysql') or \ 3775517Snate@binkert.org isdir('/usr/local/lib/mysql'): 3785517Snate@binkert.org print 'Compiling with MySQL support!' 3795517Snate@binkert.org env.Append(LIBPATH=['/usr/lib64/mysql', '/usr/local/lib/mysql/', 3805517Snate@binkert.org '/usr/lib/mysql']) 3815517Snate@binkert.org env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql']) 3825517Snate@binkert.org sources += mysql_sources 3835517Snate@binkert.org env.Append(CPPDEFINES = 'USE_MYSQL') 3846143Snate@binkert.org env.Append(CPPDEFINES = 'STATS_BINNING') 3856654Snate@binkert.org env.Append(LIBS=['mysqlclient']) 3865517Snate@binkert.org 3875517Snate@binkert.org################################################### 3885517Snate@binkert.org# 3895517Snate@binkert.org# Special build rules. 3905517Snate@binkert.org# 3915517Snate@binkert.org################################################### 3925517Snate@binkert.org 3935517Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py. 3945517Snate@binkert.org# $TARGET.base will expand to "<build-dir>/base/traceflags". 3955517Snate@binkert.orgenv.Command(Split('base/traceflags.hh base/traceflags.cc'), 3965517Snate@binkert.org 'base/traceflags.py', 3975517Snate@binkert.org 'python $SOURCE $TARGET.base') 3985517Snate@binkert.org 3995517Snate@binkert.org# several files are generated from arch/$TARGET_ISA/isa_desc. 4006654Snate@binkert.orgenv.Command(Split('''arch/alpha/decoder.cc 4016654Snate@binkert.org arch/alpha/decoder.hh 4025517Snate@binkert.org arch/alpha/alpha_o3_exec.cc 4035517Snate@binkert.org arch/alpha/fast_cpu_exec.cc 4046143Snate@binkert.org arch/alpha/simple_cpu_exec.cc 4056143Snate@binkert.org arch/alpha/full_cpu_exec.cc'''), 4066143Snate@binkert.org Split('''arch/alpha/isa_desc 4076727Ssteve.reinhardt@amd.com arch/isa_parser.py'''), 4085517Snate@binkert.org '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 4096727Ssteve.reinhardt@amd.com 4105517Snate@binkert.org 4115517Snate@binkert.org# libelf build is described in its own SConscript file. 4125517Snate@binkert.org# SConscript-local is the per-config build, which just copies some 4136654Snate@binkert.org# header files into a place where they can be found. 4146654Snate@binkert.orgSConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 4157673Snate@binkert.orgSConscript('python/SConscript', exports = ['env'], duplicate=0) 4166654Snate@binkert.org 4176654Snate@binkert.org# This function adds the specified sources to the given build 4186654Snate@binkert.org# environment, and returns a list of all the corresponding SCons 4196654Snate@binkert.org# Object nodes (including an extra one for date.cc). We explicitly 4205517Snate@binkert.org# add the Object nodes so we can set up special dependencies for 4215517Snate@binkert.org# date.cc. 4225517Snate@binkert.orgdef make_objs(sources, env): 4236143Snate@binkert.org objs = [env.Object(s) for s in sources] 4245517Snate@binkert.org # make date.cc depend on all other objects so it always gets 4254762Snate@binkert.org # recompiled whenever anything else does 4265517Snate@binkert.org date_obj = env.Object('base/date.cc') 4275517Snate@binkert.org env.Depends(date_obj, objs) 4286143Snate@binkert.org objs.append(date_obj) 4296143Snate@binkert.org objs.extend(extra_libraries) 4305517Snate@binkert.org return objs 4315517Snate@binkert.org 4325517Snate@binkert.org################################################### 4335517Snate@binkert.org# 4345517Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 4355517Snate@binkert.org# a slightly different build environment. 4365517Snate@binkert.org# 4375517Snate@binkert.org################################################### 4385517Snate@binkert.org 4395517Snate@binkert.org# Include file paths are rooted in this directory. SCons will 4406143Snate@binkert.org# automatically expand '.' to refer to both the source directory and 4415517Snate@binkert.org# the corresponding build directory to pick up generated include 4426654Snate@binkert.org# files. 4436654Snate@binkert.orgenv.Append(CPPPATH='.') 4446654Snate@binkert.org 4456654Snate@binkert.org# Debug binary 4466654Snate@binkert.orgdebug = env.Copy(OBJSUFFIX='.do') 4476654Snate@binkert.orgdebug.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 4485517Snate@binkert.orgdebug.Append(CPPDEFINES='DEBUG') 4495517Snate@binkert.orgdebug.Program(target = 'm5.debug', source = make_objs(sources, debug)) 4505517Snate@binkert.org 4515517Snate@binkert.org# Optimized binary 4525517Snate@binkert.orgopt = env.Copy() 4534762Snate@binkert.orgopt.Append(CCFLAGS=Split('-g -O5')) 4544762Snate@binkert.orgopt.Program(target = 'm5.opt', source = make_objs(sources, opt)) 4554762Snate@binkert.org 4564762Snate@binkert.org# "Fast" binary 4574762Snate@binkert.orgfast = env.Copy(OBJSUFFIX='.fo') 4584762Snate@binkert.orgfast.Append(CCFLAGS=Split('-O5')) 4597675Snate@binkert.orgfast.Append(CPPDEFINES='NDEBUG') 4604762Snate@binkert.orgfast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast)) 4614762Snate@binkert.orgfast.Command(target = 'm5.fast', source = 'm5.fast.unstripped', 4624762Snate@binkert.org action = 'strip $SOURCE -o $TARGET') 4634762Snate@binkert.org 4644382Sbinkertn@umich.edu# Profiled binary 4654382Sbinkertn@umich.eduprof = env.Copy(OBJSUFFIX='.po') 4665517Snate@binkert.orgprof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 4676654Snate@binkert.orgprof.Program(target = 'm5.prof', source = make_objs(sources, prof)) 4685517Snate@binkert.org