summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2022-04-21 16:08:38 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-03 17:50:06 +0100
commit49032f1e8d04719ec2ead8b2ea1c3f4e5a21a2c7 (patch)
tree056311b51f9fb1b3a173e694b0cd4e27dcc0de02
parent86cdd92b15109a3eb61ddf96699d9a7445810b60 (diff)
downloadpoky-49032f1e8d04719ec2ead8b2ea1c3f4e5a21a2c7.tar.gz
boost: don't specify gcc version
There's no need to specify an ancient GCC version here as Boost will probe it. (From OE-Core rev: 9ef2a0d98d705dacf8909d846993a6d68c80e4aa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/boost/boost.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index 829e728b6d..1c13fb3599 100644
--- a/meta/recipes-support/boost/boost.inc
+++ b/meta/recipes-support/boost/boost.inc
@@ -165,7 +165,7 @@ do_configure() {
165 165
166 # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation. 166 # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation.
167 rm -f ${WORKDIR}/user-config.jam 167 rm -f ${WORKDIR}/user-config.jam
168 echo 'using gcc : 4.3.1 : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam 168 echo 'using gcc : : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
169 169
170 # If we want Python then we need to tell Boost *exactly* where to find it 170 # If we want Python then we need to tell Boost *exactly* where to find it
171 if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then 171 if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then