From b9ed07227832a10e5a18667d6c7cbdffd2018da7 Mon Sep 17 00:00:00 2001 From: BratishkaErik Date: Sun, 10 Jul 2022 18:03:22 +0600 Subject: [PATCH] CMakeLists.txt: set LLVM minimal version to 14 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d4366f0da..5f31c0b2b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,9 +104,9 @@ else() set(ZIG_USE_LLVM_CONFIG OFF CACHE BOOL "use llvm-config to find LLVM libraries") endif() -find_package(llvm 13) -find_package(clang 13) -find_package(lld 13) +find_package(llvm 14) +find_package(clang 14) +find_package(lld 14) if(ZIG_STATIC_ZLIB) list(REMOVE_ITEM LLVM_LIBRARIES "-lz")