mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-02 18:59:37 +02:00
26 lines
440 B
BlitzBasic
26 lines
440 B
BlitzBasic
PR = "${INC_PR}.0"
|
|
|
|
require klibc.inc
|
|
SUMMARY = "The klcc crosscompiler for klibc"
|
|
|
|
SRC_URI += "file://use-env-for-perl.patch"
|
|
|
|
DEPENDS = "klibc"
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/klibc-${PV}:"
|
|
|
|
inherit cross
|
|
|
|
do_configure () {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
oe_runmake 'INSTALLDIR=${STAGING_DIR_TARGET}${target_libdir}/klibc' klcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 klcc/klcc ${D}${bindir}/${TARGET_PREFIX}klcc
|
|
}
|