All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6
@ 2018-10-12 22:15 Fabrice Fontaine
  2018-10-21 17:11 ` Matthew Weber
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2018-10-12 22:15 UTC (permalink / raw
  To: buildroot

Commit f3a483a81be43b0ff674400e11900605969f8f1c added -std=c++11 to
boost build if context is selected and gcc is at least 4.7 however it
has the side effect that cc-tool fails to find boost_system with the
following error if context and system is enabled with a gcc greater
than 6:

configure:16312: /home/dawncrow/buildroot-test/scripts/instance-0/output/host/bin/x86_64-linux-g++ -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -Os   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/include  -L/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/lib conftest.o -lboost_system -latomic >&5
conftest.o: In function `boost::system::error_category::std_category::equivalent(int, std::error_condition const&) const':
conftest.cpp:(.text._ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition[_ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition]+0x37): undefined reference to `boost::system::detail::generic_category_instance'

This error is related to the fact that since boost 1.68 and commit
https://github.com/boostorg/system/commit/7b6dcf6ac668e24f11ec5dbc68d1fa0248d964df,
boost system headers are now C++14 "by default" with gcc above 6:
- https://github.com/boostorg/system/issues/24
- https://github.com/boostorg/system/issues/26
- https://lists.boost.org/Archives/boost/2018/08/242770.php

So when building with gcc > 6, cc-tool thinks that boost has
generic_category_instance but because boost was compiled with
std=c++11, this function will not be in the library causing a link error

Instead of "hacking" even more boost, just remove -std=c++11 from
boost.mk and select BOOST_THREAD with gcc lower than 6

Fixes:
 - http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/boost/Config.in | 2 +-
 package/boost/boost.mk  | 5 -----
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/package/boost/Config.in b/package/boost/Config.in
index e0bff17f75..0fe2422e5f 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -83,7 +83,7 @@ config BR2_PACKAGE_BOOST_CONTEXT
 	bool "boost-context"
 	depends on BR2_PACKAGE_BOOST_CONTEXT_ARCH_SUPPORTS
 	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
-	select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
+	select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_6
 	help
 	  C++11 context switching library.
 
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 2ce6bbb75f..0adad89297 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -61,11 +61,6 @@ else
 BOOST_FLAGS += --without-icu
 endif
 
-# boost-context needs C++11
-ifeq ($(BR2_PACKAGE_BOOST_CONTEXT)$(BR2_TOOLCHAIN_GCC_AT_LEAST_4_7),yy)
-BOOST_TARGET_CXXFLAGS += -std=c++11
-endif
-
 ifeq ($(BR2_PACKAGE_BOOST_IOSTREAMS),y)
 BOOST_DEPENDENCIES += bzip2 zlib
 endif
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6
  2018-10-12 22:15 [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6 Fabrice Fontaine
@ 2018-10-21 17:11 ` Matthew Weber
  2018-10-21 17:50   ` Matthew Weber
  2018-10-23 21:12 ` Ferdinand van Aartsen
  2018-10-26 15:11 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Matthew Weber @ 2018-10-21 17:11 UTC (permalink / raw
  To: buildroot

Fabrice,

On Fri, Oct 12, 2018 at 11:15 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Commit f3a483a81be43b0ff674400e11900605969f8f1c added -std=c++11 to
> boost build if context is selected and gcc is at least 4.7 however it
> has the side effect that cc-tool fails to find boost_system with the
> following error if context and system is enabled with a gcc greater
> than 6:
>
> configure:16312: /home/dawncrow/buildroot-test/scripts/instance-0/output/host/bin/x86_64-linux-g++ -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -Os   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/include  -L/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/lib conftest.o -lboost_system -latomic >&5
> conftest.o: In function `boost::system::error_category::std_category::equivalent(int, std::error_condition const&) const':
> conftest.cpp:(.text._ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition[_ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition]+0x37): undefined reference to `boost::system::detail::generic_category_instance'
>
> This error is related to the fact that since boost 1.68 and commit
> https://github.com/boostorg/system/commit/7b6dcf6ac668e24f11ec5dbc68d1fa0248d964df,
> boost system headers are now C++14 "by default" with gcc above 6:
> - https://github.com/boostorg/system/issues/24
> - https://github.com/boostorg/system/issues/26
> - https://lists.boost.org/Archives/boost/2018/08/242770.php
>
> So when building with gcc > 6, cc-tool thinks that boost has
> generic_category_instance but because boost was compiled with
> std=c++11, this function will not be in the library causing a link error
>
> Instead of "hacking" even more boost, just remove -std=c++11 from
> boost.mk and select BOOST_THREAD with gcc lower than 6
>
> Fixes:
>  - http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Retested the following cases
-------------------------------------------
1) (Noted above)
http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
 - Repeated the failure
 - Applied patch and didn't observe the failure (GCC was 6 as
