Changeset 238489 in webkit


Ignore:
Timestamp:
Nov 26, 2018 12:54:15 AM (5 years ago)
Author:
berto@igalia.com
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:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r238442 r238489  
     12018-11-26  Alberto Garcia  <berto@igalia.com>
     2
     3        [GTK] [2.22.0] Fails to build in armel
     4        https://bugs.webkit.org/show_bug.cgi?id=188862
     5
     6        Disable the JIT and enable C_LOOP on ARM CPUs without Thumb2
     7        support.
     8
     9        Reviewed by Michael Catanzaro.
     10
     11        * Source/cmake/WebKitFeatures.cmake:
     12
    1132018-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/cmake/WebKitFeatures.cmake

    r238414 r238489  
    6969        set(ENABLE_C_LOOP_DEFAULT OFF)
    7070        set(ENABLE_SAMPLING_PROFILER_DEFAULT ON)
    71     elseif (WTF_CPU_ARM AND WTF_OS_LINUX)
     71    elseif (WTF_CPU_ARM AND WTF_OS_LINUX AND ARM_THUMB2_DETECTED)
    7272        set(ENABLE_JIT_DEFAULT ON)
    7373        set(ENABLE_FTL_DEFAULT OFF)
Note: See TracChangeset for help on using the changeset viewer.