[flang] [llvm] [CMake] Fix using precompiled headers with ccache (PR #131397)

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 09:35:29 PDT 2025


================
@@ -275,30 +275,47 @@ set(LLVM_CCACHE_BUILD OFF CACHE BOOL "Set to ON for a ccache enabled build")
 if(LLVM_CCACHE_BUILD)
   find_program(CCACHE_PROGRAM ccache)
   if(CCACHE_PROGRAM)
+    # ccache --version example output: "ccache version 4.9.1\n(..)"
+    execute_process(COMMAND ${CCACHE_PROGRAM} --version OUTPUT_VARIABLE CCACHE_VERSION_STR)
+    # Strip the prefix before the version number, taking some extra characters
+    string(SUBSTRING "${CCACHE_VERSION_STR}" 15 10 CCACHE_VERSION_STR)
----------------
petrhosek wrote:

Since the version has a fixed format, could we use regular expression instead?

https://github.com/llvm/llvm-project/pull/131397


More information about the llvm-commits mailing list