Skip to content

Commit

Permalink
CI sparc64 glibc version does not have statx
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed May 29, 2019
1 parent c5b72e3 commit bf1ab2b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libc-test/build.rs
Expand Up @@ -1860,6 +1860,7 @@ fn test_linux(target: &str) {
let x32 = target.contains("x32");
let mips = target.contains("mips");
let mips32_musl = mips && !target.contains("64") && musl;
let sparc64 = target.contains("sparc64");

let mut cfg = ctest::TestGenerator::new();
cfg.define("_GNU_SOURCE", None);
Expand Down Expand Up @@ -2193,6 +2194,10 @@ fn test_linux(target: &str) {
// https://github.com/gnzlbg/ctest/issues/68
"lio_listio" if musl => true,

// FIXME: the glibc version used by the Sparc64 build jobs
// which use Debian 10.0 is too old.
"statx" if sparc64 => true,

_ => false,
}
});
Expand Down

0 comments on commit bf1ab2b

Please sign in to comment.