diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2005-10-06 13:55:08 -0400 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2005-10-06 13:55:08 -0400 |
commit | a23ff5ac96782b1fc4dac8e6f21d90c1a2547e7a (patch) | |
tree | 710fc45b79592d25b253f56832d7caf5e8cc0f73 | |
parent | 6f90efbafffc727e5d42c89f73658e51dc7d5f01 (diff) | |
parent | af2a600f99ce2989d8aa888efa62795123e89dae (diff) | |
download | gem5-a23ff5ac96782b1fc4dac8e6f21d90c1a2547e7a.tar.xz |
Merge zizzer:/bk/m5
into zed.eecs.umich.edu:/z/hsul/work/m5/clean
--HG--
extra : convert_revision : 42c38ea59c6787fdcf25bf8e1737f71ac253cf8a
-rw-r--r-- | README | 12 | ||||
-rw-r--r-- | python/m5/objects/Root.py | 2 |
2 files changed, 9 insertions, 5 deletions
@@ -22,9 +22,9 @@ in obtaining disk images, contact us at m5-dev@eecs.umich.edu. WHAT'S NEEDED ------------- -- GCC (version 3.3 or 3.4 recommended) +- GCC version 3.3 or newer - Python 2.3 or newer -- SCons 0.96.1 (see http://www.scons.org) +- SCons 0.96.1 or newer (see http://www.scons.org) WHAT'S RECOMMENDED ------------------ @@ -66,9 +66,11 @@ To build and test the syscall-emulation simulator: To build and test the full-system simualator: -1. Download the full-system binary package from - http://m5.eecs.umich.edu/dist/m5_system_1.1.tar.bz2. This package includes - disk images and kernel, palcode, and console binaries for Linux and FreeBSD. +1. Unpack the full-system binaries from m5_system_1.1.tar.bz2. This file + is included on the CD release, or you can download it from + http://m5.eecs.umich.edu/dist/ m5_system_1.1.tar.bz2.) This package + includes disk images and kernel, palcode, and console binaries + for Linux and FreeBSD. 2. Edit SYSTEMDIR in $top/m5-test/SysPaths.py to point to your local copy of the binaries. 3. In $top/m5/build, run "scons ALPHA_FS/opt/test/quick". diff --git a/python/m5/objects/Root.py b/python/m5/objects/Root.py index df8fc4bf8..23b13fc67 100644 --- a/python/m5/objects/Root.py +++ b/python/m5/objects/Root.py @@ -3,6 +3,7 @@ from HierParams import HierParams from Serialize import Serialize from Statistics import Statistics from Trace import Trace +from ExeTrace import ExecutionTrace class Root(SimObject): type = 'Root' @@ -20,4 +21,5 @@ class Root(SimObject): hier = HierParams(do_data = False, do_events = True) stats = Statistics() trace = Trace() + exetrace = ExecutionTrace() serialize = Serialize() |