From 5a7b4e7796859396d77afb348de3d68a3ecb1b52 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Mon, 21 Jan 2019 20:34:17 +0100 Subject: [PATCH] MFD_HUGETLB does not appear to be available on x86_64-android --- libc-test/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc-test/build.rs b/libc-test/build.rs index 7606800a..5edbdf5b 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -658,7 +658,7 @@ fn main() { // MFD_HUGETLB is not available in some older libc versions on the CI builders. On the // x86_64 and i686 builders it seems to be available for all targets, so at least test // it there. - "MFD_HUGETLB" if !(x86_64 || i686) || musl => true, + "MFD_HUGETLB" if !(x86_64 || i686) || musl || (x86_64 && android)=> true, "DT_FIFO" | "DT_CHR" | "DT_DIR" | "DT_BLK" | "DT_REG" | "DT_LNK" | "DT_SOCK"