From 3f764eb6dc371cc48cfdf231cbd40e64b1f2a671 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Fri, 21 Aug 2020 06:57:09 +0000 Subject: [PATCH 15/39] libffi: use __linux__ instead of __gnu_linux__ for musl --- libffi/src/closures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libffi/src/closures.c b/libffi/src/closures.c index 721ff00ea43..22a699c6340 100644 --- a/libffi/src/closures.c +++ b/libffi/src/closures.c @@ -34,7 +34,7 @@ #include #if !FFI_MMAP_EXEC_WRIT && !FFI_EXEC_TRAMPOLINE_TABLE -# if __gnu_linux__ && !defined(__ANDROID__) +# if __linux__ && !defined(__ANDROID__) /* This macro indicates it may be forbidden to map anonymous memory with both write and execute permission. Code compiled when this option is defined will attempt to map such pages once, but if it -- 2.28.0