-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to run on OSX #2
Comments
@xstasi Thank you so much! You made my life so much easier! |
Thank you very much, worked like a charm ✅ |
This worked! Just a reminder though to edit this line |
My setup: MacOS 12.7 / Monterey, Apple Silicon M1 (Macbook Pro), vamp-plugin-sdk 2.10.0, boost 1.84.0 (latest available by brew). I am getting compile errors in the boost library:
Probably just a compiler flag/setting wrong or missing, but I am lacking the right keywords to google a solution. |
Hi!
I know your project is only meant to be supported on Linux, but I got it running on Mac OSX (with m2 architecture!) and I'd like to share how I did it.
Feel free to make of this information what you wish.
brew install boost vamp-plugin-sdk
git clone https://github.com/c4dm/nnls-chroma; cd nnls-chroma
ln -s /opt/homebrew/Cellar/vamp-plugin-sdk/2.10.0/ vamp
ln -s /opt/homebrew/Cellar/boost/1.81.0_1 boost
cp vamp/lib/*a vamp/include/
make -f Makefile.osx
mkdir -p ~/Library/Audio/Plug-Ins/Vamp
cp nnls-chroma.dylib ~/Library/Audio/Plug-Ins/Vamp
Hope this may save a bit of time and headache to the next person trying to run this :)
Thanks for your work!
The text was updated successfully, but these errors were encountered: