mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #311] Add musl binary for ARM target #135
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @patrickelectric on GitHub (Feb 16, 2023).
Original GitHub issue: https://github.com/bootandy/dust/issues/311
ARM only has gnu binaries and that fails depending of the libc version installed, for embedded applications libc versions are more complicated, musl binaries will help with that.
I would recommend to have musl binaries as default
@bootandy commented on GitHub (Mar 15, 2023):
I tried adding a musl arm target but the build failed:
https://github.com/bootandy/dust/actions/runs/4420050043/jobs/7749252509
any ideas ?
@patrickelectric commented on GitHub (Mar 15, 2023):
It appears that you are using strip from host and not for the target.
@bootandy commented on GitHub (May 7, 2023):
https://github.com/bootandy/dust/pull/319
Added a musl arm build, it will be included in the next release.
@patrickelectric commented on GitHub (May 7, 2023):
Thanks, it works!