- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
32 lines
941 B
PHP
32 lines
941 B
PHP
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
FILES:${PN} = "${libexecdir} ${bindir}"
|
|
|
|
BINNAME = "${@d.getVar("BPN").strip("gcc-")}"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir} ${D}${libexecdir}/${BP}/
|
|
cp -r ${S}/. ${D}${libexecdir}/${BP}
|
|
|
|
# Symlink all executables into bindir
|
|
for f in ${D}${libexecdir}/${BP}/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"
|
|
|
|
# Skipping file deps - we don't control the dependencies for prebuilt libraries, resulting in
|
|
# nothing provides libcrypt.so.1()(64bit) needed by nativesdk-gcc-arm-none-eabi
|
|
# when packaged as RPM for SDK.
|
|
SKIP_FILEDEPS="1"
|