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