* [Buildroot] [PATCH 1/1] package/rtorrent: requires gcc >= 4.9
@ 2018-09-15 14:01 Bernd Kuhls
2018-09-16 13:08 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2018-09-15 14:01 UTC (permalink / raw)
To: buildroot
Upstream considers the build error as compiler bug:
https://github.com/rakshasa/rtorrent/issues/223
Building with gcc 4.9 works, tested with this defconfig:
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
BR2_GCC_VERSION_4_9_X=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_RTORRENT=y
Fixes
http://autobuild.buildroot.net/results/990/990c9d62f3d275bd4e2ffad41bdb6d68c483cbb1/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/rtorrent/Config.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/rtorrent/Config.in b/package/rtorrent/Config.in
index 190e50fe26..5c5c64d892 100644
--- a/package/rtorrent/Config.in
+++ b/package/rtorrent/Config.in
@@ -4,6 +4,7 @@ config BR2_PACKAGE_RTORRENT
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU # fork()
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
depends on BR2_TOOLCHAIN_HAS_SYNC_1 && BR2_TOOLCHAIN_HAS_SYNC_4
select BR2_PACKAGE_LIBCURL
select BR2_PACKAGE_LIBTORRENT
@@ -14,7 +15,8 @@ config BR2_PACKAGE_RTORRENT
https://github.com/rakshasa/rtorrent
-comment "rtorrent needs a toolchain w/ C++, threads, wchar"
+comment "rtorrent needs a toolchain w/ C++, threads, wchar, gcc >= 4.9"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_SYNC_1 && BR2_TOOLCHAIN_HAS_SYNC_4
- depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
+ depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
+ BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_9)
--
2.18.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] package/rtorrent: requires gcc >= 4.9
2018-09-15 14:01 [Buildroot] [PATCH 1/1] package/rtorrent: requires gcc >= 4.9 Bernd Kuhls
@ 2018-09-16 13:08 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2018-09-16 13:08 UTC (permalink / raw)
To: buildroot
Hello,
On Sat, 15 Sep 2018 16:01:50 +0200, Bernd Kuhls wrote:
> Upstream considers the build error as compiler bug:
Why do you say "considers the build error as a compiler bug"? It
obviously is: the compiler segfaults. It cannot be anything but a
compiler bug.
> https://github.com/rakshasa/rtorrent/issues/223
>
> Building with gcc 4.9 works, tested with this defconfig:
>
> BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
> BR2_GCC_VERSION_4_9_X=y
> BR2_TOOLCHAIN_BUILDROOT_CXX=y
> BR2_PACKAGE_RTORRENT=y
>
> Fixes
> http://autobuild.buildroot.net/results/990/990c9d62f3d275bd4e2ffad41bdb6d68c483cbb1/
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
I've applied to master, with one minor change, see below.
> ---
> package/rtorrent/Config.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/rtorrent/Config.in b/package/rtorrent/Config.in
> index 190e50fe26..5c5c64d892 100644
> --- a/package/rtorrent/Config.in
> +++ b/package/rtorrent/Config.in
> @@ -4,6 +4,7 @@ config BR2_PACKAGE_RTORRENT
> depends on BR2_USE_WCHAR
> depends on BR2_TOOLCHAIN_HAS_THREADS
> depends on BR2_USE_MMU # fork()
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
I've added a comment above this line that explains why we have this
dependency, otherwise it's not very obvious.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-09-16 13:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-15 14:01 [Buildroot] [PATCH 1/1] package/rtorrent: requires gcc >= 4.9 Bernd Kuhls
2018-09-16 13:08 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox