diff options
author | Simon Frankenberger <simon@fraho.eu> | 2019-02-11 23:48:21 +0100 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2019-10-24 22:57:49 +0200 |
commit | 40247420d123ab342128ea409d5a949fe072eafe (patch) | |
tree | 3a19d4b1965e15c514b77a32b371b48c92dc8dc6 /testing/openjfx11/webkit-debug-level.patch | |
parent | 4e4d49d380a193970dee1295bea2cd886d0c6d34 (diff) | |
download | aports-40247420d123ab342128ea409d5a949fe072eafe.tar.bz2 aports-40247420d123ab342128ea409d5a949fe072eafe.tar.xz |
testing/openjfx11: New aport
Diffstat (limited to 'testing/openjfx11/webkit-debug-level.patch')
-rw-r--r-- | testing/openjfx11/webkit-debug-level.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/openjfx11/webkit-debug-level.patch b/testing/openjfx11/webkit-debug-level.patch new file mode 100644 index 0000000000..08d12692a6 --- /dev/null +++ b/testing/openjfx11/webkit-debug-level.patch @@ -0,0 +1,16 @@ +Description: Use the -g1 debugging level instead of -g when compiling WebKit + to reduce the memory used and avoid build failures caused by lack of RAM. +Author: Emmanuel Bourg <ebourg@apache.org> +Forwarded: not-needed +Taken from: https://sources.debian.org/patches/openjfx/11.0.2+1-1/25-webkit-debug-level.patch +--- a/modules/javafx.web/src/main/native/Source/cmake/WebKitCompilerFlags.cmake ++++ b/modules/javafx.web/src/main/native/Source/cmake/WebKitCompilerFlags.cmake +@@ -89,6 +89,7 @@ + + if (COMPILER_IS_GCC_OR_CLANG) + WEBKIT_APPEND_GLOBAL_COMPILER_FLAGS(-fno-strict-aliasing) ++ WEBKIT_APPEND_GLOBAL_COMPILER_FLAGS(-g1) + + # clang-cl.exe impersonates cl.exe so some clang arguments like -fno-rtti are + # represented using cl.exe's options and should not be passed as flags, so + |