[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:30:55 PDT 2025
================
@@ -436,6 +436,10 @@ if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fno-semantic-interposition")
endif()
+ # gcc requires this flag in order for precompiled headers to work with ccache
+ if (NOT CMAKE_CXX_COMPILER_ID MATCHES Clang AND NOT CMAKE_DISABLE_PRECOMPILE_HEADERS)
----------------
petrhosek wrote:
Since this flag is required by GCC, can we test that the compiler is GCC?
```suggestion
# GCC requires this flag in order for precompiled headers to work with ccache
if (CMAKE_CXX_COMPILER_ID MATCHES GCC AND NOT CMAKE_DISABLE_PRECOMPILE_HEADERS)
```
https://github.com/llvm/llvm-project/pull/131397
More information about the llvm-commits
mailing list