mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-09 01:14:40 +02:00
26 lines
1.1 KiB
BlitzBasic
26 lines
1.1 KiB
BlitzBasic
SUMMARY = "The GNU Compiler Collection - libgcc"
|
|
HOMEPAGE = "http://www.gnu.org/software/gcc/"
|
|
SECTION = "devel"
|
|
DEPENDS += "virtual/${TARGET_PREFIX}binutils"
|
|
PV = "${GCC_VERSION}"
|
|
|
|
inherit external-toolchain
|
|
|
|
LICENSE = "GPL-3.0-with-GCC-exception"
|
|
|
|
# libgcc needs libc, but glibc's utilities need libgcc, so short-circuit the
|
|
# interdependency here by manually specifying it rather than depending on the
|
|
# libc packagedata.
|
|
RDEPENDS_${PN} += "${@'${PREFERRED_PROVIDER_virtual/libc}' if '${PREFERRED_PROVIDER_virtual/libc}' else '${TCLIBC}'}"
|
|
INSANE_SKIP_${PN} += "build-deps file-rdeps"
|
|
|
|
# The dynamically loadable files belong to libgcc, since we really don't need the static files
|
|
# on the target, moreover linker won't be able to find them there (see original libgcc.bb recipe).
|
|
BINV = "${GCC_VERSION}"
|
|
FILES_${PN} = "${base_libdir}/libgcc_s.so.*"
|
|
FILES_${PN}-dev = "${base_libdir}/libgcc_s.so \
|
|
${libdir}/${EXTERNAL_TARGET_SYS}/${BINV}* \
|
|
"
|
|
INSANE_SKIP_${PN}-dev += "staticdev"
|
|
FILES_${PN}-dbg += "${base_libdir}/.debug/libgcc_s.so.*.debug"
|