README (1028:8cb77c937933) README (1704:e1fb036ad788)
1This is release m5_1.0_beta1 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-------------------------

--- 9 unchanged lines hidden (view full) ---

182.4/2.6 and the proprietary Compaq/HP Tru64 version of Unix. We are able
19to distribute Linux bootdisks, but we are unable to distribute bootable
20disk images of Tru64 Unix. If you have a Tru64 license and are interested
21in obtaining disk images, contact us at m5-dev@eecs.umich.edu.
22
23WHAT'S NEEDED
24-------------
25-GCC(3.X)
1This is release m5_1.0_beta1 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-------------------------

--- 9 unchanged lines hidden (view full) ---

182.4/2.6 and the proprietary Compaq/HP Tru64 version of Unix. We are able
19to distribute Linux bootdisks, but we are unable to distribute bootable
20disk images of Tru64 Unix. If you have a Tru64 license and are interested
21in obtaining disk images, contact us at m5-dev@eecs.umich.edu.
22
23WHAT'S NEEDED
24-------------
25-GCC(3.X)
26-Python(2.2.2+)
26-Python(2.4+)
27
28WHAT'S RECOMMENDED
29------------------
30-MySQL (for statistics complex statistics storage/retrieval)
31-Python-MysqlDB (for statistics analysis)
32
33GETTING STARTED
34---------------
35
36The following steps will build and test the simulator. The variable
37"$top" refers to the top directory where you've unpacked the files,
38i.e., the one containing the m5, m5-test, and ext directories.
39
40There are three different build targets and three optimizations in each level:
41Target:
42-------
27
28WHAT'S RECOMMENDED
29------------------
30-MySQL (for statistics complex statistics storage/retrieval)
31-Python-MysqlDB (for statistics analysis)
32
33GETTING STARTED
34---------------
35
36The following steps will build and test the simulator. The variable
37"$top" refers to the top directory where you've unpacked the files,
38i.e., the one containing the m5, m5-test, and ext directories.
39
40There are three different build targets and three optimizations in each level:
41Target:
42-------
43ALPHA - Syscall emulation simulation
44KERNEL - Linux full system simulation
45KERNEL_TLASER - Tru64 Unix full system simulation
43ALPHA_SE - Syscall emulation simulation
44ALPHA_FS - Linux full system simulation
45ALPHA_FS_TL - Tru64 (Turbolaser) Unix full system simulation
46
47Optimization:
48-------------
49m5.debug - debug version of the code with tracing and without optimization
50m5.opt - optimized version of code with tracing
51m5.fast - optimized version of the code without tracing and asserts
52
53cd $top/m5/build
46
47Optimization:
48-------------
49m5.debug - debug version of the code with tracing and without optimization
50m5.opt - optimized version of code with tracing
51m5.fast - optimized version of the code without tracing and asserts
52
53cd $top/m5/build
54scons TARGET/OPTLEVL # e.g. KERNEL/m5.opt, use -j N if you have a MP system
54scons TARGET/OPTLEVL # e.g. ALPHA_FS/m5.opt, use -j N if you have a MP system
55cd $top/m5-test
55cd $top/m5-test
56./do-tests.pl -B ALPHA # test what you just built
57./do-tests.pl -B KERNEL # test what you just built
56./do-tests.pl -B ALPHA_SE # test what you just built
57./do-tests.pl -B ALPHA_FS # test what you just built
58# wait for tests to run...
59# should end with "finished do-tests successfully!"
58# wait for tests to run...
59# should end with "finished do-tests successfully!"