SConscript revision 1869
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
324762Snate@binkert.org
335522Snate@binkert.org# This file defines how to build a particular configuration of M5
34955SN/A# based on variable settings in the 'env' build environment.
355522Snate@binkert.org
36955SN/A# Import build environment variable from SConstruct.
375522Snate@binkert.orgImport('env')
384202Sbinkertn@umich.edu
395342Sstever@gmail.com###################################################
40955SN/A#
414381Sbinkertn@umich.edu# Define needed sources.
424381Sbinkertn@umich.edu#
43955SN/A###################################################
44955SN/A
45955SN/A# Base sources used by all configurations.
464202Sbinkertn@umich.edubase_sources = Split('''
47955SN/A	arch/alpha/decoder.cc
484382Sbinkertn@umich.edu        arch/alpha/alpha_o3_exec.cc
494382Sbinkertn@umich.edu	arch/alpha/fast_cpu_exec.cc
504382Sbinkertn@umich.edu	arch/alpha/simple_cpu_exec.cc
515517Snate@binkert.org	arch/alpha/full_cpu_exec.cc
525517Snate@binkert.org	arch/alpha/faults.cc
534762Snate@binkert.org	arch/alpha/isa_traits.cc
544762Snate@binkert.org
554762Snate@binkert.org	base/circlebuf.cc
564762Snate@binkert.org	base/copyright.cc
574762Snate@binkert.org	base/cprintf.cc
584762Snate@binkert.org        base/embedfile.cc
594762Snate@binkert.org	base/fast_alloc.cc
604762Snate@binkert.org	base/fifo_buffer.cc
614762Snate@binkert.org	base/hostinfo.cc
624762Snate@binkert.org	base/hybrid_pred.cc
635522Snate@binkert.org	base/inifile.cc
644762Snate@binkert.org	base/intmath.cc
654762Snate@binkert.org	base/match.cc
664762Snate@binkert.org	base/misc.cc
674762Snate@binkert.org	base/output.cc
684762Snate@binkert.org	base/pollevent.cc
695522Snate@binkert.org	base/range.cc
705522Snate@binkert.org	base/random.cc
715522Snate@binkert.org	base/sat_counter.cc
725522Snate@binkert.org	base/socket.cc
734762Snate@binkert.org	base/statistics.cc
744762Snate@binkert.org	base/str.cc
754762Snate@binkert.org	base/time.cc
764762Snate@binkert.org	base/trace.cc
774762Snate@binkert.org	base/traceflags.cc
785522Snate@binkert.org	base/userinfo.cc
794762Snate@binkert.org	base/compression/lzss_compression.cc
804762Snate@binkert.org	base/loader/aout_object.cc
815522Snate@binkert.org	base/loader/ecoff_object.cc
825522Snate@binkert.org	base/loader/elf_object.cc
834762Snate@binkert.org	base/loader/object_file.cc
844762Snate@binkert.org	base/loader/symtab.cc
854762Snate@binkert.org	base/stats/events.cc
864762Snate@binkert.org	base/stats/statdb.cc
874762Snate@binkert.org	base/stats/visit.cc
884762Snate@binkert.org	base/stats/text.cc
895522Snate@binkert.org
905522Snate@binkert.org	cpu/base.cc
915522Snate@binkert.org        cpu/base_dyn_inst.cc
924762Snate@binkert.org	cpu/exec_context.cc
934382Sbinkertn@umich.edu	cpu/exetrace.cc
944762Snate@binkert.org	cpu/pc_event.cc
954382Sbinkertn@umich.edu	cpu/static_inst.cc
965522Snate@binkert.org        cpu/o3/2bit_local_pred.cc
974381Sbinkertn@umich.edu        cpu/o3/alpha_dyn_inst.cc
985522Snate@binkert.org        cpu/o3/alpha_cpu.cc
994762Snate@binkert.org        cpu/o3/alpha_cpu_builder.cc
1004762Snate@binkert.org        cpu/o3/bpred_unit.cc
1014762Snate@binkert.org        cpu/o3/btb.cc
1025522Snate@binkert.org        cpu/o3/commit.cc
1035522Snate@binkert.org        cpu/o3/decode.cc
1045522Snate@binkert.org        cpu/o3/fetch.cc
1055522Snate@binkert.org        cpu/o3/free_list.cc
1065522Snate@binkert.org        cpu/o3/cpu.cc
1075522Snate@binkert.org        cpu/o3/iew.cc
1085522Snate@binkert.org        cpu/o3/inst_queue.cc
1095522Snate@binkert.org        cpu/o3/ldstq.cc
1105522Snate@binkert.org        cpu/o3/mem_dep_unit.cc
1114762Snate@binkert.org        cpu/o3/ras.cc
1124762Snate@binkert.org        cpu/o3/rename.cc
1134762Snate@binkert.org        cpu/o3/rename_map.cc
1144762Snate@binkert.org        cpu/o3/rob.cc
1154762Snate@binkert.org        cpu/o3/sat_counter.cc
1164762Snate@binkert.org        cpu/o3/store_set.cc
1174762Snate@binkert.org        cpu/o3/tournament_pred.cc
1184762Snate@binkert.org	cpu/fast/cpu.cc
1194762Snate@binkert.org        cpu/sampler/sampler.cc
1204762Snate@binkert.org        cpu/simple/cpu.cc
1214762Snate@binkert.org        cpu/trace/reader/mem_trace_reader.cc
1224762Snate@binkert.org        cpu/trace/reader/ibm_reader.cc
1234762Snate@binkert.org        cpu/trace/reader/itx_reader.cc
1244762Snate@binkert.org        cpu/trace/reader/m5_reader.cc
1254762Snate@binkert.org        cpu/trace/opt_cpu.cc
1264762Snate@binkert.org        cpu/trace/trace_cpu.cc
1274762Snate@binkert.org
1284762Snate@binkert.org	encumbered/cpu/full/bpred.cc
1294762Snate@binkert.org	encumbered/cpu/full/commit.cc
1304762Snate@binkert.org	encumbered/cpu/full/cpu.cc
1314762Snate@binkert.org	encumbered/cpu/full/create_vector.cc
1324762Snate@binkert.org	encumbered/cpu/full/cv_spec_state.cc
1334762Snate@binkert.org	encumbered/cpu/full/dd_queue.cc
1344762Snate@binkert.org	encumbered/cpu/full/dep_link.cc
1354762Snate@binkert.org	encumbered/cpu/full/dispatch.cc
1364762Snate@binkert.org	encumbered/cpu/full/dyn_inst.cc
1374762Snate@binkert.org	encumbered/cpu/full/execute.cc
1384762Snate@binkert.org	encumbered/cpu/full/fetch.cc
1394762Snate@binkert.org	encumbered/cpu/full/floss_reasons.cc
1404762Snate@binkert.org	encumbered/cpu/full/fu_pool.cc
1414762Snate@binkert.org	encumbered/cpu/full/inst_fifo.cc
1424762Snate@binkert.org	encumbered/cpu/full/instpipe.cc
1434762Snate@binkert.org	encumbered/cpu/full/issue.cc
1444762Snate@binkert.org	encumbered/cpu/full/ls_queue.cc
1454762Snate@binkert.org	encumbered/cpu/full/machine_queue.cc
146955SN/A        encumbered/cpu/full/pc_sample_profile.cc
1475584Snate@binkert.org        encumbered/cpu/full/pipetrace.cc
1485584Snate@binkert.org        encumbered/cpu/full/readyq.cc
1495584Snate@binkert.org        encumbered/cpu/full/reg_info.cc
1505584Snate@binkert.org        encumbered/cpu/full/rob_station.cc
1515584Snate@binkert.org        encumbered/cpu/full/spec_memory.cc
1525584Snate@binkert.org        encumbered/cpu/full/spec_state.cc
1535584Snate@binkert.org        encumbered/cpu/full/storebuffer.cc
1545584Snate@binkert.org        encumbered/cpu/full/writeback.cc
1555584Snate@binkert.org        encumbered/cpu/full/iq/iq_station.cc
1565584Snate@binkert.org        encumbered/cpu/full/iq/iqueue.cc
1575584Snate@binkert.org        encumbered/cpu/full/iq/segmented/chain_info.cc
1585584Snate@binkert.org        encumbered/cpu/full/iq/segmented/chain_wire.cc
1595584Snate@binkert.org        encumbered/cpu/full/iq/segmented/iq_seg.cc
1604382Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/iq_segmented.cc
1614202Sbinkertn@umich.edu        encumbered/cpu/full/iq/segmented/seg_chain.cc
1625522Snate@binkert.org        encumbered/cpu/full/iq/seznec/iq_seznec.cc
1634382Sbinkertn@umich.edu        encumbered/cpu/full/iq/standard/iq_standard.cc
1644382Sbinkertn@umich.edu	encumbered/mem/functional/main.cc
1654382Sbinkertn@umich.edu
1665584Snate@binkert.org	mem/base_hier.cc
1674382Sbinkertn@umich.edu	mem/base_mem.cc
1684382Sbinkertn@umich.edu	mem/hier_params.cc
1694382Sbinkertn@umich.edu	mem/mem_cmd.cc
1705192Ssaidi@eecs.umich.edu	mem/mem_debug.cc
1715192Ssaidi@eecs.umich.edu	mem/mem_req.cc
1725192Ssaidi@eecs.umich.edu	mem/memory_interface.cc
1735192Ssaidi@eecs.umich.edu	mem/bus/base_interface.cc
1745192Ssaidi@eecs.umich.edu	mem/bus/bus.cc
1755192Ssaidi@eecs.umich.edu	mem/bus/bus_bridge.cc
1765192Ssaidi@eecs.umich.edu	mem/bus/bus_bridge_master.cc
1775192Ssaidi@eecs.umich.edu	mem/bus/bus_bridge_slave.cc
1785192Ssaidi@eecs.umich.edu	mem/bus/bus_interface.cc
1795192Ssaidi@eecs.umich.edu	mem/bus/dma_bus_interface.cc
1805192Ssaidi@eecs.umich.edu	mem/bus/dma_interface.cc
1815192Ssaidi@eecs.umich.edu	mem/bus/master_interface.cc
1825192Ssaidi@eecs.umich.edu	mem/bus/slave_interface.cc
1835192Ssaidi@eecs.umich.edu	mem/cache/base_cache.cc
1845192Ssaidi@eecs.umich.edu	mem/cache/cache.cc
1855192Ssaidi@eecs.umich.edu	mem/cache/cache_builder.cc
1865192Ssaidi@eecs.umich.edu	mem/cache/coherence/coherence_protocol.cc
1875192Ssaidi@eecs.umich.edu	mem/cache/coherence/uni_coherence.cc
1885192Ssaidi@eecs.umich.edu	mem/cache/miss/blocking_buffer.cc
1895192Ssaidi@eecs.umich.edu	mem/cache/miss/miss_queue.cc
1905192Ssaidi@eecs.umich.edu	mem/cache/miss/mshr.cc
1915192Ssaidi@eecs.umich.edu	mem/cache/miss/mshr_queue.cc
1925192Ssaidi@eecs.umich.edu        mem/cache/prefetch/base_prefetcher.cc
1935192Ssaidi@eecs.umich.edu        mem/cache/prefetch/prefetcher.cc
1945192Ssaidi@eecs.umich.edu        mem/cache/prefetch/tagged_prefetcher.cc
1955192Ssaidi@eecs.umich.edu	mem/cache/tags/base_tags.cc
1965192Ssaidi@eecs.umich.edu	mem/cache/tags/cache_tags.cc
1975192Ssaidi@eecs.umich.edu	mem/cache/tags/fa_lru.cc
1985192Ssaidi@eecs.umich.edu	mem/cache/tags/iic.cc
1995192Ssaidi@eecs.umich.edu	mem/cache/tags/lru.cc
2005192Ssaidi@eecs.umich.edu	mem/cache/tags/repl/gen.cc
2015192Ssaidi@eecs.umich.edu	mem/cache/tags/repl/repl.cc
2024382Sbinkertn@umich.edu	mem/functional/functional.cc
2034382Sbinkertn@umich.edu	mem/timing/base_memory.cc
2044382Sbinkertn@umich.edu	mem/timing/memory_builder.cc
2052667Sstever@eecs.umich.edu	mem/timing/simple_mem_bank.cc
2062667Sstever@eecs.umich.edu        mem/trace/itx_writer.cc
2072667Sstever@eecs.umich.edu	mem/trace/mem_trace_writer.cc
2082667Sstever@eecs.umich.edu	mem/trace/m5_writer.cc
2092667Sstever@eecs.umich.edu
2102667Sstever@eecs.umich.edu        python/pyconfig.cc
2112037SN/A        python/embedded_py.cc
2122037SN/A
2132037SN/A	sim/builder.cc
2144382Sbinkertn@umich.edu	sim/configfile.cc
2154762Snate@binkert.org	sim/debug.cc
2165344Sstever@gmail.com	sim/eventq.cc
2174382Sbinkertn@umich.edu	sim/main.cc
2185341Sstever@gmail.com	sim/param.cc
2195341Sstever@gmail.com	sim/profile.cc
2205341Sstever@gmail.com	sim/root.cc
2215344Sstever@gmail.com	sim/serialize.cc
2225341Sstever@gmail.com	sim/sim_events.cc
2235341Sstever@gmail.com	sim/sim_exit.cc
2245341Sstever@gmail.com	sim/sim_object.cc
2254762Snate@binkert.org	sim/startup.cc
2265341Sstever@gmail.com	sim/stat_context.cc
2275344Sstever@gmail.com	sim/stat_control.cc
2285341Sstever@gmail.com	sim/trace_context.cc
2294773Snate@binkert.org        ''')
2301858SN/A
2311858SN/A# MySql sources
2321085SN/Amysql_sources = Split('''
2334382Sbinkertn@umich.edu	base/mysql.cc
2344382Sbinkertn@umich.edu	base/stats/mysql.cc
2354762Snate@binkert.org        ''')
2364762Snate@binkert.org
2374762Snate@binkert.org# Full-system sources
2385517Snate@binkert.orgfull_system_sources = Split('''
2395517Snate@binkert.org	arch/alpha/alpha_memory.cc
2405517Snate@binkert.org	arch/alpha/arguments.cc
2415517Snate@binkert.org	arch/alpha/ev5.cc
2425517Snate@binkert.org	arch/alpha/osfpal.cc
2435517Snate@binkert.org	arch/alpha/pseudo_inst.cc
2445517Snate@binkert.org	arch/alpha/vtophys.cc
2455517Snate@binkert.org
2465517Snate@binkert.org	base/crc.cc
2475517Snate@binkert.org	base/inet.cc
2485517Snate@binkert.org	base/remote_gdb.cc
2495517Snate@binkert.org
2505517Snate@binkert.org	cpu/intr_control.cc
2515517Snate@binkert.org
2525517Snate@binkert.org	dev/alpha_console.cc
2535517Snate@binkert.org	dev/baddev.cc
2545517Snate@binkert.org        dev/simconsole.cc
2555517Snate@binkert.org	dev/disk_image.cc
2565517Snate@binkert.org	dev/etherbus.cc
2575517Snate@binkert.org	dev/etherdump.cc
2585517Snate@binkert.org	dev/etherint.cc
2595517Snate@binkert.org	dev/etherlink.cc
2605517Snate@binkert.org	dev/etherpkt.cc
2615517Snate@binkert.org	dev/ethertap.cc
2625517Snate@binkert.org	dev/ide_ctrl.cc
2635517Snate@binkert.org	dev/ide_disk.cc
2645517Snate@binkert.org	dev/io_device.cc
2655517Snate@binkert.org	dev/ns_gige.cc
2665517Snate@binkert.org	dev/pciconfigall.cc
2675517Snate@binkert.org	dev/pcidev.cc
2685517Snate@binkert.org	dev/pcifake.cc
2695517Snate@binkert.org	dev/pktfifo.cc
2705517Snate@binkert.org	dev/platform.cc
2715517Snate@binkert.org	dev/sinic.cc
2725517Snate@binkert.org	dev/simple_disk.cc
2735517Snate@binkert.org	dev/tsunami.cc
2745517Snate@binkert.org	dev/tsunami_cchip.cc
2755517Snate@binkert.org	dev/isa_fake.cc
2765517Snate@binkert.org	dev/tsunami_io.cc
2775517Snate@binkert.org	dev/tsunami_pchip.cc
2785517Snate@binkert.org	dev/uart.cc
2795517Snate@binkert.org	dev/uart8250.cc
2805517Snate@binkert.org
2815517Snate@binkert.org	kern/kernel_binning.cc
2825517Snate@binkert.org	kern/kernel_stats.cc
2835517Snate@binkert.org	kern/system_events.cc
2845517Snate@binkert.org	kern/freebsd/freebsd_system.cc
2855517Snate@binkert.org	kern/freebsd/freebsd_events.cc
2865517Snate@binkert.org	kern/linux/linux_events.cc
2875517Snate@binkert.org	kern/linux/linux_syscalls.cc
2885517Snate@binkert.org	kern/linux/linux_system.cc
2895517Snate@binkert.org	kern/linux/printk.cc
2905517Snate@binkert.org	kern/tru64/dump_mbuf.cc
2915517Snate@binkert.org	kern/tru64/printf.cc
2925517Snate@binkert.org	kern/tru64/tru64_events.cc
2935517Snate@binkert.org	kern/tru64/tru64_syscalls.cc
2945522Snate@binkert.org	kern/tru64/tru64_system.cc
2955517Snate@binkert.org
2965517Snate@binkert.org	mem/functional/memory_control.cc
2975517Snate@binkert.org	mem/functional/physical.cc
2985517Snate@binkert.org
2994762Snate@binkert.org	sim/system.cc
3005517Snate@binkert.org        ''')
3015517Snate@binkert.org
3024762Snate@binkert.org# turbolaser encumbered sources
3035517Snate@binkert.orgturbolaser_sources = Split('''
3044762Snate@binkert.org	encumbered/dev/dma.cc
3055517Snate@binkert.org	encumbered/dev/etherdev.cc
3065517Snate@binkert.org	encumbered/dev/scsi.cc
3075517Snate@binkert.org	encumbered/dev/scsi_ctrl.cc
3085517Snate@binkert.org	encumbered/dev/scsi_disk.cc
3095517Snate@binkert.org	encumbered/dev/scsi_none.cc
3105517Snate@binkert.org	encumbered/dev/tlaser_clock.cc
3115517Snate@binkert.org	encumbered/dev/tlaser_ipi.cc
3125517Snate@binkert.org	encumbered/dev/tlaser_mbox.cc
3135517Snate@binkert.org	encumbered/dev/tlaser_mc146818.cc
3145517Snate@binkert.org	encumbered/dev/tlaser_node.cc
3155517Snate@binkert.org	encumbered/dev/tlaser_pcia.cc
3165517Snate@binkert.org	encumbered/dev/tlaser_pcidev.cc
3175517Snate@binkert.org	encumbered/dev/tlaser_serial.cc
3185517Snate@binkert.org	encumbered/dev/turbolaser.cc
3195517Snate@binkert.org	encumbered/dev/uart8530.cc
3205517Snate@binkert.org        ''')
3215517Snate@binkert.org
3225517Snate@binkert.org# Syscall emulation (non-full-system) sources
3235517Snate@binkert.orgsyscall_emulation_sources = Split('''
3245517Snate@binkert.org	arch/alpha/alpha_common_syscall_emul.cc
3255517Snate@binkert.org	arch/alpha/alpha_linux_process.cc
3265517Snate@binkert.org	arch/alpha/alpha_tru64_process.cc
3275517Snate@binkert.org	cpu/memtest/memtest.cc
3284762Snate@binkert.org	encumbered/eio/eio.cc
3294762Snate@binkert.org	encumbered/eio/exolex.cc
3304762Snate@binkert.org	encumbered/eio/libexo.cc
3314762Snate@binkert.org	sim/process.cc
3324762Snate@binkert.org	sim/syscall_emul.cc
3334762Snate@binkert.org        ''')
3345517Snate@binkert.org
3354762Snate@binkert.orgtargetarch_files = Split('''
3364762Snate@binkert.org        alpha_common_syscall_emul.hh
3374762Snate@binkert.org        alpha_linux_process.hh
3384762Snate@binkert.org        alpha_memory.hh
3394382Sbinkertn@umich.edu        alpha_tru64_process.hh
3404382Sbinkertn@umich.edu        aout_machdep.h
3415517Snate@binkert.org        arguments.hh
3425517Snate@binkert.org        byte_swap.hh
3435517Snate@binkert.org        ecoff_machdep.h
3445517Snate@binkert.org        ev5.hh
3455517Snate@binkert.org        faults.hh
3465517Snate@binkert.org        isa_fullsys_traits.hh
3475517Snate@binkert.org        isa_traits.hh
3485517Snate@binkert.org        osfpal.hh
3495517Snate@binkert.org        pseudo_inst.hh
3505517Snate@binkert.org        vptr.hh
3515517Snate@binkert.org        vtophys.hh
3525517Snate@binkert.org        ''')
3535517Snate@binkert.org
3545517Snate@binkert.orgfor f in targetarch_files:
3555517Snate@binkert.org    env.Command('targetarch/' + f, 'arch/alpha/' + f,
3565517Snate@binkert.org                '''echo '#include "arch/alpha/%s"' > $TARGET''' % f)
3575517Snate@binkert.org
3585517Snate@binkert.org
3595517Snate@binkert.org# Set up complete list of sources based on configuration.
3605517Snate@binkert.orgsources = base_sources
3615517Snate@binkert.org
3625517Snate@binkert.orgif env['FULL_SYSTEM']:
3635517Snate@binkert.org    sources += full_system_sources
3645517Snate@binkert.org    if env['ALPHA_TLASER']:
3654762Snate@binkert.org        sources += turbolaser_sources
3665517Snate@binkert.orgelse:
3674382Sbinkertn@umich.edu    sources += syscall_emulation_sources
3684382Sbinkertn@umich.edu
3694762Snate@binkert.orgif env['USE_MYSQL']:
3704382Sbinkertn@umich.edu    sources += mysql_sources
3714382Sbinkertn@umich.edu
3725517Snate@binkert.orgfor opt in env.ExportOptions:
3734382Sbinkertn@umich.edu    env.ConfigFile(opt)
3744382Sbinkertn@umich.edu
3754762Snate@binkert.org###################################################
3764382Sbinkertn@umich.edu#
3774762Snate@binkert.org# Special build rules.
3785517Snate@binkert.org#
3794382Sbinkertn@umich.edu###################################################
3804382Sbinkertn@umich.edu
3814762Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py.
3824762Snate@binkert.org# $TARGET.base will expand to "<build-dir>/base/traceflags".
3834762Snate@binkert.orgenv.Command(Split('base/traceflags.hh base/traceflags.cc'),
3844762Snate@binkert.org            'base/traceflags.py',
3854762Snate@binkert.org            'python $SOURCE $TARGET.base')
3865517Snate@binkert.org
3875517Snate@binkert.org# several files are generated from arch/$TARGET_ISA/isa_desc.
3885517Snate@binkert.orgenv.Command(Split('''arch/alpha/decoder.cc
3895517Snate@binkert.org		     arch/alpha/decoder.hh
3905517Snate@binkert.org                     arch/alpha/alpha_o3_exec.cc
3915517Snate@binkert.org		     arch/alpha/fast_cpu_exec.cc
3925517Snate@binkert.org                     arch/alpha/simple_cpu_exec.cc
3935517Snate@binkert.org                     arch/alpha/full_cpu_exec.cc'''),
3945517Snate@binkert.org            Split('''arch/alpha/isa_desc
3955517Snate@binkert.org		     arch/isa_parser.py'''),
3965517Snate@binkert.org            '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha')
3975517Snate@binkert.org
3985517Snate@binkert.org
3995517Snate@binkert.org# libelf build is described in its own SConscript file.
4005517Snate@binkert.org# SConscript-local is the per-config build, which just copies some
4015517Snate@binkert.org# header files into a place where they can be found.
4025517Snate@binkert.orgSConscript('libelf/SConscript-local', exports = 'env', duplicate=0)
4035517Snate@binkert.orgSConscript('python/SConscript', exports = ['env'], duplicate=0)
4045517Snate@binkert.org
4055517Snate@binkert.org# This function adds the specified sources to the given build
4065517Snate@binkert.org# environment, and returns a list of all the corresponding SCons
4075517Snate@binkert.org# Object nodes (including an extra one for date.cc).  We explicitly
4085517Snate@binkert.org# add the Object nodes so we can set up special dependencies for
4095517Snate@binkert.org# date.cc.
4105517Snate@binkert.orgdef make_objs(sources, env):
4115517Snate@binkert.org    objs = [env.Object(s) for s in sources]
4125517Snate@binkert.org    # make date.cc depend on all other objects so it always gets
4135517Snate@binkert.org    # recompiled whenever anything else does
4145517Snate@binkert.org    date_obj = env.Object('base/date.cc')
4155517Snate@binkert.org    env.Depends(date_obj, objs)
4165517Snate@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#
4244762Snate@binkert.org###################################################
4254762Snate@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
4284762Snate@binkert.org# the corresponding build directory to pick up generated include
4294762Snate@binkert.org# files.
4304762Snate@binkert.orgenv.Append(CPPPATH='.')
4315517Snate@binkert.org
4324762Snate@binkert.org# Debug binary
4334762Snate@binkert.orgdebugEnv = env.Copy(OBJSUFFIX='.do')
4344762Snate@binkert.orgdebugEnv.Label = 'debug'
4355463Snate@binkert.orgdebugEnv.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
4365517Snate@binkert.orgdebugEnv.Append(CPPDEFINES='DEBUG')
4374762Snate@binkert.orgtlist = debugEnv.Program(target = 'm5.debug',
4384762Snate@binkert.org                         source = make_objs(sources, debugEnv))
4394762Snate@binkert.orgdebugEnv.M5Binary = tlist[0]
4404762Snate@binkert.org
4414762Snate@binkert.org# Optimized binary
4424762Snate@binkert.orgoptEnv = env.Copy()
4435463Snate@binkert.orgoptEnv.Label = 'opt'
4445517Snate@binkert.orgoptEnv.Append(CCFLAGS=Split('-g -O5'))
4454762Snate@binkert.orgtlist = optEnv.Program(target = 'm5.opt',
4464762Snate@binkert.org                       source = make_objs(sources, optEnv))
4474762Snate@binkert.orgoptEnv.M5Binary = tlist[0]
4485517Snate@binkert.org
4495517Snate@binkert.org# "Fast" binary
4504762Snate@binkert.orgfastEnv = env.Copy(OBJSUFFIX='.fo')
4514762Snate@binkert.orgfastEnv.Label = 'fast'
4525517Snate@binkert.orgfastEnv.Append(CCFLAGS=Split('-O5'))
4534762Snate@binkert.orgfastEnv.Append(CPPDEFINES='NDEBUG')
4544762Snate@binkert.orgfastEnv.Program(target = 'm5.fast.unstripped',
4554762Snate@binkert.org                source = make_objs(sources, fastEnv))
4564762Snate@binkert.orgtlist = fastEnv.Command(target = 'm5.fast',
4575517Snate@binkert.org                        source = 'm5.fast.unstripped',
4584762Snate@binkert.org                        action = 'strip $SOURCE -o $TARGET')
4594762Snate@binkert.orgfastEnv.M5Binary = tlist[0]
4604762Snate@binkert.org
4614762Snate@binkert.org# Profiled binary
4625517Snate@binkert.orgprofEnv = env.Copy(OBJSUFFIX='.po')
4635517Snate@binkert.orgprofEnv.Label = 'prof'
4645517Snate@binkert.orgprofEnv.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg')
4655517Snate@binkert.orgtlist = profEnv.Program(target = 'm5.prof',
4665517Snate@binkert.org                        source = make_objs(sources, profEnv))
4675517Snate@binkert.orgprofEnv.M5Binary = tlist[0]
4685517Snate@binkert.org
4695517Snate@binkert.orgenvList = [debugEnv, optEnv, fastEnv, profEnv]
4705517Snate@binkert.org
4715517Snate@binkert.orgReturn('envList')
4725517Snate@binkert.org