specified in the failure)
 - Switch GCC version to 5.4.0
(https://toolchains.bootlin.com/downloads/releases/toolchains/x86-64-core-i7/tarballs/x86-64-core-i7--musl--stable-2017.05-toolchains-1-1.tar.bz2)
 - Build Ok

2) [PATCH v3,1/1] boost: context needs C++11 (
f3a483a81be43b0ff674400e11900605969f8f1c )
(Merged in Oct 2018)
 - Used config from
http://autobuild.buildroot.net/results/99f1a255b78a973faeb8bf3b94d78efc54426a8b
on latest
 - Had to fix up (enable) boost-chrono as the boost "selected config"
check caught it
 - GCC 5.3.0 was used in this build
 - cc-tools failed similar to
http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
       configure: error: cannot find the flags to link with Boost
program_options
       make[1]: *** [package/pkg-generic.mk:222:
/accts/mlweber1/rclinux/rc-buildroot-master-dev/t_oldBoostTest/build/cc-tool-0.26/.stamp_configured]
Error 1
       make: *** [Makefile:16: _all] Error 2

3) boost: context needs thread without C++11 mutex (
b20c5ca3b8c5b180a6ee87556d0c87d474e86cde )
(Merged in Aug 2018)
 - Used config form
http://autobuild.buildroot.net/results/fb046c04fe18bec973d120e4ab33971f32ba5769
on latest
 - Built Ok


> ---
>  package/boost/Config.in | 2 +-
>  package/boost/boost.mk  | 5 -----
>  2 files changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/package/boost/Config.in b/package/boost/Config.in
> index e0bff17f75..0fe2422e5f 100644
> --- a/package/boost/Config.in
> +++ b/package/boost/Config.in
> @@ -83,7 +83,7 @@ config BR2_PACKAGE_BOOST_CONTEXT
>         bool "boost-context"
>         depends on BR2_PACKAGE_BOOST_CONTEXT_ARCH_SUPPORTS
>         depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
> -       select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> +       select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_6
>         help
>           C++11 context switching library.
>
> diff --git a/package/boost/boost.mk b/package/boost/boost.mk
> index 2ce6bbb75f..0adad89297 100644
> --- a/package/boost/boost.mk
> +++ b/package/boost/boost.mk
> @@ -61,11 +61,6 @@ else
>  BOOST_FLAGS += --without-icu
>  endif
>
> -# boost-context needs C++11
> -ifeq ($(BR2_PACKAGE_BOOST_CONTEXT)$(BR2_TOOLCHAIN_GCC_AT_LEAST_4_7),yy)
> -BOOST_TARGET_CXXFLAGS += -std=c++11
> -endif
> -
>  ifeq ($(BR2_PACKAGE_BOOST_IOSTREAMS),y)
>  BOOST_DEPENDENCIES += bzip2 zlib
>  endif
> --
> 2.17.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot



-- 
Matthew L Weber / Pr Software Engineer
Airborne Information Systems / RC Linux Secure Platforms
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
www.rockwellcollins.com

Note: Any Export License Required Information and License Restricted
Third Party Intellectual Property (TPIP) content must be encrypted and
sent to matthew.weber at corp.rockwellcollins.com.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6
  2018-10-21 17:11 ` Matthew Weber
@ 2018-10-21 17:50   ` Matthew Weber
  0 siblings, 0 replies; 5+ messages in thread
