diff options
Diffstat (limited to 'src/arch/SConscript')
-rw-r--r-- | src/arch/SConscript | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/arch/SConscript b/src/arch/SConscript index bc517341a..59cea6211 100644 --- a/src/arch/SConscript +++ b/src/arch/SConscript @@ -48,12 +48,12 @@ sources = [] # List of headers to generate isa_switch_hdrs = Split(''' arguments.hh - constants.hh faults.hh isa_traits.hh process.hh regfile.hh stacktrace.hh + syscallreturn.hh tlb.hh types.hh utility.hh @@ -140,8 +140,15 @@ def isa_desc_emitter(target, source, env): # Pieces are in place, so create the builder. python = sys.executable # use same Python binary used to run scons -isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS', - emitter = isa_desc_emitter) + +# Also include the CheckerCPU as one of the models if it is being +# enabled via command line. +if env['USE_CHECKER']: + isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS CheckerCPU', + emitter = isa_desc_emitter) +else: + isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS', + emitter = isa_desc_emitter) env.Append(BUILDERS = { 'ISADesc' : isa_desc_builder }) |