We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f55b01 commit 0f8834dCopy full SHA for 0f8834d
src/lib.rs
@@ -3510,7 +3510,9 @@ impl Build {
3510
"x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3511
"x86_64-linux-gnu", // rustfmt wrap
3512
]), // explicit None if not found, so caller knows to fall back
3513
- "x86_64-unknown-linux-musl" => Some("x86_64-linux-musl"),
+ "x86_64-unknown-linux-musl" => {
3514
+ self.find_working_gnu_prefix(&["x86_64-linux-musl", "musl"])
3515
+ }
3516
"x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
3517
_ => None,
3518
}
0 commit comments