-
Notifications
You must be signed in to change notification settings - Fork 52
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
ARM architecture support #227
Comments
Looks like we need cross compilation in any case, for example to release Mac OS X binary, so solving cross compilation issue will be fruitful for daemon. |
Update on this.
So looks like we will have to figure out cross-compilation. |
Yes! Managed to snetd running on Raspberry Pi using |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm investigating ARM support, so that snetd can be run on low-powered devices like the Raspberry Pi and be used in IoT applications.
This issue is an attempt to log my progress.
Initially I'm trying to cross compile with the following:
The first issue is:
That can be fixed by using
math.MaxInt32
instead ofmath.MaxInt64
.The next issue is that ethereum-go has to do some C compilation and requires xgo for cross-compilation to work properly.
While cross compilation would make development faster and more convenient, tomorrow I'll try compiling directly on the Pi.
The text was updated successfully, but these errors were encountered: