diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-11-13 12:20:08 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-11-13 12:20:08 -0800 |
commit | afed455e777348596db9ff9786d6dae03a956c89 (patch) | |
tree | e49f414f9c4e4d31c5c47922b9818b098c7ad038 /src/python/SConscript | |
parent | 2370e638cec993a2f676c7e5997f4223c995be29 (diff) | |
download | gem5-afed455e777348596db9ff9786d6dae03a956c89.tar.xz |
Expose debugBreakCycle through swig and get rid of
the Debug param context
--HG--
extra : convert_revision : 40e9dcfa9faedbe0c90a43f908f20a7c14ded6a4
Diffstat (limited to 'src/python/SConscript')
-rw-r--r-- | src/python/SConscript | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index 5c351c32a..be6248bab 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -98,11 +98,17 @@ pyzip_files.append('m5/defines.py') pyzip_files.append('m5/info.py') pyzip_files.append(join(env['ROOT'], 'util/pbs/jobfile.py')) +env.Command(['swig/debug_wrap.cc', 'm5/internal/debug.py'], + 'swig/debug.i', + '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' + '-o ${TARGETS[0]} $SOURCES') + env.Command(['swig/main_wrap.cc', 'm5/internal/main.py'], 'swig/main.i', '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' '-o ${TARGETS[0]} $SOURCES') +pyzip_dep_files.append('m5/internal/debug.py') pyzip_dep_files.append('m5/internal/main.py') # Action function to build the zip archive. Uses the PyZipFile module |