mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
0001-Do-not-qualify-fenv.h-names-that-might-be-macros.patch has been merged upstream. (From OE-Core rev: 25d4129bab9f6abeecbfec6b69612e387851bfe3) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
365 B
BlitzBasic
19 lines
365 B
BlitzBasic
include 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
|
|
}
|