SConscript revision 1085
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004 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.org
326143Snate@binkert.org# This file defines how to build a particular configuration of M5
334762Snate@binkert.org# based on variable settings in the 'env' build environment.
345522Snate@binkert.org
35955SN/A# Import build environment variable from SConstruct.
365522Snate@binkert.orgImport('env')
37955SN/A
385522Snate@binkert.org###################################################
394202Sbinkertn@umich.edu#
405742Snate@binkert.org# Define needed sources.
41955SN/A#
424381Sbinkertn@umich.edu###################################################
434381Sbinkertn@umich.edu
448334Snate@binkert.org# Base sources used by all configurations.
45955SN/Abase_sources = Split('''
46955SN/A	arch/alpha/decoder.cc
474202Sbinkertn@umich.edu	arch/alpha/fast_cpu_exec.cc
48955SN/A	arch/alpha/simple_cpu_exec.cc
494382Sbinkertn@umich.edu	arch/alpha/full_cpu_exec.cc
504382Sbinkertn@umich.edu	arch/alpha/faults.cc
514382Sbinkertn@umich.edu	arch/alpha/isa_traits.cc
526654Snate@binkert.org
535517Snate@binkert.org	base/circlebuf.cc
548614Sgblack@eecs.umich.edu	base/copyright.cc
557674Snate@binkert.org	base/cprintf.cc
566143Snate@binkert.org	base/fast_alloc.cc
576143Snate@binkert.org	base/fifo_buffer.cc
586143Snate@binkert.org	base/hostinfo.cc
598233Snate@binkert.org	base/hybrid_pred.cc
608233Snate@binkert.org	base/inifile.cc
618233Snate@binkert.org	base/intmath.cc
628233Snate@binkert.org	base/match.cc
638233Snate@binkert.org	base/misc.cc
648334Snate@binkert.org	base/pollevent.cc
658334Snate@binkert.org	base/python.cc
6610453SAndrew.Bardsley@arm.com	base/range.cc
6710453SAndrew.Bardsley@arm.com	base/sat_counter.cc
688233Snate@binkert.org	base/socket.cc
698233Snate@binkert.org	base/statistics.cc
708233Snate@binkert.org	base/str.cc
718233Snate@binkert.org	base/time.cc
728233Snate@binkert.org	base/trace.cc
738233Snate@binkert.org	base/traceflags.cc
746143Snate@binkert.org	base/userinfo.cc
758233Snate@binkert.org	base/compression/lzss_compression.cc
768233Snate@binkert.org	base/loader/aout_object.cc
778233Snate@binkert.org	base/loader/ecoff_object.cc
786143Snate@binkert.org	base/loader/elf_object.cc
796143Snate@binkert.org	base/loader/object_file.cc
806143Snate@binkert.org	base/loader/symtab.cc
816143Snate@binkert.org	base/stats/events.cc
828233Snate@binkert.org	base/stats/python.cc
838233Snate@binkert.org	base/stats/statdb.cc
848233Snate@binkert.org	base/stats/visit.cc
856143Snate@binkert.org	base/stats/text.cc
868233Snate@binkert.org
878233Snate@binkert.org	cpu/base_cpu.cc
888233Snate@binkert.org	cpu/exec_context.cc
898233Snate@binkert.org	cpu/exetrace.cc
906143Snate@binkert.org	cpu/pc_event.cc
916143Snate@binkert.org	cpu/static_inst.cc
926143Snate@binkert.org	cpu/fast_cpu/fast_cpu.cc
934762Snate@binkert.org	cpu/full_cpu/bpred.cc
946143Snate@binkert.org	cpu/full_cpu/commit.cc
958233Snate@binkert.org	cpu/full_cpu/create_vector.cc
968233Snate@binkert.org	cpu/full_cpu/cv_spec_state.cc
978233Snate@binkert.org	cpu/full_cpu/dd_queue.cc
988233Snate@binkert.org	cpu/full_cpu/dep_link.cc
998233Snate@binkert.org	cpu/full_cpu/dispatch.cc
1006143Snate@binkert.org	cpu/full_cpu/dyn_inst.cc
1018233Snate@binkert.org	cpu/full_cpu/execute.cc
1028233Snate@binkert.org	cpu/full_cpu/fetch.cc
1038233Snate@binkert.org	cpu/full_cpu/floss_reasons.cc
1048233Snate@binkert.org	cpu/full_cpu/fu_pool.cc
1056143Snate@binkert.org	cpu/full_cpu/full_cpu.cc
1066143Snate@binkert.org	cpu/full_cpu/inst_fifo.cc
1076143Snate@binkert.org	cpu/full_cpu/instpipe.cc
1086143Snate@binkert.org	cpu/full_cpu/issue.cc
1096143Snate@binkert.org	cpu/full_cpu/ls_queue.cc
1106143Snate@binkert.org	cpu/full_cpu/machine_queue.cc
1116143Snate@binkert.org	cpu/full_cpu/pipetrace.cc
1126143Snate@binkert.org	cpu/full_cpu/readyq.cc
1136143Snate@binkert.org	cpu/full_cpu/reg_info.cc
1147065Snate@binkert.org	cpu/full_cpu/rob_station.cc
1156143Snate@binkert.org	cpu/full_cpu/spec_memory.cc
1168233Snate@binkert.org	cpu/full_cpu/spec_state.cc
1178233Snate@binkert.org	cpu/full_cpu/storebuffer.cc
1188233Snate@binkert.org	cpu/full_cpu/writeback.cc
1198233Snate@binkert.org	cpu/full_cpu/iq/iq_station.cc
1208233Snate@binkert.org	cpu/full_cpu/iq/iqueue.cc
1218233Snate@binkert.org	cpu/full_cpu/iq/segmented/chain_info.cc
1228233Snate@binkert.org	cpu/full_cpu/iq/segmented/chain_wire.cc
1238233Snate@binkert.org	cpu/full_cpu/iq/segmented/iq_seg.cc
1248233Snate@binkert.org	cpu/full_cpu/iq/segmented/iq_segmented.cc
1258233Snate@binkert.org	cpu/full_cpu/iq/segmented/seg_chain.cc
1268233Snate@binkert.org	cpu/full_cpu/iq/seznec/iq_seznec.cc
1278233Snate@binkert.org	cpu/full_cpu/iq/standard/iq_standard.cc
1288233Snate@binkert.org	cpu/sampling_cpu/sampling_cpu.cc
1298233Snate@binkert.org	cpu/simple_cpu/simple_cpu.cc
1308233Snate@binkert.org	cpu/trace/reader/mem_trace_reader.cc
1318233Snate@binkert.org	cpu/trace/reader/ibm_reader.cc
1328233Snate@binkert.org	cpu/trace/reader/itx_reader.cc
1338233Snate@binkert.org	cpu/trace/reader/m5_reader.cc
1348233Snate@binkert.org
1358233Snate@binkert.org	mem/base_hier.cc
1368233Snate@binkert.org	mem/base_mem.cc
1378233Snate@binkert.org	mem/hier_params.cc
1388233Snate@binkert.org	mem/mem_cmd.cc
1398233Snate@binkert.org	mem/mem_debug.cc
1408233Snate@binkert.org	mem/mem_req.cc
1418233Snate@binkert.org	mem/memory_interface.cc
1428233Snate@binkert.org	mem/bus/base_interface.cc
1438233Snate@binkert.org	mem/bus/bus.cc
1448233Snate@binkert.org	mem/bus/bus_bridge.cc
1458233Snate@binkert.org	mem/bus/bus_bridge_master.cc
1468233Snate@binkert.org	mem/bus/bus_bridge_slave.cc
1476143Snate@binkert.org	mem/bus/bus_interface.cc
1486143Snate@binkert.org	mem/bus/dma_bus_interface.cc
1496143Snate@binkert.org	mem/bus/dma_interface.cc
1506143Snate@binkert.org	mem/bus/master_interface.cc
1516143Snate@binkert.org	mem/bus/slave_interface.cc
1526143Snate@binkert.org	mem/cache/base_cache.cc
1539982Satgutier@umich.edu	mem/cache/cache.cc
15410196SCurtis.Dunham@arm.com	mem/cache/cache_builder.cc
15510196SCurtis.Dunham@arm.com	mem/cache/coherence/coherence_protocol.cc
15610196SCurtis.Dunham@arm.com	mem/cache/coherence/uni_coherence.cc
15710196SCurtis.Dunham@arm.com	mem/cache/miss/blocking_buffer.cc
15810196SCurtis.Dunham@arm.com	mem/cache/miss/miss_queue.cc
15910196SCurtis.Dunham@arm.com	mem/cache/miss/mshr.cc
16010196SCurtis.Dunham@arm.com	mem/cache/miss/mshr_queue.cc
16110196SCurtis.Dunham@arm.com	mem/cache/tags/base_tags.cc
1626143Snate@binkert.org	mem/cache/tags/cache_tags.cc
1636143Snate@binkert.org	mem/cache/tags/fa_lru.cc
1648945Ssteve.reinhardt@amd.com	mem/cache/tags/iic.cc
1658233Snate@binkert.org	mem/cache/tags/lru.cc
1668233Snate@binkert.org	mem/cache/tags/split.cc
1676143Snate@binkert.org	mem/cache/tags/split_lifo.cc
1688945Ssteve.reinhardt@amd.com	mem/cache/tags/split_lru.cc
1696143Snate@binkert.org	mem/cache/tags/repl/gen.cc
1706143Snate@binkert.org	mem/cache/tags/repl/repl.cc
1716143Snate@binkert.org	mem/functional_mem/functional_memory.cc
1726143Snate@binkert.org	mem/functional_mem/main_memory.cc
1735522Snate@binkert.org	mem/timing_mem/base_memory.cc
1746143Snate@binkert.org	mem/timing_mem/memory_builder.cc
1756143Snate@binkert.org	mem/timing_mem/simple_mem_bank.cc
1766143Snate@binkert.org        mem/trace/itx_writer.cc
1779982Satgutier@umich.edu	mem/trace/mem_trace_writer.cc
1788233Snate@binkert.org	mem/trace/m5_writer.cc
1798233Snate@binkert.org
1808233Snate@binkert.org	sim/builder.cc
1816143Snate@binkert.org	sim/configfile.cc
1826143Snate@binkert.org	sim/debug.cc
1836143Snate@binkert.org	sim/eventq.cc
1846143Snate@binkert.org	sim/main.cc
1855522Snate@binkert.org	sim/param.cc
1865522Snate@binkert.org	sim/profile.cc
1875522Snate@binkert.org	sim/serialize.cc
1885522Snate@binkert.org	sim/sim_events.cc
1895604Snate@binkert.org	sim/sim_exit.cc
1905604Snate@binkert.org	sim/sim_init.cc
1916143Snate@binkert.org	sim/sim_object.cc
1926143Snate@binkert.org	sim/stat_context.cc
1934762Snate@binkert.org	sim/stat_control.cc
1944762Snate@binkert.org	sim/trace_context.cc
1956143Snate@binkert.org	sim/universe.cc
1966727Ssteve.reinhardt@amd.com        sim/pyconfig/pyconfig.cc
1976727Ssteve.reinhardt@amd.com        sim/pyconfig/code.cc
1986727Ssteve.reinhardt@amd.com        ''')
1994762Snate@binkert.org
2006143Snate@binkert.orgbase_obj_desc_files = Split('''
2016143Snate@binkert.org        cpu/full_cpu/iq/segmented/SegmentedIQ.od
2026143Snate@binkert.org        cpu/full_cpu/iq/seznec/SeznecIQ.od
2036143Snate@binkert.org        cpu/full_cpu/iq/standard/StandardIQ.od
2046727Ssteve.reinhardt@amd.com        cpu/full_cpu/iq/BaseIQ.od
2056143Snate@binkert.org        cpu/full_cpu/BranchPred.od
2067674Snate@binkert.org        cpu/full_cpu/FUDesc.od
2077674Snate@binkert.org        cpu/full_cpu/FullCPU.od
2085604Snate@binkert.org        cpu/full_cpu/FuncUnitPool.od
2096143Snate@binkert.org        cpu/full_cpu/OpDesc.od
2106143Snate@binkert.org        cpu/full_cpu/PipeTrace.od
2116143Snate@binkert.org        cpu/sampling_cpu/SamplingCPU.od
2124762Snate@binkert.org        cpu/simple_cpu/SimpleCPU.od
2136143Snate@binkert.org        cpu/BaseCPU.od
2144762Snate@binkert.org        cpu/IntrControl.od
2154762Snate@binkert.org        mem/bus/Bus.od
2164762Snate@binkert.org        mem/bus/BusBridge.od
2176143Snate@binkert.org        mem/cache/coherence/CoherenceProtocol.od
2186143Snate@binkert.org        mem/cache/tags/repl/GenRepl.od
2194762Snate@binkert.org        mem/cache/tags/repl/Repl.od
2208233Snate@binkert.org        mem/cache/BaseCache.od
2218233Snate@binkert.org        mem/functional_mem/FunctionalMemory.od
2228233Snate@binkert.org        mem/functional_mem/MainMemory.od
2238233Snate@binkert.org        mem/functional_mem/MemoryController.od
2246143Snate@binkert.org        mem/functional_mem/PhysicalMemory.od
2256143Snate@binkert.org        mem/timing_mem/BaseMemory.od
2264762Snate@binkert.org        mem/BaseHier.od
2276143Snate@binkert.org        mem/BaseMem.od
2284762Snate@binkert.org        mem/HierParams.od
2296143Snate@binkert.org        ''')
2304762Snate@binkert.org
2316143Snate@binkert.org
2328233Snate@binkert.org# MySql sources
2338233Snate@binkert.orgmysql_sources = Split('''
23410453SAndrew.Bardsley@arm.com	base/mysql.cc
2356143Snate@binkert.org	base/stats/mysql.cc
2366143Snate@binkert.org        ''')
2376143Snate@binkert.org
2386143Snate@binkert.org# Full-system sources
2396143Snate@binkert.orgfull_system_sources = Split('''
2406143Snate@binkert.org	arch/alpha/alpha_memory.cc
2416143Snate@binkert.org	arch/alpha/arguments.cc
2426143Snate@binkert.org	arch/alpha/ev5.cc
24310453SAndrew.Bardsley@arm.com	arch/alpha/osfpal.cc
24410453SAndrew.Bardsley@arm.com	arch/alpha/pseudo_inst.cc
245955SN/A	arch/alpha/vtophys.cc
2469396Sandreas.hansson@arm.com
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/dma.cc
2579396Sandreas.hansson@arm.com	dev/etherbus.cc
2589396Sandreas.hansson@arm.com	dev/etherdump.cc
2599930Sandreas.hansson@arm.com	dev/etherint.cc
2609930Sandreas.hansson@arm.com	dev/etherlink.cc
2619396Sandreas.hansson@arm.com	dev/etherpkt.cc
2628235Snate@binkert.org	dev/ethertap.cc
2638235Snate@binkert.org	dev/ide_ctrl.cc
2646143Snate@binkert.org	dev/ide_disk.cc
2658235Snate@binkert.org	dev/io_device.cc
2669003SAli.Saidi@ARM.com	dev/ns_gige.cc
2678235Snate@binkert.org	dev/etherdev.cc
2688235Snate@binkert.org	dev/pciconfigall.cc
2698235Snate@binkert.org	dev/pcidev.cc
2708235Snate@binkert.org	dev/scsi.cc
2718235Snate@binkert.org	dev/scsi_ctrl.cc
2728235Snate@binkert.org	dev/scsi_disk.cc
2738235Snate@binkert.org	dev/scsi_none.cc
2748235Snate@binkert.org	dev/simple_disk.cc
2758235Snate@binkert.org	dev/tlaser_clock.cc
2768235Snate@binkert.org	dev/tlaser_ipi.cc
2778235Snate@binkert.org	dev/tlaser_mbox.cc
2788235Snate@binkert.org	dev/tlaser_mc146818.cc
2798235Snate@binkert.org	dev/tlaser_node.cc
2808235Snate@binkert.org	dev/tlaser_pcia.cc
2819003SAli.Saidi@ARM.com	dev/tlaser_pcidev.cc
2828235Snate@binkert.org	dev/tlaser_serial.cc
2835584Snate@binkert.org	dev/turbolaser.cc
2844382Sbinkertn@umich.edu	dev/tsunami.cc
2854202Sbinkertn@umich.edu	dev/tsunami_cchip.cc
2864382Sbinkertn@umich.edu	dev/tsunami_fake.cc
2874382Sbinkertn@umich.edu	dev/tsunami_io.cc
2884382Sbinkertn@umich.edu	dev/tsunami_pchip.cc
2899396Sandreas.hansson@arm.com	dev/uart.cc
2905584Snate@binkert.org
2914382Sbinkertn@umich.edu	kern/kernel_binning.cc
2924382Sbinkertn@umich.edu	kern/kernel_stats.cc
2934382Sbinkertn@umich.edu	kern/system_events.cc
2948232Snate@binkert.org	kern/linux/linux_events.cc
2955192Ssaidi@eecs.umich.edu	kern/linux/linux_syscalls.cc
2968232Snate@binkert.org	kern/linux/linux_system.cc
2978232Snate@binkert.org	kern/linux/printk.cc
2988232Snate@binkert.org	kern/tru64/dump_mbuf.cc
2995192Ssaidi@eecs.umich.edu	kern/tru64/printf.cc
3008232Snate@binkert.org	kern/tru64/tru64_events.cc
3015192Ssaidi@eecs.umich.edu	kern/tru64/tru64_syscalls.cc
3025799Snate@binkert.org	kern/tru64/tru64_system.cc
3038232Snate@binkert.org
3045192Ssaidi@eecs.umich.edu	mem/functional_mem/memory_control.cc
3055192Ssaidi@eecs.umich.edu	mem/functional_mem/physical_memory.cc
3065192Ssaidi@eecs.umich.edu        dev/platform.cc
3078232Snate@binkert.org
3085192Ssaidi@eecs.umich.edu	sim/system.cc
3098232Snate@binkert.org        ''')
3105192Ssaidi@eecs.umich.edu
3115192Ssaidi@eecs.umich.edufull_system_obj_desc_files = Split('''
3125192Ssaidi@eecs.umich.edu        arch/alpha/AlphaDTB.od
3135192Ssaidi@eecs.umich.edu        arch/alpha/AlphaITB.od
3144382Sbinkertn@umich.edu        arch/alpha/AlphaTLB.od
3154382Sbinkertn@umich.edu        dev/AlphaConsole.od
3164382Sbinkertn@umich.edu        dev/ConsoleListener.od
3172667Sstever@eecs.umich.edu        dev/CowDiskImage.od
3182667Sstever@eecs.umich.edu        dev/DiskImage.od
3192667Sstever@eecs.umich.edu        dev/DmaDevice.od
3202667Sstever@eecs.umich.edu        dev/DmaEngine.od
3212667Sstever@eecs.umich.edu        dev/EtherBus.od
3222667Sstever@eecs.umich.edu        dev/EtherDev.od
3235742Snate@binkert.org        dev/EtherDevInt.od
3245742Snate@binkert.org        dev/EtherDump.od
3255742Snate@binkert.org        dev/EtherInt.od
3265793Snate@binkert.org        dev/EtherLink.od
3278334Snate@binkert.org        dev/EtherTap.od
3285793Snate@binkert.org        dev/PioDevice.od
3295793Snate@binkert.org        dev/RawDiskImage.od
3305793Snate@binkert.org        dev/ScsiController.od
3314382Sbinkertn@umich.edu        dev/ScsiDevice.od
3324762Snate@binkert.org        dev/ScsiDisk.od
3335344Sstever@gmail.com        dev/SimConsole.od
3344382Sbinkertn@umich.edu        dev/SimpleDisk.od
3355341Sstever@gmail.com        dev/TlaserClock.od
3365742Snate@binkert.org        dev/TlaserIpi.od
3375742Snate@binkert.org        dev/TlaserMBox.od
3385742Snate@binkert.org        dev/TlaserMC146818.od
3395742Snate@binkert.org        dev/TlaserNode.od
3405742Snate@binkert.org        dev/TlaserPciDev.od
3414762Snate@binkert.org        dev/TlaserPcia.od
3425742Snate@binkert.org        dev/TlaserSerial.od
3435742Snate@binkert.org        dev/TlaserUart.od
3447722Sgblack@eecs.umich.edu        dev/Turbolaser.od
3455742Snate@binkert.org        kern/tru64/Tru64System.od
3465742Snate@binkert.org        sim/System.od
3475742Snate@binkert.org	''')
3489930Sandreas.hansson@arm.com
3499930Sandreas.hansson@arm.com# Syscall emulation (non-full-system) sources
3509930Sandreas.hansson@arm.comsyscall_emulation_sources = Split('''
3519930Sandreas.hansson@arm.com	arch/alpha/alpha_common_syscall_emul.cc
3529930Sandreas.hansson@arm.com	arch/alpha/alpha_linux_process.cc
3535742Snate@binkert.org	arch/alpha/alpha_tru64_process.cc
3548242Sbradley.danofsky@amd.com	cpu/memtest/memtest.cc
3558242Sbradley.danofsky@amd.com	cpu/trace/trace_cpu.cc
3568242Sbradley.danofsky@amd.com	eio/eio.cc
3578242Sbradley.danofsky@amd.com	eio/exolex.cc
3585341Sstever@gmail.com	eio/libexo.cc
3595742Snate@binkert.org	sim/process.cc
3607722Sgblack@eecs.umich.edu	sim/syscall_emul.cc
3614773Snate@binkert.org        ''')
3626108Snate@binkert.org
3631858SN/Asyscall_emulation_obj_desc_files = Split('''
3641085SN/A        cpu/memtest/MemTest.od
3656658Snate@binkert.org        eio/EioProcess.od
3666658Snate@binkert.org        sim/LiveProcess.od
3677673Snate@binkert.org        sim/Process.od
3686658Snate@binkert.org	''')
3696658Snate@binkert.org
3706658Snate@binkert.org# Set up complete list of sources based on configuration.
3716658Snate@binkert.orgsources = base_sources
3726658Snate@binkert.orgobj_desc_files = base_obj_desc_files
3736658Snate@binkert.org
3746658Snate@binkert.orgif env['FULL_SYSTEM']:
3757673Snate@binkert.org    sources += full_system_sources
3767673Snate@binkert.org    obj_desc_files += full_system_obj_desc_files
3777673Snate@binkert.orgelse:
3787673Snate@binkert.org    sources += syscall_emulation_sources
3797673Snate@binkert.org    obj_desc_files += syscall_emulation_obj_desc_files
3807673Snate@binkert.org
3817673Snate@binkert.orgextra_libraries = []
3826658Snate@binkert.orgif env['USE_MYSQL']:
3837673Snate@binkert.org    sources += mysql_sources
3847673Snate@binkert.org    env.Append(CPPDEFINES = 'USE_MYSQL')
3857673Snate@binkert.org    env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql'])
3867673Snate@binkert.org    env.Append(LIBS=['z'])
3877673Snate@binkert.org    if os.path.isdir('/usr/lib64'):
3887673Snate@binkert.org        env.Append(LIBPATH=['/usr/lib64/mysql'])
3899048SAli.Saidi@ARM.com    else:
3907673Snate@binkert.org        env.Append(LIBPATH=['/usr/lib/mysql/'])
3917673Snate@binkert.org    env.Append(LIBS=['mysqlclient'])
3927673Snate@binkert.org
3937673Snate@binkert.org
3946658Snate@binkert.org###################################################
3957756SAli.Saidi@ARM.com#
3967816Ssteve.reinhardt@amd.com# Special build rules.
3976658Snate@binkert.org#
3984382Sbinkertn@umich.edu###################################################
3994382Sbinkertn@umich.edu
4004762Snate@binkert.org# base/traceflags.{cc,hh} are generated from base/traceflags.py.
4014762Snate@binkert.org# $TARGET.base will expand to "<build-dir>/base/traceflags".
4024762Snate@binkert.orgenv.Command(Split('base/traceflags.hh base/traceflags.cc'),
4036654Snate@binkert.org            'base/traceflags.py',
4046654Snate@binkert.org            'python $SOURCE $TARGET.base')
4055517Snate@binkert.org
4065517Snate@binkert.org# several files are generated from arch/$TARGET_ISA/isa_desc.
4075517Snate@binkert.orgenv.Command(Split('''arch/alpha/decoder.cc
4085517Snate@binkert.org		     arch/alpha/decoder.hh
4095517Snate@binkert.org		     arch/alpha/fast_cpu_exec.cc
4105517Snate@binkert.org                     arch/alpha/simple_cpu_exec.cc
4115517Snate@binkert.org                     arch/alpha/full_cpu_exec.cc'''),
4125517Snate@binkert.org            Split('''arch/alpha/isa_desc
4135517Snate@binkert.org		     arch/isa_parser.py'''),
4145517Snate@binkert.org            '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha')
4155517Snate@binkert.org
4165517Snate@binkert.org
4175517Snate@binkert.org# 'targetarch' is a symlink to arch/$TARGET_ISA.
4185517Snate@binkert.orgdef link_targetarch(target, source, env):
4195517Snate@binkert.org    link_target = str(target[0])
4205517Snate@binkert.org    link_source = env.subst('$SRCDIR/arch/$TARGET_ISA')
4215517Snate@binkert.org    if not os.path.isdir(link_target):
4226654Snate@binkert.org        print "symlinking", link_source, "to", link_target
4235517Snate@binkert.org        try:
4245517Snate@binkert.org            os.symlink(link_source, link_target)
4255517Snate@binkert.org        except OSError, desc:
4265517Snate@binkert.org            print "Error creating symlink %s: %s" % (link_target, desc)
4275517Snate@binkert.org            sys.exit(-1)
4285517Snate@binkert.org
4295517Snate@binkert.org# Tell SCons to use the link_targetarch function to make 'targetarch'
4305517Snate@binkert.orgenv.Command('targetarch', None, link_targetarch)
4316143Snate@binkert.org
4326654Snate@binkert.org
4335517Snate@binkert.org# libelf build is described in its own SConscript file.
4345517Snate@binkert.org# SConscript-local is the per-config build, which just copies some
4355517Snate@binkert.org# header files into a place where they can be found.
4365517Snate@binkert.orgSConscript('libelf/SConscript-local', exports = 'env', duplicate=0)
4375517Snate@binkert.org
4385517Snate@binkert.orgSConscript('sim/pyconfig/SConscript', exports = ['env', 'obj_desc_files'],
4395517Snate@binkert.org           duplicate=0)
4405517Snate@binkert.org
4415517Snate@binkert.org
4425517Snate@binkert.org# This function adds the specified sources to the given build
4435517Snate@binkert.org# environment, and returns a list of all the corresponding SCons
4445517Snate@binkert.org# Object nodes (including an extra one for date.cc).  We explicitly
4455517Snate@binkert.org# add the Object nodes so we can set up special dependencies for
4465517Snate@binkert.org# targetarch and date.cc.
4476654Snate@binkert.orgdef make_objs(sources, env):
4486654Snate@binkert.org    objs = [env.Object(s) for s in sources]
4495517Snate@binkert.org    # make all objects depend on the targetarch link so it gets made first.
4505517Snate@binkert.org    env.Depends(objs, 'targetarch')
4516143Snate@binkert.org    # make date.cc depend on all other objects so it always gets
4526143Snate@binkert.org    # recompiled whenever anything else does
4536143Snate@binkert.org    date_obj = env.Object('base/date.cc')
4546727Ssteve.reinhardt@amd.com    env.Depends(date_obj, objs)
4555517Snate@binkert.org    objs.append(date_obj)
4566727Ssteve.reinhardt@amd.com    objs.extend(extra_libraries)
4575517Snate@binkert.org    return objs
4585517Snate@binkert.org
4595517Snate@binkert.org###################################################
4606654Snate@binkert.org#
4616654Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
4627673Snate@binkert.org# a slightly different build environment.
4636654Snate@binkert.org#
4646654Snate@binkert.org###################################################
4656654Snate@binkert.org
4666654Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
4675517Snate@binkert.org# automatically expand '.' to refer to both the source directory and
4685517Snate@binkert.org# the corresponding build directory to pick up generated include
4695517Snate@binkert.org# files.
4706143Snate@binkert.orgenv.Append(CPPPATH='.')
4715517Snate@binkert.org
4724762Snate@binkert.org# Debug binary
4735517Snate@binkert.orgdebug = env.Copy(OBJSUFFIX='.do')
4745517Snate@binkert.orgdebug.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
4756143Snate@binkert.orgdebug.Append(CPPDEFINES='DEBUG')
4766143Snate@binkert.orgdebug.Program(target = 'm5.debug', source = make_objs(sources, debug))
4775517Snate@binkert.org
4785517Snate@binkert.org# Optimized binary
4795517Snate@binkert.orgopt = env.Copy()
4805517Snate@binkert.orgopt.Append(CCFLAGS=Split('-g -O5'))
4815517Snate@binkert.orgopt.Program(target = 'm5.opt', source = make_objs(sources, opt))
4825517Snate@binkert.org
4835517Snate@binkert.org# "Fast" binary
4845517Snate@binkert.orgfast = env.Copy(OBJSUFFIX='.fo')
4855517Snate@binkert.orgfast.Append(CCFLAGS=Split('-O5'))
4869338SAndreas.Sandberg@arm.comfast.Append(CPPDEFINES='NDEBUG')
4879338SAndreas.Sandberg@arm.comfast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast))
4889338SAndreas.Sandberg@arm.comfast.Command(target = 'm5.fast', source = 'm5.fast.unstripped',
4899338SAndreas.Sandberg@arm.com             action = 'strip $SOURCE -o $TARGET')
4909338SAndreas.Sandberg@arm.com
4919338SAndreas.Sandberg@arm.com# Profiled binary
4928596Ssteve.reinhardt@amd.comprof = env.Copy(OBJSUFFIX='.po')
4938596Ssteve.reinhardt@amd.comprof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg')
4948596Ssteve.reinhardt@amd.comprof.Program(target = 'm5.prof', source = make_objs(sources, prof))
4958596Ssteve.reinhardt@amd.com