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 c5b72e3 commit bf1ab2bCopy full SHA for bf1ab2b
libc-test/build.rs
@@ -1860,6 +1860,7 @@ fn test_linux(target: &str) {
1860
let x32 = target.contains("x32");
1861
let mips = target.contains("mips");
1862
let mips32_musl = mips && !target.contains("64") && musl;
1863
+ let sparc64 = target.contains("sparc64");
1864
1865
let mut cfg = ctest::TestGenerator::new();
1866
cfg.define("_GNU_SOURCE", None);
@@ -2193,6 +2194,10 @@ fn test_linux(target: &str) {
2193
2194
// https://github.com/gnzlbg/ctest/issues/68
2195
"lio_listio" if musl => true,
2196
2197
+ // FIXME: the glibc version used by the Sparc64 build jobs
2198
+ // which use Debian 10.0 is too old.
2199
+ "statx" if sparc64 => true,
2200
+
2201
_ => false,
2202
}
2203
});
0 commit comments