Skip to content

Commit

Permalink
Fix libc-test binds for wasm32-linux-musl
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunr2 committed Jul 25, 2024
1 parent 996e362 commit 42dc7bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::{env, io};
fn do_cc() {
let target = env::var("TARGET").unwrap();
if cfg!(unix) {
let exclude = ["redox", "wasi", "wali64"];
let exclude = ["redox", "wasi", "wasm32-linux-musl"];
if !exclude.iter().any(|x| target.contains(x)) {
let mut cmsg = cc::Build::new();

Expand Down

0 comments on commit 42dc7bb

Please sign in to comment.