Help:Building RPCS3: Difference between revisions

Help page
(Don't think Acquiring is the correct term)
(Updated dependency versions)
(13 intermediate revisions by 3 users not shown)
Line 4: Line 4:
RPCS3 uses many 3rd party libraries and projects. Most notably, in order to build the project, you will need the following:
RPCS3 uses many 3rd party libraries and projects. Most notably, in order to build the project, you will need the following:


* [https://vulkan.lunarg.com/sdk/home Vulkan SDK]
* [https://cmake.org/download/ CMake 3.14.1+]
* [https://cmake.org/download/ CMake 3.8.2+]
* [https://www.python.org/downloads/ Python 3.3+]
* [https://www.python.org/downloads/ Python 3.3+]
* [https://www.qt.io/download-qt-installer Qt 5.10+]
* [https://www.qt.io/download-qt-installer Qt 5.14.2]
* [https://vulkan.lunarg.com/sdk/home Vulkan SDK 1.1.126+] (See "Install the SDK" [https://vulkan.lunarg.com/doc/sdk/latest/windows/getting_started.html here])


In addition, a relatively modern compiler is needed. The project uses C++17, and as a result GCC 7.3 or Clang 5.0 are the minimum needed compilers.
In addition, GCC 9+ or Clang 9+ are the minimum needed compilers.


== Clone ==
== Clone ==
Clone and initialize the repository:
Clone and initialize the repository:


<pre>
<pre>
git clone https://github.com/RPCS3/rpcs3.git
git clone https://github.com/RPCS3/rpcs3.git
cd rpcs3/
cd rpcs3
git submodule update --init
git submodule update --init
</pre>
</pre>


== macOS ==
== macOS ==
Support for macOS is in its early stages. A few members of the community are working on getting Vulkan working on Macs, via gfx-rs and MoltenVK. Support for OpenGL will likely never come to the platform. For development, it is recommended to use Xcode and install the following through the terminal:
Support for macOS is in its early stages. A few members of the community are working on getting Vulkan working on macOS, via [https://github.com/gfx-rs/portability gfx-rs] and [https://github.com/KhronosGroup/MoltenVK MoltenVK]. Support for OpenGL will likely never come to the platform. For development, it is recommended to use Xcode and install the following through the terminal:


<pre>
<pre>
Line 89: Line 88:


== CMake Build Options ==
== CMake Build Options ==
All CMake options are enabled or disabled using the parameters <code>ON</code> or <code>OFF</code> respectively.
{| class="wikitable"
{| class="wikitable"
! Option !! Default !! Description
! Option !! Default !! Description
|-
|-
| <code>-DUSE_SYSTEM_LIBPNG=ON/OFF</code> || OFF || Build against the shared libpng instead of using the built-in one. <br />libpng 1.6+ highly recommended. Try this option if you get version conflict errors or only see black game icons.
| <code>-DUSE_NATIVE_INSTRUCTIONS=</code> || ON || Build with <code>-march=native</code>, which is useful for local builds, but not good for packages.
|-
| <code>-DWITH_LLVM=</code> || ON || Build with LLVM.
|-
| <code>-DBUILD_LLVM_SUBMODULE=</code> || ON || Build with pre-built LLVM libraries from [https://github.com/RPCS3/llvm/releases RPCS3 git submodule].
|-
| <code>-DUSE_ALSA=</code> || ON || Build with ALSA audio backend.
|-
| <code>-DUSE_PULSE=</code> || ON || Build with PulseAudio audio backend.
|-
| <code>-DUSE_LIBEVDEV=</code> || ON || Build with libevdev-based joystick support.
|-
| <code>-DUSE_DISCORD_RPC=</code> || ON || Build with Discord Rich Presence integration.
|-
| <code>-DUSE_SYSTEM_ZLIB=</code> || ON || Build with system ZLIB instead of the built-in one.
|-
| <code>-DUSE_VULKAN=</code> || ON || Build with Vulkan support.
|-
| <code>-DBUILD_SHARED_LIBS=</code> || OFF || ?
|-
| <code>-DSKIP_GLSLANG_INSTALL=</code> || ? || ?
|-
| <code>-DENABLE_AMD_EXTENSIONS=</code> || ON || Build with support for AMD-specific extensions.
|-
| <code>-DENABLE_GLSLANG_BINARIES=</code> || ON || ?
|-
| <code>-DENABLE_NV_EXTENSIONS=</code> || ON || Build with support for NVIDIA-specific extensions.
|-
|-
| <code>-DUSE_SYSTEM_FFMPEG=ON/OFF</code> || OFF || Build against the shared FFmpeg libraries instead of using the built-in patched version. <br />Try this if the built-in version breaks the OpenGL renderer for you.
| <code>-DENABLE_HLSL=</code> || ON || ?
|-
|-
| <code>-DWITH_LLVM=ON/OFF</code> || ON || Build with LLVM.
| <code>-DENABLE_OPT=</code> || ON || ?
|-
|-
| <code>-DWITH_GDB=ON/OFF</code> || OFF || Build with support for debugging PS3 games using GDB.
| <code>-DUNITY_BUILD_EMU=</code> || OFF || ?
|-
|-
| <code>-DUSE_VULKAN=ON/OFF</code> || ON || Build with Vulkan support.
| <code>-DUSE_SYSTEM_LIBPNG=</code> || OFF || Build against the shared libpng instead of using the built-in one. <br />libpng 1.6+ highly recommended. Try this option if you get version conflict errors or only see black game icons.
|-
|-
| style="white-space: nowrap;" | <code>-DUSE_NATIVE_INSTRUCTIONS=ON/OFF</code> || ON || Build with <code>-march=native</code>, which is useful for local builds, but not good for packages.
| <code>-DUSE_SYSTEM_FFMPEG=</code> || OFF || Build against the shared FFmpeg libraries instead of using the built-in patched version. <br />Try this if the built-in version breaks the OpenGL renderer for you.
|}
|}

Revision as of 20:19, 26 July 2020

Official, up-to-date instructions for Windows and Linux can be found in the readme. However, many build platforms are supported partially by the development team i.e. pull requests are accepted from various members of the community who have taken to ensuring that other platforms can also build RPCS3 correctly. However, they are not actively maintained by the development team, and as a result many Unices such as macOS and FreeBSD break often. You can find the build process detailed for several less-common platforms below.

Dependencies

RPCS3 uses many 3rd party libraries and projects. Most notably, in order to build the project, you will need the following:

In addition, GCC 9+ or Clang 9+ are the minimum needed compilers.

Clone

Clone and initialize the repository:

git clone https://github.com/RPCS3/rpcs3.git
cd rpcs3
git submodule update --init

macOS

Support for macOS is in its early stages. A few members of the community are working on getting Vulkan working on macOS, via gfx-rs and MoltenVK. Support for OpenGL will likely never come to the platform. For development, it is recommended to use Xcode and install the following through the terminal:

brew install glew llvm qt cmake

You will also need to remember to set environment vars:

LLVM_DIR=/usr/local/opt/llvm/ OR, wherever LLVM is installed
Qt5_DIR=/usr/local/opt/qt/lib/cmake/Qt5 OR, wherever Qt is installed

Build

cd ../ && mkdir rpcs3_build && cd rpcs3_build
cmake ../rpcs3/ && make GitVersion && make

Run

./bin/rpcs3

Msys2

There is some support for non-MSVC based compilation on Windows. The Msys2 platform using the Mingw build tools did work at one point, though it should be noted that the following instructions are outdated.

Dependencies

pacman -S base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-yasm mingw-w64-x86_64-python2 mingw-w64-x86_64-ntldd-git mingw-w64-x86_64-qt5 mingw-w64-x86_64-openal mingw-w64-x86_64-glew git

Clone

git clone https://github.com/RPCS3/rpcs3.git
cd rpcs3
git submodule update --init

Configure

cd .. && mkdir rpcs3_build && cd rpcs3_build
cmake -G "MSYS Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make ../rpcs3/
mingw32-make.exe GitVersion && mingw32-make.exe discord-rpc

Build

mingw32-make -jX #X is core count

Install

cd ./bin
for l in $(ntldd.exe -R rpcs3.exe|grep mingw64|sed -e 's/^[ \t]*//'|cut -d' ' -f3);do cp $l .;done

mkdir -p ./qt/plugins/{bearer,imageformats,platforms,styles}
cp /mingw64/share/qt5/plugins/bearer/qgenericbearer.dll ./qt/plugins/bearer/
cp /mingw64/share/qt5/plugins/imageformats/{qgif.dll,qicns.dll,qico.dll,qjpeg.dll,qtga.dll,qtiff.dll,qwbmp.dll,qwebp.dll} ./qt/plugins/imageformats/
cp /mingw64/share/qt5/plugins/platforms/qwindows.dll ./qt/plugins/platforms/
cp /mingw64/share/qt5/plugins/styles/qwindowsvistastyle.dll ./qt/plugins/styles/

Run

./rpcs3

CMake Build Options

All CMake options are enabled or disabled using the parameters ON or OFF respectively.

Option Default Description
-DUSE_NATIVE_INSTRUCTIONS= ON Build with -march=native, which is useful for local builds, but not good for packages.
-DWITH_LLVM= ON Build with LLVM.
-DBUILD_LLVM_SUBMODULE= ON Build with pre-built LLVM libraries from RPCS3 git submodule.
-DUSE_ALSA= ON Build with ALSA audio backend.
-DUSE_PULSE= ON Build with PulseAudio audio backend.
-DUSE_LIBEVDEV= ON Build with libevdev-based joystick support.
-DUSE_DISCORD_RPC= ON Build with Discord Rich Presence integration.
-DUSE_SYSTEM_ZLIB= ON Build with system ZLIB instead of the built-in one.
-DUSE_VULKAN= ON Build with Vulkan support.
-DBUILD_SHARED_LIBS= OFF ?
-DSKIP_GLSLANG_INSTALL= ? ?
-DENABLE_AMD_EXTENSIONS= ON Build with support for AMD-specific extensions.
-DENABLE_GLSLANG_BINARIES= ON ?
-DENABLE_NV_EXTENSIONS= ON Build with support for NVIDIA-specific extensions.
-DENABLE_HLSL= ON ?
-DENABLE_OPT= ON ?
-DUNITY_BUILD_EMU= OFF ?
-DUSE_SYSTEM_LIBPNG= OFF Build against the shared libpng instead of using the built-in one.
libpng 1.6+ highly recommended. Try this option if you get version conflict errors or only see black game icons.
-DUSE_SYSTEM_FFMPEG= OFF Build against the shared FFmpeg libraries instead of using the built-in patched version.
Try this if the built-in version breaks the OpenGL renderer for you.