mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 13:50:22 +00:00
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
23 lines
708 B
BlitzBasic
23 lines
708 B
BlitzBasic
SUMMARY = "Helper script for OE's llvm support"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420 \
|
|
"
|
|
|
|
SRC_URI = "file://llvm-config"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
SYSROOT_PREPROCESS_FUNCS_append_class-target = " llvm_common_sysroot_preprocess"
|
|
|
|
llvm_common_sysroot_preprocess() {
|
|
install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
|
install -m 0755 ${WORKDIR}/llvm-config ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
|
}
|
|
|
|
do_install_class-native() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${WORKDIR}/llvm-config ${D}${bindir}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|