Sunshine binaries are built using CMake and requires cmake > 3.25.
It is recommended to use one of the following compilers:
| Compiler | Version |
|---|---|
| GCC | 14+ |
| Clang | 17+ |
| Apple Clang | 15+ |
Caution
Sunshine support for FreeBSD is experimental and may be incomplete or not work as expected
pkg install -y \
audio/opus \
audio/pulseaudio \
devel/cmake \
devel/doxygen \
devel/evdev-proto \
devel/git \
devel/libevdev \
devel/llvm19 \
devel/ninja \
devel/pkgconf \
devel/qt6-base \
ftp/curl \
graphics/graphviz \
graphics/libdrm \
graphics/qt6-svg \
graphics/wayland \
multimedia/libva \
net/miniupnpc \
ports-mgmt/pkg \
security/openssl \
shells/bash \
www/npm-node22 \
x11/libX11 \
x11/libxcb \
x11/libXfixes \
x11/libXrandr \
x11/libXtstUse LLVM 19 when configuring a local FreeBSD build:
export CC=clang19
export CXX=clang++19Dependencies vary depending on the distribution. You can reference our linux_build.sh script for a list of dependencies we use in Debian-based, Fedora-based and Arch-based distributions. Please submit a PR if you would like to extend the script to support other distributions.
If you are using KMS, patching the Sunshine binary with setcap is required. Some post-install scripts handle this. If building
from source and using the binary directly, this will also work:
sudo cp build/sunshine /tmp
sudo setcap cap_sys_admin,cap_sys_nice+p /tmp/sunshine
sudo getcap /tmp/sunshine
sudo mv /tmp/sunshine build/sunshineSunshine requires CUDA Toolkit for NVFBC capture. There are two caveats to CUDA:
- The version installed depends on the version of GCC.
- The version of CUDA you use will determine compatibility with various GPU generations. At the time of writing, the recommended version to use is CUDA ~13.1. See CUDA compatibility for more info.
Note
To install older versions, select the appropriate run file based on your desired CUDA version and architecture according to CUDA Toolkit Archive
You can either use Homebrew or MacPorts to install dependencies.
dependencies=(
"boost" # Optional
"cmake"
"doxygen" # Optional, for docs
"graphviz" # Optional, for docs
"icu4c" # Optional, if boost is not installed
"miniupnpc"
"ninja"
"node"
"openssl@3"
"opus"
"pkg-config"
"qtbase"
"qtsvg"
)
brew install "${dependencies[@]}"If there are issues with an SSL header that is not found:
@tabs{
@tab{ Intel | bash ln -s /usr/local/opt/openssl/include/openssl /usr/local/include/openssl }
@tab{ Apple Silicon | bash ln -s /opt/homebrew/opt/openssl/include/openssl /opt/homebrew/include/openssl
}
}
dependencies=(
"cmake"
"curl"
"doxygen" # Optional, for docs
"graphviz" # Optional, for docs
"libopus"
"miniupnpc"
"ninja"
"npm9"
"pkgconfig"
"qt6-qtbase"
"qt6-qtsvg"
)
sudo port install "${dependencies[@]}"Warning
Cross-compilation is not supported on Windows. You must build on the target architecture.
First, you need to install MSYS2.
For AMD64 startup "MSYS2 UCRT64" (or for ARM64 startup "MSYS2 CLANGARM64") then execute the following commands.
pacman -SyuFor UCRT64:
export TOOLCHAIN="ucrt-x86_64"For CLANGARM64:
export TOOLCHAIN="clang-aarch64"dependencies=(
"git"
"mingw-w64-${TOOLCHAIN}-boost" # Optional
"mingw-w64-${TOOLCHAIN}-cmake"
"mingw-w64-${TOOLCHAIN}-cppwinrt"
"mingw-w64-${TOOLCHAIN}-curl-winssl"
"mingw-w64-${TOOLCHAIN}-doxygen" # Optional, for docs... better to install official Doxygen
"mingw-w64-${TOOLCHAIN}-graphviz" # Optional, for docs
"mingw-w64-${TOOLCHAIN}-miniupnpc"
"mingw-w64-${TOOLCHAIN}-onevpl"
"mingw-w64-${TOOLCHAIN}-openssl"
"mingw-w64-${TOOLCHAIN}-opus"
"mingw-w64-${TOOLCHAIN}-toolchain"
"mingw-w64-${TOOLCHAIN}-qt6-static"
)
if [[ "${MSYSTEM}" == "UCRT64" ]]; then
dependencies+=(
"mingw-w64-${TOOLCHAIN}-MinHook"
"mingw-w64-${TOOLCHAIN}-nsis"
)
fi
pacman -S "${dependencies[@]}"Static Qt is enabled by default on Windows. Sunshine automatically adds the MSYS2 static Qt prefix at
${MINGW_PREFIX}/qt6-static when that package is installed. If an IDE does not inherit MINGW_PREFIX, Sunshine
derives the same prefix from the selected compiler. If static Qt is installed in a custom location, specify it with
-DCMAKE_PREFIX_PATH=/path/to/qt6-static.
To use dynamic Qt instead, configure with -DSUNSHINE_USE_STATIC_QT=OFF and ensure the dynamic Qt package is
available through the normal toolchain prefix.
To create a WiX installer, you also need to install .NET.
To build the frontend, install native Node.js for the target architecture. The MSYS2 Node.js package is not supported because its shared runtime cannot load the native binding required by Rolldown.
Ensure git is installed on your system, then clone the repository using the following command:
git clone https://github.com/lizardbyte/sunshine.git --recurse-submodules
cd sunshine
mkdir buildcmake -B build -G Ninja -S .
cmake --build buildTip
Available build options can be found in options.cmake.
@tabs{
@tab{FreeBSD | @tabs{
@tab{pkg | bash cpack -G FREEBSD --config ./build/CPackConfig.cmake }
}}
@tab{Linux | @tabs{
@tab{deb | bash cpack -G DEB --config ./build/CPackConfig.cmake }
@tab{rpm | bash cpack -G RPM --config ./build/CPackConfig.cmake }
}}
@tab{macOS | @tabs{
@tab{DragNDrop | bash cpack -G DragNDrop --config ./build/CPackConfig.cmake }
}}
@tab{Windows | @tabs{
@tab{NSIS Installer | bash cpack -G NSIS --config ./build/CPackConfig.cmake }
@tab{WiX Installer | bash cpack -G WIX --config ./build/CPackConfig.cmake }
@tab{Portable | bash cpack -G ZIP --config ./build/CPackConfig.cmake }
}}
}
It may be beneficial to build remotely in some cases. This will enable easier building on different operating systems.
- Fork the project
- Activate workflows
- Trigger the CI workflow manually
- Download the artifacts/binaries from the workflow run summary
| Previous | Next |
|---|---|
| Troubleshooting | Contributing |