add missing packages
[soc.git] / README.md
1 # Installation
2
3 make update
4 make install
5 make test # optional (ish)
6
7 # Running Simulator tests
8
9 qemu and gdb for Power 64 are required. qemu can be installed with
10 "apt-get install qemu-system-ppc64", however gdb needs compiling from
11 source. Obtain the latest tarball, unpack it, then:
12
13 cd gdb-9.1 (or other location)
14 mkdir build
15 cd build
16 ../configure --srcdir=.. --host=x86_64-linux --target=powerpc64-linux-gnu
17 make -j16
18 make install
19
20 You will need to have installed the powerpc gnu gcc cross-compiler for
21 this to work:
22
23 apt-get install gcc-9-powerpc64-linux-gnu
24