mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-26 19:17:05 +00:00
c65eed7160
Use PRIVATE_LIBS to ensure that the Arm binary toolchains don't provide their own libraries to the entire system. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
27 lines
718 B
PHP
27 lines
718 B
PHP
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
FILES:${PN} = "${libexecdir} ${bindir}"
|
|
|
|
BINNAME = "${@d.getVar("BPN").strip("gcc-")}"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir} ${D}${libexecdir}/${BPN}/
|
|
cp -r ${S}/. ${D}${libexecdir}/${BPN}
|
|
|
|
# Symlink all executables into bindir
|
|
for f in ${D}${libexecdir}/${BPN}/bin/*; do
|
|
ln -rs $f ${D}${bindir}/$(basename $f)
|
|
done
|
|
}
|
|
|
|
INSANE_SKIP:${PN} = "already-stripped libdir staticdev file-rdeps arch dev-so"
|
|
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
|
|
# Need to mark these as private until do_package's soname-finder only looks in $libdir
|
|
PRIVATE_LIBS = "libgcc_s.so.1 libstdc++.so.6"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|