From: Ali Saidi Date: Thu, 10 Apr 2008 19:38:10 +0000 (-0400) Subject: SCons: add comments to SConscript documenting bug workaround X-Git-Tag: copyright_update~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8af6dc118c28a0d24315290e136204c50f1d6d8a;p=gem5.git SCons: add comments to SConscript documenting bug workaround --HG-- extra : convert_revision : e6cdffe953d56b96c76c7ff14d2dcc3de3ccfcc3 --- diff --git a/src/cpu/SConscript b/src/cpu/SConscript index 2abddef22..c6a959d9d 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) +# Workaround for bug in SCons version > 0.97d20071212 +# Scons bug id: 2006 M5 Bug id: 308 else: Dir('checker') diff --git a/src/mem/SConscript b/src/mem/SConscript index 0fdf9f9bb..d391fbd5c 100644 --- a/src/mem/SConscript +++ b/src/mem/SConscript @@ -35,6 +35,8 @@ SimObject('Bus.py') SimObject('PhysicalMemory.py') SimObject('MemObject.py') +# Workaround for bug in SCons version > 0.97d20071212 +# Scons bug id: 2006 M5 Bug id: 308 Dir('config') Source('bridge.cc')