Skip to content

Commit 2c4414b

Browse files
committed
Exclude redox from cmsg test
1 parent 3230c80 commit 2c4414b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libc-test/build.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::env;
88
fn do_cc() {
99
let target = env::var("TARGET").unwrap();
1010
if cfg!(unix) {
11-
let exclude = ["wasi"];
11+
let exclude = ["redox", "wasi"];
1212
if !exclude.iter().any(|x| target.contains(x)) {
1313
let mut cmsg = cc::Build::new();
1414

@@ -564,7 +564,6 @@ fn test_redox(target: &str) {
564564
"sys/un.h",
565565
"sys/utsname.h",
566566
"sys/wait.h",
567-
"syslog.h",
568567
"termios.h",
569568
"time.h",
570569
"unistd.h",

0 commit comments

Comments
 (0)