Title: [238489] trunk
Revision
238489
Author
[email protected]
Date
2018-11-26 00:54:15 -0800 (Mon, 26 Nov 2018)

Log Message

[GTK] [2.22.0] Fails to build in armel
https://bugs.webkit.org/show_bug.cgi?id=188862

Disable the JIT and enable C_LOOP on ARM CPUs without Thumb2
support.

Reviewed by Michael Catanzaro.

* Source/cmake/WebKitFeatures.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (238488 => 238489)


--- trunk/ChangeLog	2018-11-26 08:06:52 UTC (rev 238488)
+++ trunk/ChangeLog	2018-11-26 08:54:15 UTC (rev 238489)
@@ -1,3 +1,15 @@
+2018-11-26  Alberto Garcia  <[email protected]>
+
+        [GTK] [2.22.0] Fails to build in armel
+        https://bugs.webkit.org/show_bug.cgi?id=188862
+
+        Disable the JIT and enable C_LOOP on ARM CPUs without Thumb2
+        support.
+
+        Reviewed by Michael Catanzaro.
+
+        * Source/cmake/WebKitFeatures.cmake:
+
 2018-11-22  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Update OptionsGTK.cmake and NEWS for 2.23.1 release.

Modified: trunk/Source/cmake/WebKitFeatures.cmake (238488 => 238489)


--- trunk/Source/cmake/WebKitFeatures.cmake	2018-11-26 08:06:52 UTC (rev 238488)
+++ trunk/Source/cmake/WebKitFeatures.cmake	2018-11-26 08:54:15 UTC (rev 238489)
@@ -68,7 +68,7 @@
         set(USE_SYSTEM_MALLOC_DEFAULT OFF)
         set(ENABLE_C_LOOP_DEFAULT OFF)
         set(ENABLE_SAMPLING_PROFILER_DEFAULT ON)
-    elseif (WTF_CPU_ARM AND WTF_OS_LINUX)
+    elseif (WTF_CPU_ARM AND WTF_OS_LINUX AND ARM_THUMB2_DETECTED)
         set(ENABLE_JIT_DEFAULT ON)
         set(ENABLE_FTL_DEFAULT OFF)
         set(USE_SYSTEM_MALLOC_DEFAULT OFF)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to