diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-02-25 22:57:46 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-02-25 22:57:46 -0500 |
commit | 63db9860cf4ef1bfdfe97bf7f276c27dc5d13eea (patch) | |
tree | 226771d27c0a3308b9c807ca5ad2d077687e551c /arch/SConscript | |
parent | 10bfe954af8e7b3a1917bf7d979ae2c2956730c4 (diff) | |
download | gem5-63db9860cf4ef1bfdfe97bf7f276c27dc5d13eea.tar.xz |
Make sure cpu/static_inst_exec_sigs.hh get rebuilt when
CPU_MODELS parameter changes.
arch/SConscript:
Fix typo in comment.
cpu/SConscript:
Convert exec signature generator to Action so we can add dependency
on CPU_MODELS environment var.
Print nicer string while we're at it.
Also add some comments.
--HG--
extra : convert_revision : bcb38a7941943cf071dac34cdbb2ece5456b8620
Diffstat (limited to 'arch/SConscript')
-rw-r--r-- | arch/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/SConscript b/arch/SConscript index d237b0b1f..142bd763b 100644 --- a/arch/SConscript +++ b/arch/SConscript @@ -70,7 +70,7 @@ def gen_switch_hdr_string(target, source, env): return "Generating ISA switch header " + str(target[0]) # Build SCons Action object. 'varlist' specifies env vars that this -# action depdnds on; when env['ALL_ISA_LIST'] changes these actions +# action depends on; when env['ALL_ISA_LIST'] changes these actions # should get re-executed. switch_hdr_action = Action(gen_switch_hdr, gen_switch_hdr_string, varlist=['ALL_ISA_LIST']) |