diff options
Diffstat (limited to 'meta/recipes-support/boost/boost.inc')
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index 7628e37d6f..d95d281fef 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc | |||
@@ -60,7 +60,7 @@ RRECOMMENDS_${PN}_class-native = "" | |||
60 | ALLOW_EMPTY_${PN} = "1" | 60 | ALLOW_EMPTY_${PN} = "1" |
61 | 61 | ||
62 | # to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works | 62 | # to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works |
63 | TARGET_CC_ARCH += " ${LDFLAGS}" | 63 | TARGET_CC_ARCH += "${LDFLAGS}" |
64 | 64 | ||
65 | # Oh yippee, a new build system, it's sooo cooool I could eat my own | 65 | # Oh yippee, a new build system, it's sooo cooool I could eat my own |
66 | # foot. inlining=on lets the compiler choose, I think. At least this | 66 | # foot. inlining=on lets the compiler choose, I think. At least this |
@@ -143,11 +143,9 @@ do_boostconfig() { | |||
143 | cp -f boost/config/platform/linux.hpp boost/config/platform/linux-gnueabi.hpp | 143 | cp -f boost/config/platform/linux.hpp boost/config/platform/linux-gnueabi.hpp |
144 | 144 | ||
145 | # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation. | 145 | # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation. |
146 | if ! grep -qe "^using gcc : 4.3.1" ${S}/tools/build/example/user-config.jam | 146 | sed -i "/^using gcc : 4.3.1/d" ${S}/tools/build/example/user-config.jam |
147 | then | 147 | sed -i "/^using python : ${PYTHON_BASEVERSION}"/d ${S}/tools/build/example/user-config.jam |
148 | echo 'using gcc : 4.3.1 : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${S}/tools/build/example/user-config.jam | 148 | echo 'using gcc : 4.3.1 : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${S}/tools/build/example/user-config.jam |
149 | fi | ||
150 | |||
151 | echo "using python : ${PYTHON_BASEVERSION} : : ${STAGING_INCDIR}/python${PYTHON_BASEVERSION} ;" >> ${S}/tools/build/example/user-config.jam | 149 | echo "using python : ${PYTHON_BASEVERSION} : : ${STAGING_INCDIR}/python${PYTHON_BASEVERSION} ;" >> ${S}/tools/build/example/user-config.jam |
152 | 150 | ||
153 | CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" ./bootstrap.sh --with-bjam=bjam --with-toolset=gcc --with-python-root=${PYTHON_ROOT} | 151 | CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" ./bootstrap.sh --with-bjam=bjam --with-toolset=gcc --with-python-root=${PYTHON_ROOT} |