From: Matthew Weber @ 2018-10-21 17:50 UTC (permalink / raw
  To: buildroot

Fabrice,

On Sun, Oct 21, 2018 at 6:11 PM Matthew Weber
<matthew.weber@rockwellcollins.com> wrote:
>
> Fabrice,
>
> On Fri, Oct 12, 2018 at 11:15 PM Fabrice Fontaine
> <fontaine.fabrice@gmail.com> wrote:
> >
> > Commit f3a483a81be43b0ff674400e11900605969f8f1c added -std=c++11 to
> > boost build if context is selected and gcc is at least 4.7 however it
> > has the side effect that cc-tool fails to find boost_system with the
> > following error if context and system is enabled with a gcc greater
> > than 6:
> >
> > configure:16312: /home/dawncrow/buildroot-test/scripts/instance-0/output/host/bin/x86_64-linux-g++ -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -Os   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/include  -L/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/lib conftest.o -lboost_system -latomic >&5
> > conftest.o: In function `boost::system::error_category::std_category::equivalent(int, std::error_condition const&) const':
> > conftest.cpp:(.text._ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition[_ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition]+0x37): undefined reference to `boost::system::detail::generic_category_instance'
> >
> > This error is related to the fact that since boost 1.68 and commit
> > https://github.com/boostorg/system/commit/7b6dcf6ac668e24f11ec5dbc68d1fa0248d964df,
> > boost system headers are now C++14 "by default" with gcc above 6:
> > - https://github.com/boostorg/system/issues/24
> > - https://github.com/boostorg/system/issues/26
> > - https://lists.boost.org/Archives/boost/2018/08/242770.php
> >
> > So when building with gcc > 6, cc-tool thinks that boost has
> > generic_category_instance but because boost was compiled with
> > std=c++11, this function will not be in the library causing a link error
> >
> > Instead of "hacking" even more boost, just remove -std=c++11 from
> > boost.mk and select BOOST_THREAD with gcc lower than 6
> >
> > Fixes:
> >  - http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> Retested the following cases
> -------------------------------------------
> 1) (Noted above)
> http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
>  - Repeated the failure
>  - Applied patch and didn't observe the failure (GCC was 6 as
> specified in the failure)
>  - Switch GCC version to 5.4.0
> (https://toolchains.bootlin.com/downloads/releases/toolchains/x86-64-core-i7/tarballs/x86-64-core-i7--musl--stable-2017.05-toolchains-1-1.tar.bz2)
>  - Build Ok
>
> 2) [PATCH v3,1/1] boost: context needs C++11 (
> f3a483a81be43b0ff674400e11900605969f8f1c )
> (Merged in Oct 2018)
>  - Used config from
> http://autobuild.buildroot.net/results/99f1a255b78a973faeb8bf3b94d78efc54426a8b
> on latest
>  - Had to fix up (enable) boost-chrono as the boost "selected config"
> check caught it
>  - GCC 5.3.0 was used in this build
>  - cc-tools failed similar to
> http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
>        configure: error: cannot find the flags to link with Boost
> program_options
>        make[1]: *** [package/pkg-generic.mk:222:
> /accts/mlweber1/rclinux/rc-buildroot-master-dev/t_oldBoostTest/build/cc-tool-0.26/.stamp_configured]
> Error 1
>        make: *** [Makefile:16: _all] Error 2
>

I started another build when I sent this email and it passed.  When I
checked my command history on my failing build, I hadn't cleaned the
build so the boost without threads was used.  Sorry about the false
failure.  Here's my tested by.

