1INHIBIT_DEFAULT_DEPS = "1"
2
3FILES:${PN} = "${libexecdir} ${bindir}"
4
5BINNAME = "${@d.getVar("BPN").strip("gcc-")}"
6
7do_install() {
8    install -d ${D}${bindir} ${D}${libexecdir}/${BP}/
9    cp -r ${S}/. ${D}${libexecdir}/${BP}
10
11    # Symlink all executables into bindir
12    for f in ${D}${libexecdir}/${BP}/bin/*; do
13        ln -rs $f ${D}${bindir}/$(basename $f)
14    done
15}
16
17INSANE_SKIP:${PN} = "already-stripped libdir staticdev file-rdeps arch dev-so"
18
19INHIBIT_SYSROOT_STRIP = "1"
20INHIBIT_PACKAGE_STRIP = "1"
21INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
22
23# Need to mark these as private until do_package's soname-finder only looks in $libdir
24PRIVATE_LIBS = "libgcc_s.so.1 libstdc++.so.6"
25
26BBCLASSEXTEND = "native nativesdk"
27
28# Skipping file deps - we don't control the dependencies for prebuilt libraries, resulting in
29# nothing provides libcrypt.so.1()(64bit) needed by nativesdk-gcc-arm-none-eabi
30# when packaged as RPM for SDK.
31SKIP_FILEDEPS="1"
32