mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
662 B
BlitzBasic
24 lines
662 B
BlitzBasic
SUMMARY = "A small utility for printing debug source file locations embedded in binaries"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://../dwarfsrcfiles.c;md5=31483894e453a77acbb67847565f1b5c;beginline=1;endline=8"
|
|
|
|
SRC_URI = "file://dwarfsrcfiles.c"
|
|
BBCLASSEXTEND = "native"
|
|
DEPENDS = "elfutils"
|
|
DEPENDS:append:libc-musl = " argp-standalone"
|
|
|
|
do_compile () {
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw
|
|
}
|
|
|
|
do_compile:libc-musl () {
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o dwarfsrcfiles ../dwarfsrcfiles.c -lelf -ldw -largp
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -t ${D}${bindir} dwarfsrcfiles
|
|
}
|
|
|