Skip to content

Commit 42dc7bb

Browse files
committed
Fix libc-test binds for wasm32-linux-musl
1 parent 996e362 commit 42dc7bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc-test/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::{env, io};
1111
fn do_cc() {
1212
let target = env::var("TARGET").unwrap();
1313
if cfg!(unix) {
14-
let exclude = ["redox", "wasi", "wali64"];
14+
let exclude = ["redox", "wasi", "wasm32-linux-musl"];
1515
if !exclude.iter().any(|x| target.contains(x)) {
1616
let mut cmsg = cc::Build::new();
1717

0 commit comments

Comments
 (0)