Skip to content

Instantly share code, notes, and snippets.

@nhthn
Created January 26, 2021 00:43
Show Gist options
  • Save nhthn/1d7c1fae6945d8c91cb9d1cc0a3dfacb to your computer and use it in GitHub Desktop.
Save nhthn/1d7c1fae6945d8c91cb9d1cc0a3dfacb to your computer and use it in GitHub Desktop.
How I build SuperCollider on Arch
sudo pacman -S cmake jack2 qt5-base qt5-tools qt5-quickcontrols2
git clone --recursive https://github.com/supercollider/supercollider.git

# No help browser
cmake .. -DSC_USE_QTWEBENGINE=OFF

# No emacs
cmake .. -DSC_EL=OFF

# No sudo for installation
cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/usr/local

# Highest optimization possible
cmake .. -DNATIVE=ON -DCMAKE_BUILD_TYPE=Release

make -j
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment