diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-11-02 02:11:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-11-02 02:11:14 -0700 |
commit | 8b4a3f4070f6d0af07c3f08dcdbd8b6aa05e34f4 (patch) | |
tree | 181f9eb23643f80043908b1726c71846beae0463 /src/sim/SConscript | |
parent | fb15604f2c20391ec47bc9727b0fc1eceb4467db (diff) | |
download | gem5-8b4a3f4070f6d0af07c3f08dcdbd8b6aa05e34f4.tar.xz |
SE/FS: Get rid of FULL_SYSTEM in sim.
Diffstat (limited to 'src/sim/SConscript')
-rw-r--r-- | src/sim/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/SConscript b/src/sim/SConscript index aae3eb5ad..25b965d59 100644 --- a/src/sim/SConscript +++ b/src/sim/SConscript @@ -57,7 +57,7 @@ if env['TARGET_ISA'] != 'no': Source('pseudo_inst.cc') Source('system.cc') -if not env['FULL_SYSTEM'] and env['TARGET_ISA'] != 'no': +if env['TARGET_ISA'] != 'no': Source('tlb.cc') DebugFlag('Checkpoint') |