From 52430657c3788073e5268af23ef5bac68904e81d Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 12 Jan 2024 16:34:17 +0200 Subject: [PATCH] Ccache still doesn't work with Clang. --- qbs/modules/ccache/ccache.qbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qbs/modules/ccache/ccache.qbs b/qbs/modules/ccache/ccache.qbs index 43c9613f6..141b00aec 100644 --- a/qbs/modules/ccache/ccache.qbs +++ b/qbs/modules/ccache/ccache.qbs @@ -56,8 +56,8 @@ Module { pchSupport = false; }else{ if (clangToolchain) { - if (Utilities.versionCompare(version, "4.6") < 0) { - console.info("ccache version < 4.6 is not compatible with Clang and precompiled headers."); + if (Utilities.versionCompare(version, "4.10") < 0) { + console.info("ccache version < 4.10 is not compatible with Clang and precompiled headers."); pchSupport = false; } } else {