Skip to content

Instantly share code, notes, and snippets.

@stalexxx
Last active September 1, 2022 10:52
Show Gist options
  • Save stalexxx/f55c31eba298cbb9d1752f5fa44f0880 to your computer and use it in GitHub Desktop.
Save stalexxx/f55c31eba298cbb9d1752f5fa44f0880 to your computer and use it in GitHub Desktop.
super collider for m1
1. Supercollider
from https://scsynth.org/t/building-supercollider-and-plugins-on-mac-m1/4626
# If xcode license has not been agreed to, cmake will output errors about compilers not being found.
# run:
# sudo xcode-select --reset
# sudo xcodebuild -license
git clone --recursive https://github.com/supercollider/supercollider.git
cd supercollider
brew install git cmake libsndfile readline qt5
brew install portaudio fftw
mkdir -p build
cd build
cmake -G Xcode -DCMAKE_PREFIX_PATH=`brew --prefix qt5` -DSUPERNOVA=ON ..
cmake --build . --target install --config RelWithDebInfo
2. sc3 plugins(after SC installed to Application)
SC_DIR=/path/to/supercollider/from/prev
git clone --recursive https://github.com/supercollider/sc3-plugins.git
cd sc3-plugins
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE='Release' -DSC_PATH=$SC_DIR -DCMAKE_OSX_ARCHITECTURES=arm64 ..
cmake --build . --config Release
cmake --build . --config Release --target install
cp -av SC3plugins "$HOME/Library/Application Support/SuperCollider/Extensions"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment