-
-
Notifications
You must be signed in to change notification settings - Fork 587
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
Running on Linux ARM? #53
Comments
Hi @adamwolf, I'm thinking about alternatives, but there is a big chance that getting rid of trigger sound tone is the only way to go. Anyway, will be resolved in upcoming releases. |
I was able to install golang and build it that way.
|
Do you have any tips on how you got it to build? I get the oto player errors and it fails. Is there something I can modify to remove the oto player dependency so it will build? |
@adamwolf Could you share the steps for build? :) |
Unfortunately, my notes for that are with a previous contract, and I do not recall. Sorry! |
on RPI 3B+ Rasbian Buster as root: apt install golang libasound2-dev git |
Thanks! Also works for me on aarch64 with the following line env GOOS=linux GOARCH=arm64 go build |
also works by forcing the platform on Docker to an arm architecture, e.g. docker run -it --rm --platform linux/arm golang:1.17 and then in that container running: apt update
apt install -y libasound2-dev
git clone https://github.com/sqshq/sampler.git
go build |
Hi folks! This looks great. I want to try it out on an ARM box of mine, but the executable doesn't work, of course. I'll grab the source and see if I can make it go, but any thoughts on adding an "advanced linux installation" section or something?
The text was updated successfully, but these errors were encountered: