diff options
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/SConscript | 5 |
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') |