Commit 408847dc authored by YunQiang Su's avatar YunQiang Su Committed by The Qt Project
Browse files

Fix JavaScriptCore ftbfs on mips64(el)


Task-number: QTBUG-33187
Change-Id: Iaebca6f5095e16c0316549c8a548cfc0a447faf3
Reviewed-by: default avatarThiago Macieira <thiago.macieira@intel.com>
Showing with 21 additions and 1 deletion
...@@ -325,7 +325,27 @@ ...@@ -325,7 +325,27 @@
#endif /* ARM */ #endif /* ARM */
#if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_))
#define WTF_CPU_MIPS 1
#include <sgidefs.h>
#if defined(__MIPSEB__)
#define WTF_CPU_BIG_ENDIAN 1
#endif
/* CPU(MIPS64) - MIPS 64-bit both BIG and LITTLE endian */
#if defined(_MIPS_SIM_ABI64) && (_MIPS_SIM == _MIPS_SIM_ABI64)
#define WTF_CPU_MIPS64 1
#endif
/* CPU(MIPSN32) - MIPS N32 ABI both BIG and LITTLE endian */
#if defined(_MIPS_SIM_ABIN32) && (_MIPS_SIM == _MIPS_SIM_ABIN32)
#define WTF_CPU_MIPSN32 1
#endif
/* CPU(MIPS32) - MIPS O32 ABI both BIG and LITTLE endian */
#if defined(_MIPS_SIM_ABI32) && (_MIPS_SIM == _MIPS_SIM_ABI32)
#define WTF_CPU_MIPS32 1
#endif
#endif /* __mips__ */
/* ==== OS() - underlying operating system; only to be used for mandated low-level services like /* ==== OS() - underlying operating system; only to be used for mandated low-level services like
virtual memory, not to choose a GUI toolkit ==== */ virtual memory, not to choose a GUI toolkit ==== */
...@@ -876,7 +896,7 @@ ...@@ -876,7 +896,7 @@
#endif #endif
#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64) #if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS) || OS(SOLARIS) || OS(HPUX))) || (CPU(IA64) && !CPU(IA64_32)) || CPU(ALPHA) || CPU(AIX64) || CPU(SPARC64) #if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS) || OS(SOLARIS) || OS(HPUX))) || (CPU(IA64) && !CPU(IA64_32)) || CPU(ALPHA) || CPU(AIX64) || CPU(SPARC64) || CPU(MIPS64)
#define WTF_USE_JSVALUE64 1 #define WTF_USE_JSVALUE64 1
#elif CPU(ARM) || CPU(PPC64) #elif CPU(ARM) || CPU(PPC64)
#define WTF_USE_JSVALUE32 1 #define WTF_USE_JSVALUE32 1
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment