summaryrefslogtreecommitdiff
path: root/src/cpu/SConscript
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-07-10 15:41:28 -0400
committerKevin Lim <ktlim@umich.edu>2006-07-10 15:41:28 -0400
commitf60d8217e3c9fd7c4ea75ab0c89dbbd63db75ffd (patch)
treea95df5e324f050ba0cd6632dac31def906b4d6be /src/cpu/SConscript
parentfcaafdc48cc624825760cb3ba7bbc28e5db6acfa (diff)
downloadgem5-f60d8217e3c9fd7c4ea75ab0c89dbbd63db75ffd.tar.xz
Some minor cleanups.
src/cpu/SConscript: Change the error message to be slightly nicer. src/cpu/o3/commit.hh: Remove old code. src/cpu/o3/commit_impl.hh: Remove old unused code. --HG-- extra : convert_revision : 48aa430e1f3554007dd5e4f3d9e89b5e4f124390
Diffstat (limited to 'src/cpu/SConscript')
-rw-r--r--src/cpu/SConscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cpu/SConscript b/src/cpu/SConscript
index 1d0a015b0..bc4ec7923 100644
--- a/src/cpu/SConscript
+++ b/src/cpu/SConscript
@@ -188,9 +188,10 @@ if env['USE_CHECKER']:
if i in env['CPU_MODELS']:
checker_supports = True
if not checker_supports:
- print "Checker only supports CPU models %s, please " \
- "set USE_CHECKER=False or use one of those CPU models" \
- % CheckerSupportedCPUList
+ print "Checker only supports CPU models",
+ for i in CheckerSupportedCPUList:
+ print i,
+ print ", please set USE_CHECKER=False or use one of those CPU models"
Exit(1)