]> code.ossystems Code Review - openembedded-core.git/commitdiff
boost: don't specify gcc version
authorRoss Burton <ross.burton@intel.com>
Tue, 6 Oct 2020 11:14:43 +0000 (12:14 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 8 Oct 2020 09:22:06 +0000 (10:22 +0100)
There's no need to specify an ancient GCC version here as Boost will
probe it.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/boost/boost.inc

index e74c7d6f7dd11cc05b3d79cedbf8fbbe39c68134..89df7547449a5f3bf5767321faf8cd906b363536 100644 (file)
@@ -169,7 +169,7 @@ do_configure() {
 
        # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation.
        rm -f ${WORKDIR}/user-config.jam
-       echo 'using gcc : 4.3.1 : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
+       echo 'using gcc : : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
 
        # If we want Python then we need to tell Boost *exactly* where to find it
        if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then