README (1851:c486924ed90e) | README (1869:792d73aad8d6) |
---|---|
1This is release m5_1.1 of the M5 simulator. 2 3This file contains brief "getting started" information and release 4notes. For more information, see http://m5.eecs.umich.edu. If you 5have questions, please send mail to m5sim-users@lists.sourceforge.net. 6 7WHAT'S INCLUDED (AND NOT) 8------------------------- --- 47 unchanged lines hidden (view full) --- 56The following steps will build and test the simulator. The variable 57"$top" refers to the top directory where you've unpacked the files, 58i.e., the one containing the m5, m5-test, and ext directories. If you 59have a multiprocessor system, you should give scons a "-j N" argument (like 60make) to run N jobs in parallel. 61 62To build and test the syscall-emulation simulator: 63 | 1This is release m5_1.1 of the M5 simulator. 2 3This file contains brief "getting started" information and release 4notes. For more information, see http://m5.eecs.umich.edu. If you 5have questions, please send mail to m5sim-users@lists.sourceforge.net. 6 7WHAT'S INCLUDED (AND NOT) 8------------------------- --- 47 unchanged lines hidden (view full) --- 56The following steps will build and test the simulator. The variable 57"$top" refers to the top directory where you've unpacked the files, 58i.e., the one containing the m5, m5-test, and ext directories. If you 59have a multiprocessor system, you should give scons a "-j N" argument (like 60make) to run N jobs in parallel. 61 62To build and test the syscall-emulation simulator: 63 |
641. In $top/m5/build, run "scons ALPHA_SE/m5.opt". 652. In $top/m5-test, run "./do-tests.pl -B ALPHA_SE". | 64 cd $top/m5/build 65 scons ALPHA_SE/test/opt/quick |
66 | 66 |
67The tests should end with "finished do-tests successfully!" 68Note: if you're running under Cygwin, several tests will fail with an 69"EIO trace inconsistency: ICNT mismatch" error. This is due to the 70lack of fesetround() under Cygwin causing differences in floating-point 71rounding. Other than that discrepancy your simulator is working perfectly. 72 | |
73To build and test the full-system simualator: 74 | 67To build and test the full-system simualator: 68 |
751. Download the full-system binary package from XXX. This package includes | 691. Download the full-system binary package from 70 http://m5.eecs.umich.edu/dist/m5_system_1.1.tar.bz2. This package includes |
76 disk images and kernel, palcode, and console binaries for Linux and FreeBSD. 772. Edit SYSTEMDIR in $top/m5-test/SysPaths.py to point to your local copy 78 of the binaries. | 71 disk images and kernel, palcode, and console binaries for Linux and FreeBSD. 722. Edit SYSTEMDIR in $top/m5-test/SysPaths.py to point to your local copy 73 of the binaries. |
793. In $top/m5/build, run "scons ALPHA_FS/m5.opt". 804. In $top/m5-test, run "./do-tests.pl -B ALPHA_FS". | 743. In $top/m5/build, run "scons ALPHA_FS/opt/test/quick". |
81 | 75 |