3.9 KiB
Build shadPS4 for Windows
This tutorial reads as if you have none of the prerequisites already installed. If you do, just ignore the steps regarding installation.
Warning
If you are trying to compile older builds for testing, do not provide the
--depth 1flag ingit clone. This flag omits the commit history from your clone, saving storage space while preventing you from testing older commits.
Note: ARM64 is not supported! As of writing, it will not build nor run. The instructions with respect to ARM64 are for developers only.
Option 1: Visual Studio 2022
(Prerequisite) Download the Community edition from Visual Studio 2022
Once you are within the installer:
- Select
Desktop development with C++ - Go to "Individual Components" tab then search and select both
C++ Clang Compiler for WindowsandMSBuild support for LLVM - Continue the installation
(Prerequisite) Download Git for Windows
Go through the Git for Windows installation as normal
Cloning the source code
- Open Git for Windows, navigate to a place where you want to store the shadPS4 source code folder
- Clone the repository by running
git clone --depth 1 --recursive https://github.com/shadps4-emu/shadPS4
Compiling with Visual Studio GUI
- Open up Visual Studio, select
Open a local folderand select the folder with the shadPS4 source code. The folder should containCMakeLists.txt - Change Clang x64 Debug to Clang x64 Release if you want a regular, non-debug build.
- Change the project to build to shadps4.exe
- Build -> Build All
Your shadps4.exe will be in C:\path\to\source\Build\x64-Clang-Release\
Option 2: MSYS2/MinGW
Important
Building with MSYS2 is broken as of right now, the only way to build on Windows is to use Option 1: Visual Studio 2022.
(Prerequisite) Download MSYS2
Go through the MSYS2 installation as normal
If you are building to distribute, please omit -DCMAKE_CXX_FLAGS="-O2 -march=native" within the build configuration step.
Normal x86-based computers, follow:
- Open "MSYS2 MINGW64" from your new applications
- Run
pacman -Syu, let it complete; - Run
pacman -S --needed git mingw-w64-x86_64-binutils mingw-w64-x86_64-clang mingw-w64-x86_64-cmake mingw-w64-x86_64-rapidjson mingw-w64-x86_64-ninja mingw-w64-x86_64-ffmpeg - Run
git clone --depth 1 --recursive https://github.com/shadps4-emu/shadPS4 - Run
cd shadPS4 - Run
cmake -S . -B build -DCMAKE_C_COMPILER="clang.exe" -DCMAKE_CXX_COMPILER="clang++.exe" -DCMAKE_CXX_FLAGS="-O2 -march=native" - Run
cmake --build build - To run the finished product, run
./build/shadPS4.exe
ARM64-based computers, follow:
- Open "MSYS2 CLANGARM64" from your new applications
- Run
pacman -Syu, let it complete; - Run
pacman -S --needed git mingw-w64-clang-aarch64-binutils mingw-w64-clang-aarch64-clang mingw-w64-clang-aarch64-rapidjson mingw-w64-clang-aarch64-cmake mingw-w64-clang-aarch64-ninja mingw-w64-clang-aarch64-ffmpeg - Run
git clone --depth 1 --recursive https://github.com/shadps4-emu/shadPS4 - Run
cd shadPS4 - Run
cmake -S . -B build -DCMAKE_C_COMPILER="clang.exe" -DCMAKE_CXX_COMPILER="clang++.exe" -DCMAKE_CXX_FLAGS="-O2 -march=native" - Run
cmake --build build - To run the finished product, run
./build/shadPS4.exe
Note on MSYS2 builds
These builds may not be easily copyable to people who do not also have a MSYS2 installation. If you want to distribute these builds, you need to copy over the correct DLLs into a distribution folder. In order to run them, you must be within the MSYS2 shell environment.