Skip to main content

Install FAudio

Some games (e.g., Celeste) may depend on FAudio. If your distribution does not provide it, you can compile and install it yourself.

The official README for FAudio provides general steps for building FAudio:

git clone https://github.com/FNA-XNA/FAudio.git
cd FAudio
mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install

Update FAudio

  1. Get the latest code:

    cd FAudio
    git pull origin main
  2. Recompile and install:

    mkdir -p build
    cd build
    cmake ..
    make -j$(nproc)
    sudo make install