[gimp] build: remove calls to ccache in native Windows build.



commit 808b3aafd31255f13e0764fc5c5a33525cbbc0db
Author: Jehan <jehan girinstud io>
Date:   Sun Oct 17 16:51:19 2021 +0200

    build: remove calls to ccache in native Windows build.
    
    Anyway we disabled use of ccache in an earlier commit 2da70b3fb7 because
    of a bug in MSYS2's CPython. So there is no need to call these commands
    either. Also it seems to be breaking the 32-bit native Windows build
    (from CI log, I am unsure this is because of ccache, but the break
    happens just after running `ccache --zero-stats`).

 build/windows/gitlab-ci/build-gimp-msys2.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/build/windows/gitlab-ci/build-gimp-msys2.sh b/build/windows/gitlab-ci/build-gimp-msys2.sh
index 63990e3d52..989a7e9ee1 100644
--- a/build/windows/gitlab-ci/build-gimp-msys2.sh
+++ b/build/windows/gitlab-ci/build-gimp-msys2.sh
@@ -87,8 +87,8 @@ export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
 # See: https://github.com/msys2/MINGW-packages/issues/9677
 #export CC="ccache gcc"
 
-ccache --zero-stats
-ccache --show-stats
+#ccache --zero-stats
+#ccache --show-stats
 
 mkdir "_build${ARTIFACTS_SUFFIX}"
 cd "_build${ARTIFACTS_SUFFIX}"
@@ -105,7 +105,7 @@ make -j4
 make install
 cd ..
 
-ccache --show-stats
+#ccache --show-stats
 
 # XXX Moving back the prefix to be used as artifacts.
 mv "${GIMP_PREFIX}" .


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