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 ab757d2 commit dfbbc05Copy full SHA for dfbbc05
src/lib.rs
@@ -1751,7 +1751,9 @@ impl Build {
1751
}
1752
} else if target.contains("cloudabi") {
1753
format!("{}-{}", target, traditional)
1754
- } else if target == "wasm32-unknown-wasi" || target == "wasm32-unknown-unknown" {
+ } else if target == "wasm32-wasi" ||
1755
+ target == "wasm32-unknown-wasi" ||
1756
+ target == "wasm32-unknown-unknown" {
1757
"clang".to_string()
1758
} else if self.get_host()? != target {
1759
// CROSS_COMPILE is of the form: "arm-linux-gnueabi-"
0 commit comments