add links in README
[soc.git] / README.md
1 # About
2
3 The main SOC portion of Libre-SOC. A quad-core open source SOC with a 3D GPU,
4 VPU, and using Libre-licensed design cells.
5
6 Libre-SOC is Libre down to the VLSI Cells, thanks to Chips4Makers FlexLib
7 and Sorbonne University lip6.fr
8
9 # [Documentation](https://libre-soc.org/docs/)
10
11 # Installation
12
13 Best done using the dev-env-setup scripts:
14 https://git.libre-soc.org/?p=dev-env-setup.git;a=summary
15
16 make install
17 make test # optional (ish)
18
19 # Running Simulator tests
20
21 qemu and gdb for Power 64 are required. qemu can be installed with
22 "apt-get install qemu-system-ppc64", however gdb needs compiling from
23 source. Obtain the latest tarball, unpack it, then:
24
25 cd gdb-9.1 (or other location)
26 mkdir build
27 cd build
28 ../configure --srcdir=.. --host=x86_64-linux --target=powerpc64-linux-gnu
29 make -j16
30 make install
31
32 You will need to have installed the powerpc gnu gcc cross-compiler for
33 this to work:
34
35 apt-get install gcc-9-powerpc64-linux-gnu
36
37 Or, use this dev-env-script:
38 https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=ppc64-gdb-gcc;hb=HEAD