We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db9c7b commit e7fa6bbCopy full SHA for e7fa6bb
src/CMakeLists.txt
@@ -654,6 +654,11 @@ endif ()
654
# core Halide headers.
655
target_precompile_headers(Halide PRIVATE Halide_pch.h)
656
657
+# Util.cpp implements run_with_large_stack(), which is sensitive to CMake's
658
+# forced-include PCH path and produces crashing helper binaries when compiled
659
+# with PCH enabled.
660
+set_source_files_properties(Util.cpp PROPERTIES SKIP_PRECOMPILE_HEADERS ON)
661
+
662
# LLVM sources live in their own object library so they can have a separate PCH.
663
add_library(Halide_LLVM_srcs OBJECT
664
CodeGen_ARM.cpp
0 commit comments