ccache: use local-cc flag instead of manually setting CC

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2022-12-01 14:31:27 +01:00
parent 8eb0080e8c
commit 88b3ca8f7e

View File

@ -10,14 +10,10 @@ PKG_SITE="https://ccache.dev/download.html"
PKG_URL="https://github.com/ccache/ccache/releases/download/v${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.xz" PKG_URL="https://github.com/ccache/ccache/releases/download/v${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.xz"
PKG_DEPENDS_HOST="make:host" PKG_DEPENDS_HOST="make:host"
PKG_LONGDESC="A compiler cache to speed up re-compilation of C/C++ code by caching." PKG_LONGDESC="A compiler cache to speed up re-compilation of C/C++ code by caching."
PKG_BUILD_FLAGS="+local-cc"
PKG_CONFIGURE_OPTS_HOST="--with-bundled-zlib" PKG_CONFIGURE_OPTS_HOST="--with-bundled-zlib"
pre_configure_host() {
export CC=${LOCAL_CC}
export CXX=${LOCAL_CXX}
}
post_makeinstall_host() { post_makeinstall_host() {
# setup ccache # setup ccache
if [ -z "${CCACHE_DISABLE}" ]; then if [ -z "${CCACHE_DISABLE}" ]; then
@ -26,14 +22,14 @@ post_makeinstall_host() {
cat > ${TOOLCHAIN}/bin/host-gcc <<EOF cat > ${TOOLCHAIN}/bin/host-gcc <<EOF
#!/bin/sh #!/bin/sh
${TOOLCHAIN}/bin/ccache ${CC} "\$@" ${TOOLCHAIN}/bin/ccache ${LOCAL_CC} "\$@"
EOF EOF
chmod +x ${TOOLCHAIN}/bin/host-gcc chmod +x ${TOOLCHAIN}/bin/host-gcc
cat > ${TOOLCHAIN}/bin/host-g++ <<EOF cat > ${TOOLCHAIN}/bin/host-g++ <<EOF
#!/bin/sh #!/bin/sh
${TOOLCHAIN}/bin/ccache ${CXX} "\$@" ${TOOLCHAIN}/bin/ccache ${LOCAL_CXX} "\$@"
EOF EOF
chmod +x ${TOOLCHAIN}/bin/host-g++ chmod +x ${TOOLCHAIN}/bin/host-g++