xref: /gem5/
NameDateSize

..08-Mar-20154 KiB

.gitignoreH A D26-Mar-2019500

.hgignoreH A D22-Feb-2017206

build_opts/H04-Jul-20194 KiB

configs/H07-Oct-20164 KiB

CONTRIBUTING.mdH A D25-Mar-201914.1 KiB

COPYINGH A D02-Mar-20172.3 KiB

ext/H26-Mar-20194 KiB

include/H02-Aug-20174 KiB

LICENSEH A D08-Mar-20151.4 KiB

MAINTAINERSH A D20-Sep-20192.9 KiB

READMEH A D08-Mar-20151.7 KiB

SConstructH A D30-Aug-201952.2 KiB

site_scons/H07-Mar-20184 KiB

src/H04-Jul-20194 KiB

system/H08-Mar-20154 KiB

TESTING.mdH A D25-Mar-20196.7 KiB

tests/H04-Jul-20194 KiB

util/H26-Mar-20194 KiB

README

1This is the gem5 simulator.
2
3The main website can be found at http://www.gem5.org
4
5A good starting point is http://www.gem5.org/Introduction, and for
6more information about building the simulator and getting started
7please see http://www.gem5.org/Documentation and
8http://www.gem5.org/Tutorials.
9
10To build gem5, you will need the following software: g++ or clang,
11Python (gem5 links in the Python interpreter), SCons, SWIG, zlib, m4,
12and lastly protobuf if you want trace capture and playback
13support. Please see http://www.gem5.org/Dependencies for more details
14concerning the minimum versions of the aforementioned tools.
15
16Once you have all dependencies resolved, type 'scons
17build/<ARCH>/gem5.opt' where ARCH is one of ALPHA, ARM, NULL, MIPS,
18POWER, SPARC, or X86. This will build an optimized version of the gem5
19binary (gem5.opt) for the the specified architecture. See
20http://www.gem5.org/Build_System for more details and options.
21
22With the simulator built, have a look at
23http://www.gem5.org/Running_gem5 for more information on how to use
24gem5.
25
26The basic source release includes these subdirectories:
27   - configs: example simulation configuration scripts
28   - ext: less-common external packages needed to build gem5
29   - src: source code of the gem5 simulator
30   - system: source for some optional system software for simulated systems
31   - tests: regression tests
32   - util: useful utility programs and files
33
34To run full-system simulations, you will need compiled system firmware
35(console and PALcode for Alpha), kernel binaries and one or more disk
36images. Please see the gem5 download page for these items at
37http://www.gem5.org/Download
38
39If you have questions, please send mail to gem5-users@gem5.org
40
41Enjoy using gem5 and please share your modifications and extensions.
42