From 0e5b7099e851d4f47129fdbb88a19a28eb4ad961 Mon Sep 17 00:00:00 2001 From: Harald Judt Date: Tue, 12 Mar 2024 09:18:12 +0100 Subject: [PATCH] CMakeLists.txt: Bump required LLVM version Signed-off-by: Harald Judt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b97f60d..e547852 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(c2ffi) set(SOURCE_ROOT ${CMAKE_CURRENT_SOURCE_DIR}) # Apparently the LLVM package doesn't support ranges -find_package(LLVM 16.0.0 CONFIG) +find_package(LLVM 17.0.0 CONFIG) find_package(Clang REQUIRED CONFIG) message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")