mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-07 06:34:46 +02:00
* remove sochet.h patch now upstream * prepare for klibc_2.0, to be released in the next days Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
34 lines
626 B
BlitzBasic
34 lines
626 B
BlitzBasic
PR = "${INC_PR}.0"
|
|
|
|
require klibc.inc
|
|
require klibc-checksums_${PV}.inc
|
|
|
|
export KLCC_INST = "${STAGING_DIR_TARGET}/lib/klibc"
|
|
|
|
SRC_URI += "file://klcc_prefix.patch \
|
|
file://use-env-for-perl.patch"
|
|
|
|
DEPENDS = "klibc"
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/klibc-${PV}:"
|
|
|
|
# ${TARGET_PREFIX}klcc is just a
|
|
# perl wrapper around gcc-cross
|
|
# so give it the same arch and path
|
|
PACKAGE_ARCH = "${TUNE_PKGARCH}"
|
|
|
|
inherit cross
|
|
|
|
do_configure () {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
oe_runmake klcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${base_bindir}
|
|
install -m 0755 klcc/klcc ${D}${base_bindir}/${TARGET_PREFIX}klcc
|
|
}
|