Skip to content

Commit

Permalink
Permit llvm 15 on windows (#7744)
Browse files Browse the repository at this point in the history
Our build instructions for windows are currently broken, because vcpkg
is still on llvm 15. This PR unbreaks them. Re-enabling any testing of
llvm 15 to be discussed.
  • Loading branch information
abadams authored Aug 7, 2023
1 parent 25028cd commit af56605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dependencies/llvm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
message(STATUS "Using ClangConfig.cmake in: ${Clang_DIR}")

if (LLVM_PACKAGE_VERSION VERSION_LESS 16.0)
message(FATAL_ERROR "LLVM version must be 16.0 or newer")
if (LLVM_PACKAGE_VERSION VERSION_LESS 15.0)
message(FATAL_ERROR "LLVM version must be 15.0 or newer")
endif ()

if (LLVM_PACKAGE_VERSION VERSION_GREATER 18.0)
Expand Down

0 comments on commit af56605

Please sign in to comment.