diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-04-07 19:00:23 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-13 22:23:49 +0100 |
| commit | dc849aa9ebab3117f60d5f1728cdb9a325528e8a (patch) | |
| tree | 4d49e4592d9c0ddfd65aa73da55b80265bae4835 | |
| parent | 50f5ca8ccf37dbb889a821b21120a35ef893d804 (diff) | |
| download | poky-dc849aa9ebab3117f60d5f1728cdb9a325528e8a.tar.gz | |
webkitgtk: update 2.34.6 -> 2.36.0
Drop patches:
0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch
0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch
(both merged upstream)
reduce-memory-overheads.patch
(rejected by upstream, there's no use case - see the discussion)
Rebase to version submitted upstream:
0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch
Add:
0001-When-building-introspection-files-do-not-quote-CFLAG.patch
angle is no longer needed for x11-less setups.
(From OE-Core rev: 05582e9e6583126879977b0bbb88b691d625056b)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch | 38 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch | 46 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch | 52 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-do-not-quote-CFLAG.patch | 78 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/reduce-memory-overheads.patch | 28 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.36.0.bb (renamed from meta/recipes-sato/webkit/webkitgtk_2.34.6.bb) | 9 |
6 files changed, 105 insertions, 146 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch b/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch index 54d34b1c69..bccf74d9c9 100644 --- a/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch +++ b/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 317a5ac120c44987219bc03486cd2f2d1842c9b9 Mon Sep 17 00:00:00 2001 | 1 | From e0bf97eecfa601e08b9578f00b1000890284241a Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Tue, 27 Oct 2015 16:02:19 +0200 | 3 | Date: Tue, 27 Oct 2015 16:02:19 +0200 |
| 4 | Subject: [PATCH] FindGObjectIntrospection.cmake: prefix variables obtained | 4 | Subject: [PATCH] FindGObjectIntrospection.cmake: prefix variables obtained |
| @@ -6,22 +6,30 @@ Subject: [PATCH] FindGObjectIntrospection.cmake: prefix variables obtained | |||
| 6 | 6 | ||
| 7 | Upstream-Status: Submitted [https://bugs.webkit.org/show_bug.cgi?id=232933] | 7 | Upstream-Status: Submitted [https://bugs.webkit.org/show_bug.cgi?id=232933] |
| 8 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | 8 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 9 | |||
| 9 | --- | 10 | --- |
| 10 | Source/cmake/FindGObjectIntrospection.cmake | 1 + | 11 | Source/cmake/FindGObjectIntrospection.cmake | 4 +++- |
| 11 | 1 file changed, 1 insertion(+) | 12 | 1 file changed, 3 insertions(+), 1 deletion(-) |
| 12 | 13 | ||
| 13 | diff --git a/Source/cmake/FindGObjectIntrospection.cmake b/Source/cmake/FindGObjectIntrospection.cmake | 14 | diff --git a/Source/cmake/FindGObjectIntrospection.cmake b/Source/cmake/FindGObjectIntrospection.cmake |
| 14 | index e1f49b4..03a4446 100644 | 15 | index be96814a..ae67b593 100644 |
| 15 | --- a/Source/cmake/FindGObjectIntrospection.cmake | 16 | --- a/Source/cmake/FindGObjectIntrospection.cmake |
| 16 | +++ b/Source/cmake/FindGObjectIntrospection.cmake | 17 | +++ b/Source/cmake/FindGObjectIntrospection.cmake |
| 17 | @@ -26,6 +26,7 @@ macro(_GIR_GET_PKGCONFIG_VAR _outvar _varname _extra_args) | 18 | @@ -16,7 +16,6 @@ |
| 18 | else () | 19 | # Redistribution and use is allowed according to the terms of the BSD license. |
| 19 | string(REGEX REPLACE "[\r\n]" " " _result "${_result}") | 20 | |
| 20 | string(REGEX REPLACE " +$" "" _result "${_result}") | 21 | |
| 21 | + string(CONCAT _result $ENV{PKG_CONFIG_SYSROOT_DIR} "${_result}") | 22 | - |
| 22 | separate_arguments(_result) | 23 | find_package(PkgConfig QUIET) |
| 23 | set(${_outvar} ${_result} CACHE INTERNAL "") | 24 | if (PKG_CONFIG_FOUND) |
| 24 | endif () | 25 | if (PACKAGE_FIND_VERSION_COUNT GREATER 0) |
| 25 | -- | 26 | @@ -30,6 +29,9 @@ if (PKG_CONFIG_FOUND) |
| 26 | 2.1.4 | 27 | pkg_get_variable(INTROSPECTION_GENERATE gobject-introspection-1.0 g_ir_generate) |
| 27 | 28 | pkg_get_variable(INTROSPECTION_GIRDIR gobject-introspection-1.0 girdir) | |
| 29 | pkg_get_variable(INTROSPECTION_TYPELIBDIR gobject-introspection-1.0 typelibdir) | ||
| 30 | + set(INTROSPECTION_SCANNER "$ENV{PKG_CONFIG_SYSROOT_DIR}${INTROSPECTION_SCANNER}") | ||
| 31 | + set(INTROSPECTION_COMPILER "$ENV{PKG_CONFIG_SYSROOT_DIR}${INTROSPECTION_COMPILER}") | ||
| 32 | + set(INTROSPECTION_GENERATE "$ENV{PKG_CONFIG_SYSROOT_DIR}${INTROSPECTION_GENERATE}") | ||
| 33 | set(INTROSPECTION_VERSION "${_pc_gir_VERSION}") | ||
| 34 | if (${INTROSPECTION_VERSION} VERSION_GREATER_EQUAL "1.59.1") | ||
| 35 | set(INTROSPECTION_HAVE_SOURCES_TOP_DIRS YES) | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch b/meta/recipes-sato/webkit/webkitgtk/0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch deleted file mode 100644 index e06607ba2b..0000000000 --- a/meta/recipes-sato/webkit/webkitgtk/0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | From 4718888071e29deb8b245b88c81577fd5bac4e5e Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 3 | Date: Mon, 29 Aug 2016 16:38:11 +0300 | ||
| 4 | Subject: [PATCH] Fix racy parallel build of WebKit2-4.0.gir | ||
| 5 | |||
| 6 | Upstream-Status: Submitted [https://bugs.webkit.org/show_bug.cgi?id=232935] | ||
| 7 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 8 | |||
| 9 | --- | ||
| 10 | Source/WebKit/PlatformGTK.cmake | 9 +++++---- | ||
| 11 | 1 file changed, 5 insertions(+), 4 deletions(-) | ||
| 12 | |||
| 13 | diff --git a/Source/WebKit/PlatformGTK.cmake b/Source/WebKit/PlatformGTK.cmake | ||
| 14 | index a069c5f6..ea2f542b 100644 | ||
| 15 | --- a/Source/WebKit/PlatformGTK.cmake | ||
| 16 | +++ b/Source/WebKit/PlatformGTK.cmake | ||
| 17 | @@ -650,8 +650,9 @@ if (ENABLE_INTROSPECTION) | ||
| 18 | set(GIR_SOURCES_TOP_DIRS "--sources-top-dirs=${CMAKE_BINARY_DIR}") | ||
| 19 | endif () | ||
| 20 | |||
| 21 | - add_custom_command( | ||
| 22 | - OUTPUT ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir | ||
| 23 | + # This is a target and not a command because it's used to build another .gir | ||
| 24 | + # and a .typelib, which would trigger two racy parallel builds when using command | ||
| 25 | + add_custom_target(WebKit2-${WEBKITGTK_API_VERSION}-gir | ||
| 26 | DEPENDS WebKit | ||
| 27 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 28 | COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} LDFLAGS= | ||
| 29 | @@ -699,7 +700,7 @@ if (ENABLE_INTROSPECTION) | ||
| 30 | add_custom_command( | ||
| 31 | OUTPUT ${CMAKE_BINARY_DIR}/WebKit2WebExtension-${WEBKITGTK_API_VERSION}.gir | ||
| 32 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 33 | - DEPENDS ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir | ||
| 34 | + DEPENDS WebKit2-${WEBKITGTK_API_VERSION}-gir | ||
| 35 | COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} | ||
| 36 | LDFLAGS="${INTROSPECTION_ADDITIONAL_LDFLAGS}" | ||
| 37 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 38 | @@ -761,7 +762,7 @@ if (ENABLE_INTROSPECTION) | ||
| 39 | |||
| 40 | add_custom_command( | ||
| 41 | OUTPUT ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.typelib | ||
| 42 | - DEPENDS ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir | ||
| 43 | + DEPENDS WebKit2-${WEBKITGTK_API_VERSION}-gir | ||
| 44 | COMMAND ${INTROSPECTION_COMPILER} --includedir=${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir -o ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.typelib | ||
| 45 | ) | ||
| 46 | |||
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch b/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch deleted file mode 100644 index 9e2bf09dd7..0000000000 --- a/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch +++ /dev/null | |||
| @@ -1,52 +0,0 @@ | |||
| 1 | From 8f1e170a6de8036ab50eb35834a77f2c79412ee3 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 3 | Date: Wed, 28 Oct 2015 14:18:57 +0200 | ||
| 4 | Subject: [PATCH] When building introspection files, add CMAKE_C_FLAGS to the | ||
| 5 | compiler flags. | ||
| 6 | |||
| 7 | g-ir-compiler is using a C compiler internally, so it needs to set | ||
| 8 | the proper flags for it. | ||
| 9 | |||
| 10 | Upstream-Status: Submitted [https://bugs.webkit.org/show_bug.cgi?id=232936] | ||
| 11 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 12 | |||
| 13 | --- | ||
| 14 | Source/JavaScriptCore/PlatformGTK.cmake | 2 +- | ||
| 15 | Source/WebKit/PlatformGTK.cmake | 4 ++-- | ||
| 16 | 2 files changed, 3 insertions(+), 3 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/Source/JavaScriptCore/PlatformGTK.cmake b/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 19 | index 0b2968d2..2742ad80 100644 | ||
| 20 | --- a/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 21 | +++ b/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 22 | @@ -71,7 +71,7 @@ if (ENABLE_INTROSPECTION) | ||
| 23 | add_custom_command( | ||
| 24 | OUTPUT ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 25 | DEPENDS JavaScriptCore | ||
| 26 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations LDFLAGS= | ||
| 27 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} LDFLAGS= | ||
| 28 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 29 | ${INTROSPECTION_SCANNER} | ||
| 30 | --quiet | ||
| 31 | diff --git a/Source/WebKit/PlatformGTK.cmake b/Source/WebKit/PlatformGTK.cmake | ||
| 32 | index e36e4c35..943f9794 100644 | ||
| 33 | --- a/Source/WebKit/PlatformGTK.cmake | ||
| 34 | +++ b/Source/WebKit/PlatformGTK.cmake | ||
| 35 | @@ -742,7 +742,7 @@ if (ENABLE_INTROSPECTION) | ||
| 36 | OUTPUT ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir | ||
| 37 | DEPENDS WebKit | ||
| 38 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 39 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations LDFLAGS= | ||
| 40 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} LDFLAGS= | ||
| 41 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 42 | ${INTROSPECTION_SCANNER} | ||
| 43 | --quiet | ||
| 44 | @@ -786,7 +786,7 @@ if (ENABLE_INTROSPECTION) | ||
| 45 | OUTPUT ${CMAKE_BINARY_DIR}/WebKit2WebExtension-${WEBKITGTK_API_VERSION}.gir | ||
| 46 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 47 | DEPENDS ${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir | ||
| 48 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations | ||
| 49 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} | ||
| 50 | LDFLAGS="${INTROSPECTION_ADDITIONAL_LDFLAGS}" | ||
| 51 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 52 | ${INTROSPECTION_SCANNER} | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-do-not-quote-CFLAG.patch b/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-do-not-quote-CFLAG.patch new file mode 100644 index 0000000000..3d02be9894 --- /dev/null +++ b/meta/recipes-sato/webkit/webkitgtk/0001-When-building-introspection-files-do-not-quote-CFLAG.patch | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | From 01f5ab0edf3dd8f76d37fd36c2dcd3108be33a7b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex@linutronix.de> | ||
| 3 | Date: Mon, 4 Apr 2022 21:20:05 +0200 | ||
| 4 | Subject: [PATCH] When building introspection files, do not quote CFLAGS. | ||
| 5 | |||
| 6 | This does not seem to be propagated to the compiler correctly: | ||
| 7 | |||
| 8 | In file included from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/x86_64-poky-linux/gcc/x86_64-poky-linux/11.2.0/include-fixed/syslimits.h:7, | ||
| 9 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/x86_64-poky-linux/gcc/x86_64-poky-linux/11.2.0/include-fixed/limits.h:34, | ||
| 10 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/lib/glib-2.0/include/glibconfig.h:11, | ||
| 11 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib/gtypes.h:32, | ||
| 12 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib/galloca.h:32, | ||
| 13 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib.h:30, | ||
| 14 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/build/Source/JavaScriptCore/tmp-introspectb51ks33n/JavaScriptCore-4.0.c:2: | ||
| 15 | /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/x86_64-poky-linux/gcc/x86_64-poky-linux/11.2.0/include-fixed/limits.h:203:75: error: no include path in which to search for limits.h | ||
| 16 | 203 | #include_next <limits.h> /* recurse down to the real one */ | ||
| 17 | | ^ | ||
| 18 | In file included from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib/galloca.h:32, | ||
| 19 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib.h:30, | ||
| 20 | from /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/build/Source/JavaScriptCore/tmp-introspectb51ks33n/JavaScriptCore-4.0.c:2: | ||
| 21 | /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-2.0/glib/gtypes.h:35:10: fatal error: time.h: No such file or directory | ||
| 22 | 35 | #include <time.h> | ||
| 23 | | ^~~~~~~~ | ||
| 24 | compilation terminated. | ||
| 25 | Traceback (most recent call last): | ||
| 26 | File "/srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/python3.10/distutils/unixccompiler.py", line 117, in _compile | ||
| 27 | self.spawn(compiler_so + cc_args + [src, '-o', obj] + | ||
| 28 | File "/srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/python3.10/distutils/ccompiler.py", line 910, in spawn | ||
| 29 | spawn(cmd, dry_run=self.dry_run) | ||
| 30 | File "/srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/python3.10/distutils/spawn.py", line 91, in spawn | ||
| 31 | raise DistutilsExecError( | ||
| 32 | distutils.errors.DistutilsExecError: command '/srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-gcc' failed with exit code 1 | ||
| 33 | |||
| 34 | Upstream-Status: Inappropriate [upstream has rewritten the whole thing as of https://github.com/WebKit/WebKit/commit/b0ae032850bb6b2672051bab8032fc9f9ef5eb97] | ||
| 35 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
| 36 | --- | ||
| 37 | Source/JavaScriptCore/PlatformGTK.cmake | 2 +- | ||
| 38 | Source/WebKit/PlatformGTK.cmake | 4 ++-- | ||
| 39 | 2 files changed, 3 insertions(+), 3 deletions(-) | ||
| 40 | |||
| 41 | diff --git a/Source/JavaScriptCore/PlatformGTK.cmake b/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 42 | index 1c3c8fb7..efd18807 100644 | ||
| 43 | --- a/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 44 | +++ b/Source/JavaScriptCore/PlatformGTK.cmake | ||
| 45 | @@ -71,7 +71,7 @@ if (ENABLE_INTROSPECTION) | ||
| 46 | add_custom_command( | ||
| 47 | OUTPUT ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 48 | DEPENDS JavaScriptCore | ||
| 49 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS="-Wno-deprecated-declarations ${CMAKE_C_FLAGS}" LDFLAGS= | ||
| 50 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} LDFLAGS= | ||
| 51 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 52 | ${INTROSPECTION_SCANNER} | ||
| 53 | --quiet | ||
| 54 | diff --git a/Source/WebKit/PlatformGTK.cmake b/Source/WebKit/PlatformGTK.cmake | ||
| 55 | index 48d1820d..ded05035 100644 | ||
| 56 | --- a/Source/WebKit/PlatformGTK.cmake | ||
| 57 | +++ b/Source/WebKit/PlatformGTK.cmake | ||
| 58 | @@ -675,7 +675,7 @@ if (ENABLE_INTROSPECTION) | ||
| 59 | add_custom_target(WebKit2-${WEBKITGTK_API_VERSION}-gir | ||
| 60 | DEPENDS WebKit | ||
| 61 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 62 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS="-Wno-deprecated-declarations ${CMAKE_C_FLAGS}" LDFLAGS= | ||
| 63 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} LDFLAGS= | ||
| 64 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 65 | ${INTROSPECTION_SCANNER} | ||
| 66 | --quiet | ||
| 67 | @@ -721,7 +721,7 @@ if (ENABLE_INTROSPECTION) | ||
| 68 | OUTPUT ${CMAKE_BINARY_DIR}/WebKit2WebExtension-${WEBKITGTK_API_VERSION}.gir | ||
| 69 | DEPENDS ${CMAKE_BINARY_DIR}/JavaScriptCore-${WEBKITGTK_API_VERSION}.gir | ||
| 70 | DEPENDS WebKit2-${WEBKITGTK_API_VERSION}-gir | ||
| 71 | - COMMAND CC=${CMAKE_C_COMPILER} CFLAGS="-Wno-deprecated-declarations ${CMAKE_C_FLAGS}" | ||
| 72 | + COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=-Wno-deprecated-declarations\ ${CMAKE_C_FLAGS} | ||
| 73 | LDFLAGS="${INTROSPECTION_ADDITIONAL_LDFLAGS}" | ||
| 74 | ${LOADER_LIBRARY_PATH_VAR}="${INTROSPECTION_ADDITIONAL_LIBRARY_PATH}" | ||
| 75 | ${INTROSPECTION_SCANNER} | ||
| 76 | -- | ||
| 77 | 2.30.2 | ||
| 78 | |||
diff --git a/meta/recipes-sato/webkit/webkitgtk/reduce-memory-overheads.patch b/meta/recipes-sato/webkit/webkitgtk/reduce-memory-overheads.patch deleted file mode 100644 index 907d36c4cd..0000000000 --- a/meta/recipes-sato/webkit/webkitgtk/reduce-memory-overheads.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | From ec6045fcf5a46123b54029a675d08d89a5e30f21 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alberto Garcia <berto@igalia.com> | ||
| 3 | Date: Sun, 25 Apr 2021 18:45:13 +0000 | ||
| 4 | Subject: [PATCH] Reduce memory usage when not using the Gold linker | ||
| 5 | |||
| 6 | Upstream-Status: Submitted [https://bugs.webkit.org/show_bug.cgi?id=232938] | ||
| 7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 8 | |||
| 9 | --- | ||
| 10 | Source/cmake/OptionsCommon.cmake | 5 +++++ | ||
| 11 | 1 file changed, 5 insertions(+) | ||
| 12 | |||
| 13 | diff --git a/Source/cmake/OptionsCommon.cmake b/Source/cmake/OptionsCommon.cmake | ||
| 14 | index dd4da682..71ad6106 100644 | ||
| 15 | --- a/Source/cmake/OptionsCommon.cmake | ||
| 16 | +++ b/Source/cmake/OptionsCommon.cmake | ||
| 17 | @@ -101,6 +101,11 @@ option(GCC_OFFLINEASM_SOURCE_MAP | ||
| 18 | ${GCC_OFFLINEASM_SOURCE_MAP_DEFAULT}) | ||
| 19 | |||
| 20 | option(USE_APPLE_ICU "Use Apple's internal ICU" ${APPLE}) | ||
| 21 | +# Pass --reduce-memory-overheads to the bfd linker in order to save memory | ||
| 22 | +if (NOT USE_LD_GOLD) | ||
| 23 | + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--reduce-memory-overheads") | ||
| 24 | + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--reduce-memory-overheads") | ||
| 25 | +endif () | ||
| 26 | |||
| 27 | # Enable the usage of OpenMP. | ||
| 28 | # - At this moment, OpenMP is only used as an alternative implementation | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.34.6.bb b/meta/recipes-sato/webkit/webkitgtk_2.36.0.bb index 6870eed525..09d4493370 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.34.6.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.36.0.bb | |||
| @@ -11,15 +11,13 @@ LIC_FILES_CHKSUM = "file://Source/JavaScriptCore/COPYING.LIB;md5=d0c6d6397a5d842 | |||
| 11 | 11 | ||
| 12 | SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | 12 | SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ |
| 13 | file://0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch \ | 13 | file://0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch \ |
| 14 | file://0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch \ | ||
| 15 | file://0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch \ | ||
| 16 | file://0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch \ | 14 | file://0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch \ |
| 17 | file://reduce-memory-overheads.patch \ | ||
| 18 | file://0001-Fix-build-without-opengl-or-es.patch \ | 15 | file://0001-Fix-build-without-opengl-or-es.patch \ |
| 19 | file://reproducibility.patch \ | 16 | file://reproducibility.patch \ |
| 17 | file://0001-When-building-introspection-files-do-not-quote-CFLAG.patch \ | ||
| 20 | " | 18 | " |
| 21 | 19 | ||
| 22 | SRC_URI[sha256sum] = "6bc8fd034aad0432a2459ce4fc7ee25ad65a4924c618bf8d93b52b0c1a84c1f6" | 20 | SRC_URI[sha256sum] = "b877cca1f105235f5dd57c7ac2b2c2be3c6b691ff444f93925c7254cf156c64d" |
| 23 | 21 | ||
| 24 | inherit cmake pkgconfig gobject-introspection perlnative features_check upstream-version-is-even gtk-doc | 22 | inherit cmake pkgconfig gobject-introspection perlnative features_check upstream-version-is-even gtk-doc |
| 25 | 23 | ||
| @@ -47,7 +45,7 @@ DEPENDS = " \ | |||
| 47 | PACKAGECONFIG_SOUP ?= "soup2" | 45 | PACKAGECONFIG_SOUP ?= "soup2" |
| 48 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd wayland x11', d)} \ | 46 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd wayland x11', d)} \ |
| 49 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'webgl opengl', '', d)} \ | 47 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'webgl opengl', '', d)} \ |
| 50 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'webgl gles2 angle', d)} \ | 48 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'webgl gles2', d)} \ |
| 51 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl-or-es', '', d)} \ | 49 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl-or-es', '', d)} \ |
| 52 | enchant \ | 50 | enchant \ |
| 53 | libsecret \ | 51 | libsecret \ |
| @@ -72,6 +70,7 @@ PACKAGECONFIG[reduce-size] = "-DCMAKE_BUILD_TYPE=MinSizeRel,-DCMAKE_BUILD_TYPE=R | |||
| 72 | PACKAGECONFIG[lcms] = "-DUSE_LCMS=ON,-DUSE_LCMS=OFF,lcms" | 70 | PACKAGECONFIG[lcms] = "-DUSE_LCMS=ON,-DUSE_LCMS=OFF,lcms" |
| 73 | PACKAGECONFIG[soup2] = "-DUSE_SOUP2=ON,-DUSE_SOUP2=OFF,libsoup-2.4,,,soup3" | 71 | PACKAGECONFIG[soup2] = "-DUSE_SOUP2=ON,-DUSE_SOUP2=OFF,libsoup-2.4,,,soup3" |
| 74 | PACKAGECONFIG[soup3] = ",,libsoup,,,soup2" | 72 | PACKAGECONFIG[soup3] = ",,libsoup,,,soup2" |
| 73 | PACKAGECONFIG[journald] = "-DENABLE_JOURNALD_LOG=ON,-DENABLE_JOURNALD_LOG=OFF,systemd" | ||
| 75 | 74 | ||
| 76 | # webkitgtk is full of /usr/bin/env python, particular for generating docs | 75 | # webkitgtk is full of /usr/bin/env python, particular for generating docs |
| 77 | do_configure[postfuncs] += "setup_python_link" | 76 | do_configure[postfuncs] += "setup_python_link" |
