Title: [215180] trunk/Source/WTF
Revision
215180
Author
be...@igalia.com
Date
2017-04-10 05:55:07 -0700 (Mon, 10 Apr 2017)

Log Message

[GTK] Fix x32 build
https://bugs.webkit.org/show_bug.cgi?id=170673

Patch by Thorsten Glaser <t...@mirbsd.de> on 2017-04-10
Reviewed by Carlos Alberto Lopez Perez.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (215179 => 215180)


--- trunk/Source/WTF/ChangeLog	2017-04-10 11:48:22 UTC (rev 215179)
+++ trunk/Source/WTF/ChangeLog	2017-04-10 12:55:07 UTC (rev 215180)
@@ -1,3 +1,12 @@
+2017-04-10  Thorsten Glaser  <t...@mirbsd.de>
+
+        [GTK] Fix x32 build
+        https://bugs.webkit.org/show_bug.cgi?id=170673
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        * wtf/Platform.h:
+
 2017-04-09  Yusuke Suzuki  <utatane....@gmail.com>
 
         [WTF] Annotate Seconds' member functions and operators with constexpr

Modified: trunk/Source/WTF/wtf/Platform.h (215179 => 215180)


--- trunk/Source/WTF/wtf/Platform.h	2017-04-10 11:48:22 UTC (rev 215179)
+++ trunk/Source/WTF/wtf/Platform.h	2017-04-10 12:55:07 UTC (rev 215180)
@@ -673,7 +673,7 @@
 #endif
 
 #if !defined(USE_JSVALUE64) && !defined(USE_JSVALUE32_64)
-#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) \
+#if (CPU(X86_64) && !defined(__ILP32__) && (OS(UNIX) || OS(WINDOWS))) \
     || (CPU(IA64) && !CPU(IA64_32)) \
     || CPU(ALPHA) \
     || CPU(ARM64) \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to