SConscript revision 9850
113723Sgabeblack@google.com# -*- mode:python -*-
213723Sgabeblack@google.com
313723Sgabeblack@google.com# Copyright (c) 2009 ARM Limited
413723Sgabeblack@google.com# All rights reserved.
513723Sgabeblack@google.com#
613723Sgabeblack@google.com# The license below extends only to copyright in the software and shall
713723Sgabeblack@google.com# not be construed as granting a license to any other intellectual
813723Sgabeblack@google.com# property including but not limited to intellectual property relating
913723Sgabeblack@google.com# to a hardware implementation of the functionality of the software
1013723Sgabeblack@google.com# licensed hereunder.  You may use the software subject to the license
1113723Sgabeblack@google.com# terms below provided that you ensure that this notice is replicated
1213723Sgabeblack@google.com# unmodified and in its entirety in all distributions of the software,
1313723Sgabeblack@google.com# modified or unmodified, in source code or in binary form.
1413723Sgabeblack@google.com#
1513723Sgabeblack@google.com# Copyright (c) 2007-2008 The Florida State University
1613723Sgabeblack@google.com# All rights reserved.
1713723Sgabeblack@google.com#
1813723Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
1913723Sgabeblack@google.com# modification, are permitted provided that the following conditions are
2013723Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
2113723Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
2213723Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright
2313723Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the
2413723Sgabeblack@google.com# documentation and/or other materials provided with the distribution;
2513723Sgabeblack@google.com# neither the name of the copyright holders nor the names of its
2613723Sgabeblack@google.com# contributors may be used to endorse or promote products derived from
2713723Sgabeblack@google.com# this software without specific prior written permission.
2813723Sgabeblack@google.com#
2913723Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3013723Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3113723Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3213723Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3313723Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3413723Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3513723Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3613723Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3713723Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3813723Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3913723Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4013723Sgabeblack@google.com#
4113723Sgabeblack@google.com# Authors: Stephen Hines
4213723Sgabeblack@google.com#          Ali Saidi
4313723Sgabeblack@google.com
4413723Sgabeblack@google.comImport('*')
4513723Sgabeblack@google.com
4613723Sgabeblack@google.comif env['TARGET_ISA'] == 'arm':
4713723Sgabeblack@google.com# Workaround for bug in SCons version > 0.97d20071212
4813723Sgabeblack@google.com# Scons bug id: 2006 M5 Bug id: 308 
4913723Sgabeblack@google.com    Dir('isa/formats')
5013723Sgabeblack@google.com    Source('decoder.cc')
5113723Sgabeblack@google.com    Source('faults.cc')
5213723Sgabeblack@google.com    Source('insts/macromem.cc')
5313723Sgabeblack@google.com    Source('insts/mem.cc')
54    Source('insts/misc.cc')
55    Source('insts/pred_inst.cc')
56    Source('insts/static_inst.cc')
57    Source('insts/vfp.cc')
58    Source('interrupts.cc')
59    Source('isa.cc')
60    Source('linux/linux.cc')
61    Source('linux/process.cc')
62    Source('linux/system.cc')
63    Source('miscregs.cc')
64    Source('nativetrace.cc')
65    Source('process.cc')
66    Source('remote_gdb.cc')
67    Source('stacktrace.cc')
68    Source('system.cc')
69    Source('table_walker.cc')
70    Source('tlb.cc')
71    Source('utility.cc')
72    Source('vtophys.cc')
73
74    SimObject('ArmInterrupts.py')
75    SimObject('ArmISA.py')
76    SimObject('ArmNativeTrace.py')
77    SimObject('ArmSystem.py')
78    SimObject('ArmTLB.py')
79
80    DebugFlag('Arm')
81    DebugFlag('Decoder', "Instructions returned by the predecoder")
82    DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
83    DebugFlag('TLBVerbose')
84
85    # Add in files generated by the ISA description.
86    isa_desc_files = env.ISADesc('isa/main.isa')
87    # Only non-header files need to be compiled.
88    for f in isa_desc_files:
89        if not f.path.endswith('.hh'):
90            Source(f)
91
92