From 9f06841c9ff8e50c604fbd0f100e2e3ea4242309 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 23 Aug 2018 02:58:14 +0000 Subject: [PATCH] Include asm/sgidefs.h on non-glibc systems sgidefs.h wrapper is glibc specific and causes build failures on musl Fixes Platform.h:380:10: fatal error: sgidefs.h: No such file or directory #include ^~~~~~~~~~~ compilation terminated. Upstream-Status: Pending Signed-off-by: Khem Raj --- src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h index a4695a2..4b7a45b 100644 --- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h @@ -377,7 +377,11 @@ #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_)) #define WTF_CPU_MIPS 1 +#if defined(__GLIBC__) #include +#else +#include +#endif #if defined(__MIPSEB__) #define WTF_CPU_BIG_ENDIAN 1 #endif