[gimp/wip/Jehan/native-win64-build] build: drop ccache entirely.



commit 3948ded00e85cb0b6a54f8f5cf9e0aead4a4fa77
Author: Jehan <jehan girinstud io>
Date:   Tue May 4 23:27:37 2021 +0200

    build: drop ccache entirely.
    
    It doesn't look our cache is actually reused. The build ends with the
    message:
    
    > No URL provided, cache will be not uploaded to shared cache server.
    > Cache will be stored only locally.
    
    Let's just see with no ccache at all.

 build/windows/build-msys2.sh | 11 -----------
 1 file changed, 11 deletions(-)
---
diff --git a/build/windows/build-msys2.sh b/build/windows/build-msys2.sh
index 90a66adee5..ae3c401291 100644
--- a/build/windows/build-msys2.sh
+++ b/build/windows/build-msys2.sh
@@ -31,7 +31,6 @@ pacman --noconfirm -Suy
 pacman --noconfirm -S --needed \
     base-devel \
     mingw-w64-$MSYS2_ARCH-toolchain \
-    mingw-w64-$MSYS2_ARCH-ccache \
     mingw-w64-$MSYS2_ARCH-pkg-config \
     mingw-w64-$MSYS2_ARCH-meson \
     \
@@ -102,16 +101,6 @@ cd ../..
 
 # Build
 
-mkdir -p _ccache
-export CCACHE_BASEDIR="$(pwd)"
-export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
-export CC="ccache gcc"
-
-ccache --zero-stats
-ccache --show-stats
-
 ./autogen.sh --prefix="${GIMP_PREFIX}"
 make -j4
 make install
-
-ccache --show-stats


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]