diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:39 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:39 -0700 |
commit | 1eb459a79e3fb8f76cb1e0b179ff6161445181b3 (patch) | |
tree | ce97217f295fd618520805c07c66a22bb5100e9d | |
parent | b2af015b97e609f3e279e9fd050a8b90d4b93233 (diff) | |
download | gem5-1eb459a79e3fb8f76cb1e0b179ff6161445181b3.tar.xz |
ARM: Build vtophys in SE mode.
-rw-r--r-- | src/arch/arm/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/arm/SConscript b/src/arch/arm/SConscript index fe3d84f6d..1658f9d46 100644 --- a/src/arch/arm/SConscript +++ b/src/arch/arm/SConscript @@ -57,12 +57,13 @@ if env['TARGET_ISA'] == 'arm': Source('interrupts.cc') Source('isa.cc') Source('miscregs.cc') - Source('predecoder.cc') Source('nativetrace.cc') + Source('predecoder.cc') + Source('remote_gdb.cc') Source('table_walker.cc') Source('tlb.cc') Source('utility.cc') - Source('remote_gdb.cc') + Source('vtophys.cc') SimObject('ArmInterrupts.py') SimObject('ArmNativeTrace.py') @@ -75,7 +76,6 @@ if env['TARGET_ISA'] == 'arm': if env['FULL_SYSTEM']: Source('stacktrace.cc') Source('system.cc') - Source('vtophys.cc') Source('linux/system.cc') SimObject('ArmSystem.py') |