mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
Drop backported 0002-boost-test-execution_monitor.hpp-fix-mips-soft-float.patch Rebase consider-hardfp.patch to 0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch (From OE-Core rev: ef603f41b5df4772bb598ec9d389dd5f858592af) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
365 B
BlitzBasic
19 lines
365 B
BlitzBasic
require boost-${PV}.inc
|
|
|
|
SUMMARY = "Portable Boost.Jam build tool for boost"
|
|
SECTION = "devel"
|
|
|
|
inherit native
|
|
|
|
SRC_URI += "file://bjam-native-build-bjam.debug.patch"
|
|
|
|
do_compile() {
|
|
./bootstrap.sh --with-toolset=gcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
# install unstripped version for bjam
|
|
install -c -m 755 bjam.debug ${D}${bindir}/bjam
|
|
}
|