summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-10-02 21:50:02 -0700
committerKhem Raj <raj.khem@gmail.com>2024-11-19 13:13:26 -0800
commit61ba32cee6a0fe3ad25eef62c973607ac561ab19 (patch)
treeb4a877e78a2c207c4f302d06283b73c419380112
parentc68342eca392d527b98f97ac424d51bf34ce0846 (diff)
downloadmeta-openembedded-61ba32cee6a0fe3ad25eef62c973607ac561ab19.tar.gz
webkitgtk3: Always use -g1 for debug flags
Ensures that debugging symbols do not explode modeled on oe-core commit [1] [1] https://git.openembedded.org/openembedded-core/commit/?id=9badf68d78d995f7d5d4cf27e045f029fc6d4044 Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit c5fb1e0d3d63096f69d818b00b373639e1d0462a) Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-support/webkitgtk/webkitgtk3_2.44.3.bb5
1 files changed, 2 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.44.3.bb b/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.44.3.bb
index 9493d86422..0dadf570e2 100644
--- a/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.44.3.bb
+++ b/meta-oe/recipes-support/webkitgtk/webkitgtk3_2.44.3.bb
@@ -93,9 +93,8 @@ EXTRA_OECMAKE = " \
93 -DENABLE_MINIBROWSER=ON \ 93 -DENABLE_MINIBROWSER=ON \
94 -DCMAKE_EXPORT_COMPILE_COMMANDS=OFF \ 94 -DCMAKE_EXPORT_COMPILE_COMMANDS=OFF \
95 " 95 "
96# Unless DEBUG_BUILD is enabled, pass -g1 to massively reduce the size of the 96# pass -g1 to massively reduce the size of the debug symbols (4.3GB to 700M at time of writing)
97# debug symbols (4.3GB to 700M at time of writing) 97DEBUG_LEVELFLAG = "-g1"
98DEBUG_FLAGS:append = "${@oe.utils.vartrue('DEBUG_BUILD', '', ' -g1', d)}"
99 98
100# Javascript JIT is not supported on ARC 99# Javascript JIT is not supported on ARC
101EXTRA_OECMAKE:append:arc = " -DENABLE_JIT=OFF " 100EXTRA_OECMAKE:append:arc = " -DENABLE_JIT=OFF "