summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-20 10:38:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-20 23:56:06 +0000
commit92739edc9da0dea10ccc9d153226cacd6a18ee33 (patch)
treeef5eec5f668a6fae7268a78e3a4c1e8d3630442f
parent31801c66df9fcb14a60b3df2e6aa7c9b86fa702a (diff)
downloadpoky-92739edc9da0dea10ccc9d153226cacd6a18ee33.tar.gz
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>
-rw-r--r--meta/recipes-devtools/gcc/gcc-cross-canadian.inc9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
index 0f79533771..750a4f2113 100644
--- a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
@@ -62,12 +62,10 @@ do_compile () {
62 oe_runmake all-host configure-target-libgcc 62 oe_runmake all-host configure-target-libgcc
63} 63}
64 64
65INHIBIT_PACKAGE_STRIP = "1"
66
67# Having anything auto depending on gcc-cross-sdk is a really bad idea... 65# Having anything auto depending on gcc-cross-sdk is a really bad idea...
68EXCLUDE_FROM_SHLIBS = "1" 66EXCLUDE_FROM_SHLIBS = "1"
69 67
70PACKAGES = "${PN} ${PN}-doc" 68PACKAGES = "${PN}-dbg ${PN} ${PN}-doc"
71 69
72FILES_${PN} = "\ 70FILES_${PN} = "\
73 ${exec_prefix}/bin/* \ 71 ${exec_prefix}/bin/* \
@@ -86,6 +84,11 @@ FILES_${PN} = "\
86" 84"
87INSANE_SKIP_${PN} += "dev-so" 85INSANE_SKIP_${PN} += "dev-so"
88 86
87FILES_${PN}-dbg += " \
88 ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/.debug \
89 ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/plugin/.debug \
90"
91
89FILES_${PN}-doc = "\ 92FILES_${PN}-doc = "\
90 ${infodir} \ 93 ${infodir} \
91 ${mandir} \ 94 ${mandir} \