File: 19-disable-webkit-sampling-profiler.patch

package info (click to toggle)
openjfx 11.0.11%2B1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280,840 kB
  • sloc: cpp: 1,772,535; java: 774,361; ansic: 576,770; xml: 78,166; perl: 21,231; javascript: 18,424; objc: 17,419; ruby: 14,155; asm: 9,653; python: 8,866; sh: 3,726; makefile: 2,983; yacc: 405
file content (21 lines) | stat: -rw-r--r-- 978 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Disables the sampling profiler in WebKit (fails to build on arm64)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/modules/javafx.web/src/main/native/Source/cmake/WebKitFeatures.cmake
+++ b/modules/javafx.web/src/main/native/Source/cmake/WebKitFeatures.cmake
@@ -96,13 +96,13 @@
         set(ENABLE_FTL_DEFAULT ON)
         set(USE_SYSTEM_MALLOC_DEFAULT OFF)
         set(ENABLE_C_LOOP_DEFAULT OFF)
-        set(ENABLE_SAMPLING_PROFILER_DEFAULT ON)
+        set(ENABLE_SAMPLING_PROFILER_DEFAULT OFF)
     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)
         set(ENABLE_C_LOOP_DEFAULT OFF)
-        set(ENABLE_SAMPLING_PROFILER_DEFAULT ON)
+        set(ENABLE_SAMPLING_PROFILER_DEFAULT OFF)
     elseif (WTF_CPU_MIPS AND WTF_OS_LINUX)
         set(ENABLE_JIT_DEFAULT ON)
         set(ENABLE_FTL_DEFAULT OFF)