-
Notifications
You must be signed in to change notification settings - Fork 476
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
Add armv6 release target #1715
Add armv6 release target #1715
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I just tried it on CI, and the binary built. Minor nits in the review comments.
.github/workflows/release.yaml
Outdated
- armv7-unknown-linux-musleabihf | ||
- arm-unknown-linux-musleabihf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like to keep these sorted:
- armv7-unknown-linux-musleabihf | |
- arm-unknown-linux-musleabihf | |
- arm-unknown-linux-musleabihf | |
- armv7-unknown-linux-musleabihf |
.github/workflows/release.yaml
Outdated
- target: armv7-unknown-linux-musleabihf | ||
os: ubuntu-latest | ||
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | ||
- target: arm-unknown-linux-musleabihf | ||
os: ubuntu-latest | ||
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And these:
- target: armv7-unknown-linux-musleabihf | |
os: ubuntu-latest | |
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | |
- target: arm-unknown-linux-musleabihf | |
os: ubuntu-latest | |
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | |
- target: arm-unknown-linux-musleabihf | |
os: ubuntu-latest | |
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | |
- target: armv7-unknown-linux-musleabihf | |
os: ubuntu-latest | |
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, looks good to me!
Hi, this simple pull request add armv6 release target. I've tested the binary, it works in Raspberry Pi Zero.
See #1714.