* [Buildroot] [PATCH 1/1] package/gqrx: fix dependencies
@ 2022-12-10 21:09 Fabrice Fontaine
2022-12-10 21:13 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2022-12-10 21:09 UTC (permalink / raw)
To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine
Commit 34cea39024bf8dedaa071bc5f2d903755501215c forgot to update
gnuradio dependencies
Fixes:
- No autobuilder failures (yet)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/gqrx/Config.in | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in
index adcdbb0896..442b28e546 100644
--- a/package/gqrx/Config.in
+++ b/package/gqrx/Config.in
@@ -1,15 +1,16 @@
-comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
+comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 8"
depends on BR2_USE_MMU # gnuradio
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
- !BR2_USE_WCHAR || BR2_STATIC_LIBS
+ !BR2_USE_WCHAR || BR2_STATIC_LIBS || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_8
comment "gqrx needs qt5"
depends on !BR2_PACKAGE_QT5
-comment "gqrx needs a toolchain not affected by GCC bug 43744 and 64735"
- depends on BR2_TOOLCHAIN_HAS_GCC_BUG_43744 || BR2_TOOLCHAIN_HAS_GCC_BUG_64735
+comment "gqrx needs a toolchain not affected by GCC bug 43744"
+ depends on BR2_TOOLCHAIN_HAS_GCC_BUG_43744
config BR2_PACKAGE_GQRX
bool "gqrx"
@@ -21,8 +22,8 @@ config BR2_PACKAGE_GQRX
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
depends on BR2_PACKAGE_QT5
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # gnuradio -> boost-atomic
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # gnuradio
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_43744 # gnuradio
- depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # gnuradio
select BR2_PACKAGE_BOOST
select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
select BR2_PACKAGE_BOOST_SYSTEM
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/gqrx: fix dependencies
2022-12-10 21:09 [Buildroot] [PATCH 1/1] package/gqrx: fix dependencies Fabrice Fontaine
@ 2022-12-10 21:13 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2022-12-10 21:13 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Gwenhael Goavec-Merou, buildroot
Fabrice, All,
On 2022-12-10 22:09 +0100, Fabrice Fontaine spake thusly:
> Commit 34cea39024bf8dedaa071bc5f2d903755501215c forgot to update
> gnuradio dependencies
>
> Fixes:
> - No autobuilder failures (yet)
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/gqrx/Config.in | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in
> index adcdbb0896..442b28e546 100644
> --- a/package/gqrx/Config.in
> +++ b/package/gqrx/Config.in
> @@ -1,15 +1,16 @@
> -comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
> +comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 8"
> depends on BR2_USE_MMU # gnuradio
> depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
> depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
> - !BR2_USE_WCHAR || BR2_STATIC_LIBS
> + !BR2_USE_WCHAR || BR2_STATIC_LIBS || \
> + !BR2_TOOLCHAIN_GCC_AT_LEAST_8
>
> comment "gqrx needs qt5"
> depends on !BR2_PACKAGE_QT5
>
> -comment "gqrx needs a toolchain not affected by GCC bug 43744 and 64735"
> - depends on BR2_TOOLCHAIN_HAS_GCC_BUG_43744 || BR2_TOOLCHAIN_HAS_GCC_BUG_64735
> +comment "gqrx needs a toolchain not affected by GCC bug 43744"
> + depends on BR2_TOOLCHAIN_HAS_GCC_BUG_43744
>
> config BR2_PACKAGE_GQRX
> bool "gqrx"
> @@ -21,8 +22,8 @@ config BR2_PACKAGE_GQRX
> depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
> depends on BR2_PACKAGE_QT5
> depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # gnuradio -> boost-atomic
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # gnuradio
> depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_43744 # gnuradio
> - depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # gnuradio
> select BR2_PACKAGE_BOOST
> select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
> select BR2_PACKAGE_BOOST_SYSTEM
> --
> 2.35.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-10 21:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-10 21:09 [Buildroot] [PATCH 1/1] package/gqrx: fix dependencies Fabrice Fontaine
2022-12-10 21:13 ` Yann E. MORIN
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.