Tested-by: Matt Weber <matthew.weber@rockwellcollins.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6
  2018-10-12 22:15 [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6 Fabrice Fontaine
  2018-10-21 17:11 ` Matthew Weber
@ 2018-10-23 21:12 ` Ferdinand van Aartsen
  2018-10-26 15:11 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Ferdinand van Aartsen @ 2018-10-23 21:12 UTC (permalink / raw
  To: buildroot

Fabrice Fontaine schreef op 2018-10-13 00:15:
> Commit f3a483a81be43b0ff674400e11900605969f8f1c added -std=c++11 to
> boost build if context is selected and gcc is at least 4.7 however it
> has the side effect that cc-tool fails to find boost_system with the
> following error if context and system is enabled with a gcc greater
> than 6:
> 
> configure:16312:
> /home/dawncrow/buildroot-test/scripts/instance-0/output/host/bin/x86_64-linux-g++
> -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
> -D_FILE_OFFSET_BITS=64  -Os   -D_LARGEFILE_SOURCE
> -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
> -I/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/include
> 
> -L/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/lib
> conftest.o -lboost_system -latomic >&5
> conftest.o: In function
> `boost::system::error_category::std_category::equivalent(int,
> std::error_condition const&) const':
> conftest.cpp:(.text._ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition[_ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition]+0x37):
> undefined reference to
> `boost::system::detail::generic_category_instance'
> 
> This error is related to the fact that since boost 1.68 and commit
> https://github.com/boostorg/system/commit/7b6dcf6ac668e24f11ec5dbc68d1fa0248d964df,
> boost system headers are now C++14 "by default" with gcc above 6:
> - https://github.com/boostorg/system/issues/24
> - https://github.com/boostorg/system/issues/26
> - https://lists.boost.org/Archives/boost/2018/08/242770.php
> 
> So when building with gcc > 6, cc-tool thinks that boost has
> generic_category_instance but because boost was compiled with
> std=c++11, this function will not be in the library causing a link 
> error
> 
> Instead of "hacking" even more boost, just remove -std=c++11 from
> boost.mk and select BOOST_THREAD with gcc lower than 6
> 
> Fixes:
>  -
> http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/boost/Config.in | 2 +-
>  package/boost/boost.mk  | 5 -----
>  2 files changed, 1 insertion(+), 6 deletions(-)
> 
> diff --git a/package/boost/Config.in b/package/boost/Config.in
> index e0bff17f75..0fe2422e5f 100644
> --- a/package/boost/Config.in
> +++ b/package/boost/Config.in
> @@ -83,7 +83,7 @@ config BR2_PACKAGE_BOOST_CONTEXT
>  	bool "boost-context"
>  	depends on BR2_PACKAGE_BOOST_CONTEXT_ARCH_SUPPORTS
>  	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
> -	select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> +	select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_6
>  	help
>  	  C++11 context switching library.
> 
> diff --git a/package/boost/boost.mk b/package/boost/boost.mk
> index 2ce6bbb75f..0adad89297 100644
> --- a/package/boost/boost.mk
> +++ b/package/boost/boost.mk
> @@ -61,11 +61,6 @@ else
>  BOOST_FLAGS += --without-icu
>  endif
> 
> -# boost-context needs C++11
> -ifeq 
> ($(BR2_PACKAGE_BOOST_CONTEXT)$(BR2_TOOLCHAIN_GCC_AT_LEAST_4_7),yy)
> -BOOST_TARGET_CXXFLAGS += -std=c++11
> -endif
> -
>  ifeq ($(BR2_PACKAGE_BOOST_IOSTREAMS),y)
>  BOOST_DEPENDENCIES += bzip2 zlib
>  endif

I tried to work on this autobuild failure, but you already fixed it 
rather
more elegantly. Thanks Matt, for pointing out this patch was already 
there.

Ferdinand

Reviewed-by: Ferdinand van Aartsen <ferdinand@ombud.nl>
Tested-by: Ferdinand van Aartsen <ferdinand@ombud.nl>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6
  2018-10-12 22:15 [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6 Fabrice Fontaine
  2018-10-21 17:11 ` Matthew Weber
  2018-10-23 21:12 ` Ferdinand van Aartsen
@ 2018-10-26 15:11 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2018-10-26 15:11 UTC (permalink / raw
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Commit f3a483a81be43b0ff674400e11900605969f8f1c added -std=c++11 to
 > boost build if context is selected and gcc is at least 4.7 however it
 > has the side effect that cc-tool fails to find boost_system with the
 > following error if context and system is enabled with a gcc greater
 > than 6:

 > configure:16312: /home/dawncrow/buildroot-test/scripts/instance-0/output/host/bin/x86_64-linux-g++ -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -Os   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/include  -L/home/dawncrow/buildroot-test/scripts/instance-0/output/host/x86_64-buildroot-linux-musl/sysroot/usr/lib conftest.o -lboost_system -latomic >&5
 > conftest.o: In function `boost::system::error_category::std_category::equivalent(int, std::error_condition const&) const':
 > conftest.cpp:(.text._ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition[_ZNK5boost6system14error_category12std_category10equivalentEiRKSt15error_condition]+0x37): undefined reference to `boost::system::detail::generic_category_instance'

 > This error is related to the fact that since boost 1.68 and commit
 > https://github.com/boostorg/system/commit/7b6dcf6ac668e24f11ec5dbc68d1fa0248d964df,
 > boost system headers are now C++14 "by default" with gcc above 6:
 > - https://github.com/boostorg/system/issues/24
 > - https://github.com/boostorg/system/issues/26
 > - https://lists.boost.org/Archives/boost/2018/08/242770.php

 > So when building with gcc > 6, cc-tool thinks that boost has
 > generic_category_instance but because boost was compiled with
 > std=c++11, this function will not be in the library causing a link error

 > Instead of "hacking" even more boost, just remove -std=c++11 from
 > boost.mk and select BOOST_THREAD with gcc lower than 6

 > Fixes:
 >  - http://autobuild.buildroot.org/results/fc8f8a64751c751b2b66301967cc008509bbaa70

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-10-26 15:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-12 22:15 [Buildroot] [PATCH 1/1] boost: context needs thread if gcc < 6 Fabrice Fontaine
2018-10-21 17:11 ` Matthew Weber
2018-10-21 17:50   ` Matthew Weber
2018-10-23 21:12 ` Ferdinand van Aartsen
2018-10-26 15:11 ` Peter Korsgaard

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.