-
Notifications
You must be signed in to change notification settings - Fork 496
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
fallback for the x86-64-linux-musl-gcc is not available and cause build failures #1452
Comments
Perhaps we would need to have two possible prefixes instead of one? |
NobodyXu
added a commit
that referenced
this issue
Apr 6, 2025
Fixed #1452 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
Yeah, this is my bad, I argued that it shouldn't exist as a fallback in #1443, but apparently, that was wrong. Sorry! |
It happens :) Thank you for the fast response and fix! |
Fixed in #1455, will be released on Friday. |
tgross35
added a commit
to tgross35/rust-libc
that referenced
this issue
Apr 9, 2025
Work around a `cc` issue that doesn't have a fix released yet [1], which is causing CI failures for musl targets. [1]: rust-lang/cc-rs#1452
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Build env (docker image):
Installed musl packages:
After update of cc to 1.2.18, the build for the target x86_64-unknown-linux-musl fails with the error message
According to the #1443, the /usr/bin/musl-gcc should be the symlink, but it's actually not:
The issue first appeared with the cc crate 1.2.18, it was not present in 1.2.17 and below
Looks like the fallback for the musl-gcc should be preserved
UPD: workaround which works for me: creating the symlink to musl-gcc:
The text was updated successfully, but these errors were encountered: