From 73d2004d3e8ed9c15d46fd4e69b5f3f7dbbe86c7 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 17 May 2024 10:21:53 -0700 Subject: [PATCH] Skip `SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV` on sparc64 --- libc-test/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index 2b15c958d2d51..2a48af6aff546 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -3909,6 +3909,9 @@ fn test_linux(target: &str) { | "SW_CNT" if ppc64 || riscv64 => true, + // FIXME: requires more recent kernel headers on CI + "SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV" if sparc64 => true, + // FIXME: Not currently available in headers on ARM and musl. "NETLINK_GET_STRICT_CHK" if arm || musl => true,