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 53b2f46 commit 9e22ce2Copy full SHA for 9e22ce2
build.rs
@@ -39,7 +39,7 @@ fn main() {
39
40
fn enable_use_proc_macro(target: &str) -> bool {
41
// wasm targets don't have the `proc_macro` crate, disable this feature.
42
- if target.contains("wasm32") {
+ if target.contains("wasm32") || target.contains("musl") {
43
return false;
44
}
45
0 commit comments