mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
On a system without ccache, f you: INHERIT += "ccache" bitbake libtool-cross <remove INHERIT> bitbake apmd then it fails due to being unable to find ccache. The references to ccache are coded into libtool-cross but the sstate checksum doesn't reflect this due to the way the class is coded (output should be the same regardless). The simplest solution is to remove references to ccache from the libtool script. The output then works regardless of whether ccache is present or not. The libtool-cross script is only used in a handful of cases (most of the time its dynamically generated by autoconf) so any performance issue is minor. (From OE-Core rev: ed550a49d2114c56e5bc033ecd0e83073d2d4067) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
2.1 KiB
BlitzBasic
49 lines
2.1 KiB
BlitzBasic
require libtool-${PV}.inc
|
|
|
|
PACKAGES = ""
|
|
SRC_URI += "file://prefix.patch"
|
|
SRC_URI += "file://fixinstall.patch"
|
|
|
|
datadir = "${STAGING_DIR_TARGET}${target_datadir}"
|
|
|
|
do_configure_prepend () {
|
|
# Remove any existing libtool m4 since old stale versions would break
|
|
# any upgrade
|
|
rm -f ${STAGING_DATADIR}/aclocal/libtool.m4
|
|
rm -f ${STAGING_DATADIR}/aclocal/lt*.m4
|
|
}
|
|
|
|
#
|
|
# ccache may or may not be INHERITED, we remove references to it so the sstate
|
|
# artefact works on a machine where its not present. libtool-cross isn't used
|
|
# heavily so any performance issue is minor.
|
|
# Find references to LTCC="ccache xxx-gcc" and CC="ccache xxx-gcc"
|
|
#
|
|
do_install () {
|
|
install -d ${D}${bindir_crossscripts}/
|
|
install -m 0755 ${HOST_SYS}-libtool ${D}${bindir_crossscripts}/${HOST_SYS}-libtool
|
|
sed -e 's@^\(predep_objects="\).*@\1"@' \
|
|
-e 's@^\(postdep_objects="\).*@\1"@' \
|
|
-e 's@^CC="ccache.@CC="@' \
|
|
-e 's@^LTCC="ccache.@LTCC="@' \
|
|
-i ${D}${bindir_crossscripts}/${HOST_SYS}-libtool
|
|
sed -i '/^archive_cmds=/s/\-nostdlib//g' ${D}${bindir_crossscripts}/${HOST_SYS}-libtool
|
|
sed -i '/^archive_expsym_cmds=/s/\-nostdlib//g' ${D}${bindir_crossscripts}/${HOST_SYS}-libtool
|
|
GREP='/bin/grep' SED='sed' ${S}/build-aux/inline-source libtoolize > ${D}${bindir_crossscripts}/libtoolize
|
|
chmod 0755 ${D}${bindir_crossscripts}/libtoolize
|
|
install -d ${D}${target_datadir}/libtool/build-aux/
|
|
install -d ${D}${target_datadir}/aclocal/
|
|
install -c ${S}/build-aux/compile ${D}${target_datadir}/libtool/build-aux/
|
|
install -c ${S}/build-aux/config.guess ${D}${target_datadir}/libtool/build-aux/
|
|
install -c ${S}/build-aux/config.sub ${D}${target_datadir}/libtool/build-aux/
|
|
install -c ${S}/build-aux/depcomp ${D}${target_datadir}/libtool/build-aux/
|
|
install -c ${S}/build-aux/install-sh ${D}${target_datadir}/libtool/build-aux/
|
|
install -c ${S}/build-aux/missing ${D}${target_datadir}/libtool/build-aux/
|
|
install -c -m 0644 ${S}/build-aux/ltmain.sh ${D}${target_datadir}/libtool/build-aux/
|
|
install -c -m 0644 ${S}/m4/*.m4 ${D}${target_datadir}/aclocal/
|
|
}
|
|
|
|
SYSROOT_DIRS += "${bindir_crossscripts} ${target_datadir}"
|
|
|
|
SSTATE_SCAN_FILES += "libtoolize *-libtool"
|