SConscript revision 12222:6db0fc7407a5
111507SCurtis.Dunham@arm.com# -*- mode:python -*- 211507SCurtis.Dunham@arm.com 311960Sgabeblack@google.com# Copyright (c) 2009 The University of Edinburgh 411960Sgabeblack@google.com# All rights reserved. 511960Sgabeblack@google.com# 611960Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without 711960Sgabeblack@google.com# modification, are permitted provided that the following conditions are 811960Sgabeblack@google.com# met: redistributions of source code must retain the above copyright 911960Sgabeblack@google.com# notice, this list of conditions and the following disclaimer; 1011960Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright 1111960Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the 1211960Sgabeblack@google.com# documentation and/or other materials provided with the distribution; 1311960Sgabeblack@google.com# neither the name of the copyright holders nor the names of its 1411960Sgabeblack@google.com# contributors may be used to endorse or promote products derived from 1511960Sgabeblack@google.com# this software without specific prior written permission. 1611960Sgabeblack@google.com# 1711960Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1811960Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1911960Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2011960Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2111960Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2211960Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2311960Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2411960Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2511960Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2611960Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2711960Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2811960Sgabeblack@google.com# 2911960Sgabeblack@google.com# Authors: Timothy M. Jones 3011960Sgabeblack@google.com 3111960Sgabeblack@google.comImport('*') 3211960Sgabeblack@google.com 3311960Sgabeblack@google.comif env['TARGET_ISA'] == 'power': 3411960Sgabeblack@google.com# Workaround for bug in SCons version > 0.97d20071212 3511960Sgabeblack@google.com# Scons bug id: 2006 M5 Bug id: 308 3611960Sgabeblack@google.com Dir('isa/formats') 3711960Sgabeblack@google.com Source('decoder.cc') 3811960Sgabeblack@google.com Source('insts/branch.cc') 3911960Sgabeblack@google.com Source('insts/mem.cc') 4011960Sgabeblack@google.com Source('insts/integer.cc') 4111960Sgabeblack@google.com Source('insts/floating.cc') 4211960Sgabeblack@google.com Source('insts/condition.cc') 4311960Sgabeblack@google.com Source('insts/static_inst.cc') 4411960Sgabeblack@google.com Source('interrupts.cc') 4511960Sgabeblack@google.com Source('linux/linux.cc') 4611960Sgabeblack@google.com Source('linux/process.cc') 4711960Sgabeblack@google.com Source('isa.cc') 4811960Sgabeblack@google.com Source('pagetable.cc') 4911960Sgabeblack@google.com Source('process.cc') 5011960Sgabeblack@google.com Source('remote_gdb.cc') 5111960Sgabeblack@google.com Source('stacktrace.cc') 5211960Sgabeblack@google.com Source('tlb.cc') 5311960Sgabeblack@google.com Source('utility.cc') 5411960Sgabeblack@google.com Source('vtophys.cc') 5511960Sgabeblack@google.com 5611960Sgabeblack@google.com SimObject('PowerInterrupts.py') 5711960Sgabeblack@google.com SimObject('PowerISA.py') 5811960Sgabeblack@google.com SimObject('PowerTLB.py') 5911960Sgabeblack@google.com 6011960Sgabeblack@google.com DebugFlag('Power') 6111960Sgabeblack@google.com 6211960Sgabeblack@google.com ISADesc('isa/main.isa') 6311960Sgabeblack@google.com