From: Andreas Hansson Date: Sun, 23 Mar 2014 15:11:44 +0000 (-0400) Subject: mem: Include the DRAMSim2 wrapper in NULL build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f018d2f5a1a673d04a227b5b28ae0717d50b3ef;p=gem5.git mem: Include the DRAMSim2 wrapper in NULL build This patch makes sure DRAMSim2 is included in a build of the NULL ISA. --- diff --git a/src/mem/SConscript b/src/mem/SConscript index 9096fad5c..939c8320f 100644 --- a/src/mem/SConscript +++ b/src/mem/SConscript @@ -66,10 +66,10 @@ if env['TARGET_ISA'] != 'null': Source('se_translating_port_proxy.cc') Source('page_table.cc') - if env['HAVE_DRAMSIM']: - SimObject('DRAMSim2.py') - Source('dramsim2_wrapper.cc') - Source('dramsim2.cc') +if env['HAVE_DRAMSIM']: + SimObject('DRAMSim2.py') + Source('dramsim2_wrapper.cc') + Source('dramsim2.cc') DebugFlag('BaseBus') DebugFlag('BusAddrRanges')