From 9c503cf6fd5f7c8f6f5889bc4b580205fd23f648 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Wed, 26 Jul 2023 01:19:06 +0200 Subject: [PATCH] Update to handle LLVM 18 part 2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18d8f271e..9bdc72f25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ if (NOT WIN32) find_package(CURL) endif() if (NOT C3_LLVM_VERSION STREQUAL "auto") - if (${C3_LLVM_VERSION} VERSION_LESS 15 OR ${C3_LLVM_VERSION} VERSION_GREATER 17) + if (${C3_LLVM_VERSION} VERSION_LESS 15 OR ${C3_LLVM_VERSION} VERSION_GREATER 18) message(FATAL_ERROR "LLVM ${C3_LLVM_VERSION} is not supported!") endif() endif()