Title: [219415] trunk/Source/WTF
Revision
219415
Author
ape...@igalia.com
Date
2017-07-12 11:42:29 -0700 (Wed, 12 Jul 2017)

Log Message

[WTF] Failure to build when the compiler specifically targets ARMv8-A / defines __ARM_ARCH_8A__
https://bugs.webkit.org/show_bug.cgi?id=174425

Reviewed by Michael Catanzaro.

* wtf/Platform.h: Also check for __ARCH_ARM_8A__ to detect ARMv8.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (219414 => 219415)


--- trunk/Source/WTF/ChangeLog	2017-07-12 18:38:09 UTC (rev 219414)
+++ trunk/Source/WTF/ChangeLog	2017-07-12 18:42:29 UTC (rev 219415)
@@ -1,3 +1,12 @@
+2017-07-12  Adrian Perez de Castro  <ape...@igalia.com>
+
+        [WTF] Failure to build when the compiler specifically targets ARMv8-A / defines __ARM_ARCH_8A__
+        https://bugs.webkit.org/show_bug.cgi?id=174425
+
+        Reviewed by Michael Catanzaro.
+
+        * wtf/Platform.h: Also check for __ARCH_ARM_8A__ to detect ARMv8.
+
 2017-07-12  Michael Saboff  <msab...@apple.com>
 
         Unreviewed build fix when both DATA_LOG_TO_FILE and DATA_LOG_FILENAME are defined.

Modified: trunk/Source/WTF/wtf/Platform.h (219414 => 219415)


--- trunk/Source/WTF/wtf/Platform.h	2017-07-12 18:38:09 UTC (rev 219414)
+++ trunk/Source/WTF/wtf/Platform.h	2017-07-12 18:42:29 UTC (rev 219415)
@@ -242,7 +242,8 @@
     || defined(__ARM_ARCH_7S__)
 #define WTF_ARM_ARCH_VERSION 7
 
-#elif defined(__ARM_ARCH_8__)
+#elif defined(__ARM_ARCH_8__) \
+    || defined(__ARM_ARCH_8A__)
 #define WTF_ARM_ARCH_VERSION 8
 
 /* MSVC sets _M_ARM */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to