Skip to content

Linux Builds

Paul Manias edited this page Apr 28, 2024 · 6 revisions

GCC

Linux systems require a few package dependencies to be installed first if a complete build is desired. For an Apt based system such as Debian or Ubuntu, execute the following:

sudo apt-get install libasound2-dev libxrandr-dev libxxf86dga-dev cmake g++ xsltproc

The following will configure the build process:

cmake -S . -B release -DCMAKE_BUILD_TYPE=Release

A full build and install can be performed with:

cmake --build release -j 8 -- -O
sudo cmake --install release

If problems occur at any stage during the build and you suspect an issue in the execution of a command, enable logging of the build process with the --verbose option.

Clone this wiki locally