mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
Rework 0002-Don-t-set-up-m32-m64-we-do-that-ourselves.patch to remove the offending bits from the function instead of removing calls to the function all over the place. (From OE-Core rev: 18e94bc08db55afb2d9b9db9a51c6a2d5478c056) 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>
20 lines
450 B
BlitzBasic
20 lines
450 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 \
|
|
file://0001-Fix-a-strange-assert-typo-how-was-this-released-with.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
|
|
}
|