Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib.rs

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

``

Original file line number Diff line number Diff line change
Expand Up @@ -3510,7 +3510,9 @@ impl Build {
"x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
"x86_64-linux-gnu", // rustfmt wrap
]), // explicit None if not found, so caller knows to fall back
"x86_64-unknown-linux-musl" => Some("x86_64-linux-musl"),
"x86_64-unknown-linux-musl" => {
self.find_working_gnu_prefix(&["x86_64-linux-musl", "musl"])
}
"x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
_ => None,
}
Expand Down
Loading