From 1c9d9768e2920fd95535d13369b8e7509e626939 Mon Sep 17 00:00:00 2001 From: Guy David Date: Fri, 18 Jul 2025 14:31:18 +0300 Subject: [PATCH] [Support] Use non-system include for SipHash.h A regular include may not search the system include path. --- llvm/lib/Support/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Support/CMakeLists.txt b/llvm/lib/Support/CMakeLists.txt index a579eaf7d953d..10b6101d73277 100644 --- a/llvm/lib/Support/CMakeLists.txt +++ b/llvm/lib/Support/CMakeLists.txt @@ -380,7 +380,7 @@ if(LLVM_WITH_Z3) ) endif() -target_include_directories(LLVMSupport SYSTEM +target_include_directories(LLVMSupport PRIVATE ${LLVM_THIRD_PARTY_DIR}/siphash/include - ) +)