From cf6b4ef734293e1efdfa015519230703be5d324a Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 11 May 2009 10:38:46 -0700 Subject: ruby: add RUBY sticky option that must be set to add ruby to the build Default is false --- src/mem/SConscript | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/mem/SConscript') diff --git a/src/mem/SConscript b/src/mem/SConscript index 87498d21d..21335a709 100644 --- a/src/mem/SConscript +++ b/src/mem/SConscript @@ -34,7 +34,9 @@ SimObject('Bridge.py') SimObject('Bus.py') SimObject('MemObject.py') SimObject('PhysicalMemory.py') -SimObject('RubyMemory.py') + +if env['RUBY']: + SimObject('RubyMemory.py') Source('bridge.cc') Source('bus.cc') @@ -45,7 +47,9 @@ Source('physical.cc') Source('port.cc') Source('tport.cc') Source('mport.cc') -Source('rubymem.cc') + +if env['RUBY']: + Source('rubymem.cc') if env['FULL_SYSTEM']: Source('vport.cc') -- cgit v1.2.3