Updated Compiling on Linux (markdown)

master
rai 2020-05-10 15:55:45 +02:00
parent aa7359975c
commit aa080b0a58
1 changed files with 4 additions and 4 deletions

@ -1,9 +1,9 @@
# 1. Copy baserom(s) for asset extraction
## Copy baserom(s) for asset extraction
For each version (jp/us/eu) that you want to build an executable for, put an existing ROM at
`./baserom.<version>.z64` for asset extraction.
# 2. Install build dependencies
## Install build dependencies
The build system has the following package requirements:
* python3 >= 3.6
@ -39,7 +39,7 @@ sudo xbps-install -S base-devel python3 audiofile-devel SDL2-devel glew-devel
sudo xbps-install -S base-devel python3 audiofile-devel-32bit SDL2-devel-32bit glew-devel-32bit
```
# 3. Build the executable.
## Build the executable.
Run `make` to build (defaults to `VERSION=us`)
@ -47,4 +47,4 @@ Run `make` to build (defaults to `VERSION=us`)
make VERSION=jp -j6 # build (J) version with 6 jobs
make VERSION=us MARCH=i686 TARGET_BITS=32 # builds a (U) 32-bit executable
make TARGET_RPI=1 # targets an executable for a Raspberry Pi
```
```