Title: [229155] trunk
Revision
229155
Author
[email protected]
Date
2018-03-01 17:01:26 -0800 (Thu, 01 Mar 2018)

Log Message

[CMake] configure failure for aarch64
https://bugs.webkit.org/show_bug.cgi?id=183268

Unreviewed build fix. This failure is caused by a simple typo.

* Source/cmake/OptionsCommon.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (229154 => 229155)


--- trunk/ChangeLog	2018-03-02 00:31:25 UTC (rev 229154)
+++ trunk/ChangeLog	2018-03-02 01:01:26 UTC (rev 229155)
@@ -1,3 +1,12 @@
+2018-03-01  Michael Catanzaro  <[email protected]>
+
+        [CMake] configure failure for aarch64
+        https://bugs.webkit.org/show_bug.cgi?id=183268
+
+        Unreviewed build fix. This failure is caused by a simple typo.
+
+        * Source/cmake/OptionsCommon.cmake:
+
 2018-02-26  Yousuke Kimoto  <[email protected]>
 
         [WinCairo] WebKit2_C.h should be included for TestWebKit

Modified: trunk/Source/cmake/OptionsCommon.cmake (229154 => 229155)


--- trunk/Source/cmake/OptionsCommon.cmake	2018-03-02 00:31:25 UTC (rev 229154)
+++ trunk/Source/cmake/OptionsCommon.cmake	2018-03-02 01:01:26 UTC (rev 229155)
@@ -36,7 +36,7 @@
     if (NOT WTF_CPU_ARM64)
         message(FATAL_ERROR "WTF_CPU_ARM64_CORTEXA53 set without WTF_CPU_ARM64")
     endif ()
-    WEBKIT_PREPEND_GLOBAL_COMPILER_FLAG(-mfix-cortex-a53-835769)
+    WEBKIT_PREPEND_GLOBAL_COMPILER_FLAGS(-mfix-cortex-a53-835769)
 endif ()
 
 EXPOSE_VARIABLE_TO_BUILD(WTF_CPU_ARM64_CORTEXA53)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to