diff --git a/SConstruct b/SConstruct index f47618cf6e..792cb7554e 100644 --- a/SConstruct +++ b/SConstruct @@ -143,9 +143,6 @@ def CheckSCons(bad_ver_strs): CheckSCons(( # We need a version that is 0.96.91 or newer ('0.0.0', '0.96.90'), - # This range has a bug with linking directories into the build dir - # that only have header files in them - ('0.97.0d20071212', '0.98.0') )) diff --git a/src/cpu/SConscript b/src/cpu/SConscript index c7d0c33bdc..2abddef22c 100644 --- a/src/cpu/SConscript +++ b/src/cpu/SConscript @@ -148,6 +148,8 @@ if env['USE_CHECKER']: print i, print ", please set USE_CHECKER=False or use one of those CPU models" Exit(1) +else: + Dir('checker') TraceFlag('Activity') TraceFlag('Commit') diff --git a/src/mem/SConscript b/src/mem/SConscript index b572f703c3..0fdf9f9bb6 100644 --- a/src/mem/SConscript +++ b/src/mem/SConscript @@ -35,6 +35,8 @@ SimObject('Bus.py') SimObject('PhysicalMemory.py') SimObject('MemObject.py') +Dir('config') + Source('bridge.cc') Source('bus.cc') Source('dram.cc')