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 | 3595b0c5a1a3e398a7efae932cd4175cd1ca3f0e (patch) | |
tree | 651320e1a0c7fab8755bab36ba8f49980c1e1e4c /src/mem/SConscript | |
parent | 79ba4b65957ed87907cacadc131f94628277b8db (diff) | |
download | gem5-3595b0c5a1a3e398a7efae932cd4175cd1ca3f0e.tar.xz |
SE/FS: Build/expose vport in SE mode.
Diffstat (limited to 'src/mem/SConscript')
-rw-r--r-- | src/mem/SConscript | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mem/SConscript b/src/mem/SConscript index 298e1e09f..c446772d8 100644 --- a/src/mem/SConscript +++ b/src/mem/SConscript @@ -37,19 +37,18 @@ SimObject('MemObject.py') Source('bridge.cc') Source('bus.cc') Source('mem_object.cc') +Source('mport.cc') Source('packet.cc') Source('port.cc') Source('tport.cc') -Source('mport.cc') +Source('vport.cc') if env['TARGET_ISA'] != 'no': SimObject('PhysicalMemory.py') Source('dram.cc') Source('physical.cc') -if env['FULL_SYSTEM']: - Source('vport.cc') -elif env['TARGET_ISA'] != 'no': +if not env['FULL_SYSTEM'] and env['TARGET_ISA'] != 'no': Source('page_table.cc') Source('translating_port.cc') |