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 975eb6b commit 3ce82ddCopy full SHA for 3ce82dd
libc-test/build.rs
@@ -11,7 +11,6 @@ fn main() {
11
let x86_64 = target.contains("x86_64");
12
let x32 = target.ends_with("gnux32");
13
let windows = target.contains("windows");
14
- let msvc = target.contains("windows-msvc");
15
let mingw = target.contains("windows-gnu");
16
let linux = target.contains("unknown-linux");
17
let android = target.contains("android");
@@ -713,9 +712,6 @@ fn main() {
713
712
s if ios && s.starts_with("RTV_") => true,
714
s if ios && s.starts_with("DLT_") => true,
715
716
- // these constants do not exist in msvc, but they are still useful
717
- "STDIN_FILENO" | "STDOUT_FILENO" | "STDERR_FILENO" if msvc => true,
718
-
719
_ => false,
720
}
721
});
0 commit comments