summaryrefslogtreecommitdiff
path: root/src/sim/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-10-30 17:38:11 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-10-30 17:38:11 -0700
commit8009b53c41b4b8643bc335ce293c6ba305b70608 (patch)
treeb77a0da643cffd4f1efb7abb89e050025e8af71b /src/sim/SConscript
parent37a437893eccaf84053627068a4de41dde8bc0b0 (diff)
downloadgem5-8009b53c41b4b8643bc335ce293c6ba305b70608.tar.xz
SE/FS: Compile in system events in SE mode.
Diffstat (limited to 'src/sim/SConscript')
-rw-r--r--src/sim/SConscript5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sim/SConscript b/src/sim/SConscript
index 0f241df92..aae3eb5ad 100644
--- a/src/sim/SConscript
+++ b/src/sim/SConscript
@@ -34,6 +34,7 @@ SimObject('BaseTLB.py')
SimObject('Root.py')
SimObject('InstTracer.py')
+Source('arguments.cc')
Source('async.cc')
Source('core.cc')
Source('debug.cc')
@@ -56,9 +57,7 @@ if env['TARGET_ISA'] != 'no':
Source('pseudo_inst.cc')
Source('system.cc')
-if env['FULL_SYSTEM']:
- Source('arguments.cc')
-elif env['TARGET_ISA'] != 'no':
+if not env['FULL_SYSTEM'] and env['TARGET_ISA'] != 'no':
Source('tlb.cc')
DebugFlag('Checkpoint')