diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-03-03 06:24:01 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-03-03 06:24:01 +0000 |
commit | 68ad1533096ab736c534cb29364a1a93e1010306 (patch) | |
tree | 1499c0085d1e4de76b37827e6d691f91364bc396 /src/python/m5/main.py | |
parent | 23dc5099a4bca9e38a286d867c4eccd7db3c09c1 (diff) | |
parent | ffe6bebb05c30b0f1d7cde5ad5b94a2551938630 (diff) | |
download | gem5-68ad1533096ab736c534cb29364a1a93e1010306.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into ahchoo.blinky.homelinux.org:/home/gblack/m5/newmem-sparc32
--HG--
extra : convert_revision : bbd0def502e423e64e2c4f6415a4b043b60c7f90
Diffstat (limited to 'src/python/m5/main.py')
-rw-r--r-- | src/python/m5/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index 37df884d0..54368b91e 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -240,7 +240,7 @@ def main(): print "M5 Simulator System" print brief_copyright print - print "M5 compiled %s" % internal.main.cvar.compileDate; + print "M5 compiled %s" % internal.core.cvar.compileDate; print "M5 started %s" % datetime.now().ctime() print "M5 executing on %s" % socket.gethostname() print "command line:", @@ -256,7 +256,7 @@ def main(): usage(2) # tell C++ about output directory - internal.main.setOutputDir(options.outdir) + internal.core.setOutputDir(options.outdir) # update the system path with elements from the -p option sys.path[0:0] = options.path |