Files
poky/meta/recipes-support/boost/bjam-native_1.72.0.bb
Alexander Kanavin 5d9b07d809 boost: upgrade 1.71.0 -> 1.72.0
(From OE-Core rev: 773a22ea3996cab70ccc0e44db1d2fbd1be11a60)

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-12-30 08:47:12 +00:00

21 lines
449 B
BlitzBasic

require boost-${PV}.inc
SUMMARY = "Portable Boost.Jam build tool for boost"
SECTION = "devel"
inherit native
SRC_URI += "file://0001-Build-debug-version-of-bjam.patch \
file://0001-build.sh-use-DNDEBUG-also-in-debug-builds.patch \
"
do_compile() {
./bootstrap.sh --with-toolset=gcc
}
do_install() {
install -d ${D}${bindir}/
# install unstripped version for bjam
install -c -m 755 b2 ${D}${bindir}/bjam
}