mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
gcc-cross-canadian: Enable stripping and packaging of binaries
This seems to have been disabled since the dawn of time for no good reason. Enable the .debug stripping and packaging allowing for a smaller SDK. (From OE-Core rev: bbaf97ba38329b5221e6d4d0d18f20e6b7d6fd91) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -62,12 +62,10 @@ do_compile () {
|
||||
oe_runmake all-host configure-target-libgcc
|
||||
}
|
||||
|
||||
INHIBIT_PACKAGE_STRIP = "1"
|
||||
|
||||
# Having anything auto depending on gcc-cross-sdk is a really bad idea...
|
||||
EXCLUDE_FROM_SHLIBS = "1"
|
||||
|
||||
PACKAGES = "${PN} ${PN}-doc"
|
||||
PACKAGES = "${PN}-dbg ${PN} ${PN}-doc"
|
||||
|
||||
FILES_${PN} = "\
|
||||
${exec_prefix}/bin/* \
|
||||
@@ -86,6 +84,11 @@ FILES_${PN} = "\
|
||||
"
|
||||
INSANE_SKIP_${PN} += "dev-so"
|
||||
|
||||
FILES_${PN}-dbg += " \
|
||||
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/.debug \
|
||||
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/plugin/.debug \
|
||||
"
|
||||
|
||||
FILES_${PN}-doc = "\
|
||||
${infodir} \
|
||||
${mandir} \
|
||||
|
||||
Reference in New Issue
Block a user