Update building-linux.md with full instructions

This commit is contained in:
TreezZ 2024-07-07 16:21:24 +01:00 committed by GitHub
parent 379ec554a8
commit d2d0298205
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,6 +5,13 @@ SPDX-License-Identifier: GPL-2.0-or-later
## Build shadPS4 for Linux
Clone the repository recursively:
```
git clone https://github.com/shadps4-emu/shadPS4.git
cd shadPS4/
git submodule update --init --recursive
```
Generate the build directory in the shadPS4 directory:
```
cmake -S . -B build/
@ -17,5 +24,11 @@ cd build/
Use make to build the project:
```
make -j$(nproc)
cmake /"PATH"/"TO"/"DIRECTORY"/shadPS4/ && make -j$(nproc)
```
Now run the emulator:
```
./shadps4 /"PATH"/"TO"/"GAME"/"FOLDER"/eboot.bin
```