* [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6
@ 2019-05-17 13:25 Fabrice Fontaine
2019-05-17 13:44 ` Adrian Perez de Castro
2019-05-18 19:28 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-05-17 13:25 UTC (permalink / raw)
To: buildroot
gcc requirement has been bumped from gcc 5 to gcc 6 since
https://trac.webkit.org/browser/webkit/trunk/CMakeLists.txt?rev=231152
Fixes:
- http://autobuild.buildroot.org/results/304956dda8e580cb39107e57a139cd1ae08ee655
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/wpewebkit/Config.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/wpewebkit/Config.in b/package/wpewebkit/Config.in
index 15db924829..39f64c4e54 100644
--- a/package/wpewebkit/Config.in
+++ b/package/wpewebkit/Config.in
@@ -28,12 +28,12 @@ config BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS_JIT
default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R2
default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R5
-comment "wpewebkit needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.8, host gcc >= 4.8"
+comment "wpewebkit needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 6, host gcc >= 4.8"
depends on BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS
depends on !BR2_BINFMT_FLAT
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \
|| !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
- || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_HOST_GCC_AT_LEAST_4_8
+ || !BR2_TOOLCHAIN_GCC_AT_LEAST_6 || !BR2_HOST_GCC_AT_LEAST_4_8
comment "wpewebkit needs an OpenGL ES w/ EGL-capable Wayland backend"
depends on BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS
@@ -47,7 +47,7 @@ config BR2_PACKAGE_WPEWEBKIT
depends on !BR2_BINFMT_FLAT # icu
depends on BR2_INSTALL_LIBSTDCPP # harfbuzz, icu
depends on BR2_TOOLCHAIN_HAS_THREADS # wayland, icu, libsoup
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # icu
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6
depends on BR2_HOST_GCC_AT_LEAST_4_8 # icu
depends on BR2_USE_WCHAR # icu, libsoup
depends on BR2_PACKAGE_HAS_LIBGLES # libepoxy
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6
2019-05-17 13:25 [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6 Fabrice Fontaine
@ 2019-05-17 13:44 ` Adrian Perez de Castro
2019-05-18 19:28 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Adrian Perez de Castro @ 2019-05-17 13:44 UTC (permalink / raw)
To: buildroot
Hi,
On Fri, 17 May 2019 15:25:28 +0200, Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> gcc requirement has been bumped from gcc 5 to gcc 6 since
> https://trac.webkit.org/browser/webkit/trunk/CMakeLists.txt?rev=231152
>
> Fixes:
> - http://autobuild.buildroot.org/results/304956dda8e580cb39107e57a139cd1ae08ee655
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
> ---
> package/wpewebkit/Config.in | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/package/wpewebkit/Config.in b/package/wpewebkit/Config.in
> index 15db924829..39f64c4e54 100644
> --- a/package/wpewebkit/Config.in
> +++ b/package/wpewebkit/Config.in
> @@ -28,12 +28,12 @@ config BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS_JIT
> default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R2
> default y if BR2_mipsel && BR2_MIPS_CPU_MIPS32R5
>
> -comment "wpewebkit needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.8, host gcc >= 4.8"
> +comment "wpewebkit needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 6, host gcc >= 4.8"
> depends on BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS
> depends on !BR2_BINFMT_FLAT
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \
> || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
> - || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_HOST_GCC_AT_LEAST_4_8
> + || !BR2_TOOLCHAIN_GCC_AT_LEAST_6 || !BR2_HOST_GCC_AT_LEAST_4_8
Good catch, somehow we missed this when the package was first added in
upstream Buildroot ? probably because I used as basis for it the files
we had in a BR2_EXTERNAL for 2.20.x. O:-)
> comment "wpewebkit needs an OpenGL ES w/ EGL-capable Wayland backend"
> depends on BR2_PACKAGE_WPEWEBKIT_ARCH_SUPPORTS
> @@ -47,7 +47,7 @@ config BR2_PACKAGE_WPEWEBKIT
> depends on !BR2_BINFMT_FLAT # icu
> depends on BR2_INSTALL_LIBSTDCPP # harfbuzz, icu
> depends on BR2_TOOLCHAIN_HAS_THREADS # wayland, icu, libsoup
> - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # icu
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6
> depends on BR2_HOST_GCC_AT_LEAST_4_8 # icu
> depends on BR2_USE_WCHAR # icu, libsoup
> depends on BR2_PACKAGE_HAS_LIBGLES # libepoxy
> --
> 2.20.1
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190517/c757c9e1/attachment.asc>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6
2019-05-17 13:25 [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6 Fabrice Fontaine
2019-05-17 13:44 ` Adrian Perez de Castro
@ 2019-05-18 19:28 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-05-18 19:28 UTC (permalink / raw)
To: buildroot
On Fri, 17 May 2019 15:25:28 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> gcc requirement has been bumped from gcc 5 to gcc 6 since
> https://trac.webkit.org/browser/webkit/trunk/CMakeLists.txt?rev=231152
>
> Fixes:
> - http://autobuild.buildroot.org/results/304956dda8e580cb39107e57a139cd1ae08ee655
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/wpewebkit/Config.in | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-05-18 19:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-17 13:25 [Buildroot] [PATCH 1/1] package/wpewebkit: needs gcc >= 6 Fabrice Fontaine
2019-05-17 13:44 ` Adrian Perez de Castro
2019-05-18 19:28 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox