================
@@ -79,6 +79,64 @@ function(llvm_update_compile_flags name)
target_compile_definitions(${name} PRIVATE ${LLVM_COMPILE_DEFINITIONS})
endfunction()
+function(llvm_update_pch name)
+ if(LLVM_REQUIRES_RTTI OR LLVM_REQUIRES_EH)
+ # Non-default RTTI/EH results in incompatible flags, precluding PCH reuse.
+ set(ARG_DISABLE_PCH_REUSE ON)
+ endif()
+
+ if(NOT ARG_PRECOMPILE_HEADERS)
+ # We only use PCH for C++. For targets with C source files that re-use a
+ # precompiled headers from another target, CMake complains that there is no
+ # PCH for C. There doesn't seem to be a disable PCH reuse for C files only,
+ # so disable PCH reuse for targets that contain C sources.
+ get_property(srcs TARGET ${name} PROPERTY SOURCES)
+ foreach(src ${srcs})
+ get_filename_component(extension ${src} EXT)
+ if(extension STREQUAL ".c")
+ message(DEBUG "Disable PCH for ${name} due to C file ${src}")
----------------
Teemperor wrote:
That's also what is breaking the bot IIUC, but I'm still running a build
locally to test it.
https://github.com/llvm/llvm-project/pull/176420
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits