* actions removal * removed qt dir # Conflicts: # src/qt_gui/check_update.cpp # src/qt_gui/translations/ar_SA.ts # src/qt_gui/translations/ca_ES.ts # src/qt_gui/translations/da_DK.ts # src/qt_gui/translations/de_DE.ts # src/qt_gui/translations/el_GR.ts # src/qt_gui/translations/en_US.ts # src/qt_gui/translations/es_ES.ts # src/qt_gui/translations/fa_IR.ts # src/qt_gui/translations/fi_FI.ts # src/qt_gui/translations/fr_FR.ts # src/qt_gui/translations/hu_HU.ts # src/qt_gui/translations/id_ID.ts # src/qt_gui/translations/it_IT.ts # src/qt_gui/translations/ja_JP.ts # src/qt_gui/translations/ko_KR.ts # src/qt_gui/translations/lt_LT.ts # src/qt_gui/translations/nb_NO.ts # src/qt_gui/translations/nl_NL.ts # src/qt_gui/translations/pl_PL.ts # src/qt_gui/translations/pt_BR.ts # src/qt_gui/translations/pt_PT.ts # src/qt_gui/translations/ro_RO.ts # src/qt_gui/translations/ru_RU.ts # src/qt_gui/translations/sl_SI.ts # src/qt_gui/translations/sq_AL.ts # src/qt_gui/translations/sr_CS.ts # src/qt_gui/translations/sv_SE.ts # src/qt_gui/translations/tr_TR.ts # src/qt_gui/translations/uk_UA.ts # src/qt_gui/translations/ur_PK.ts # src/qt_gui/translations/vi_VN.ts # src/qt_gui/translations/zh_CN.ts # src/qt_gui/translations/zh_TW.ts * removed CMakePresets for qt builds * clear cmakelists from qt * sync config file with qtlauncher * fixing review stuff * Remove Qt code from memory patcher and add non-Qt fallback for automatic loading of patches The second feature is disabled if IPC is present, to avoid conflicts with it. * Add json submodule * More Qt removal * Documentation update * fix build * fix REUSE? * removed qrc file * fix clang * Simplify Qt installation instructions for macOS Removed instructions for installing x86_64 Qt on ARM and x86_64 Macs. * Remove Qt installation instructions from guide Removed instructions for downloading and configuring Qt. --------- Co-authored-by: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com>
4.3 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.
- If you want to build shadPS4 with the Qt Gui, simply select Clang x64 Release with Qt instead.
- 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\
To automatically populate the necessary files to run shadPS4.exe, run in a command prompt or terminal:
C:\Qt\<QtVersion>\msvc2022_64\bin\windeployqt6.exe "C:\path\to\shadps4.exe"
(Change Qt path if you've installed it to non-default path)
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- Optional (Qt only): run
pacman -S --needed mingw-w64-clang-aarch64-qt6-base mingw-w64-clang-aarch64-qt6-tools mingw-w64-clang-aarch64-qt6-multimedia
- Optional (Qt only): run
- 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.