Skip to content

Commit d50259c

Browse files
committed
Bump LLVM version requirement to 20.1
1 parent f5e68b0 commit d50259c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/premerge.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches: [ "main" ]
66

77
env:
8-
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
98
BUILD_TYPE: Release
109

1110
jobs:

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ target_link_libraries(python-cpp
298298
)
299299

300300
# LLVM backend
301-
find_package(LLVM CONFIG 20.0)
301+
find_package(LLVM CONFIG 20.1)
302302
if(ENABLE_LLVM_BACKEND AND NOT LLVM_FOUND)
303303
message(FATAL_ERROR "Could not find LLVM in the local environment")
304304
elseif(ENABLE_LLVM_BACKEND AND LLVM_FOUND)

src/executable/mlir/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
find_package(LLVM 20.0 REQUIRED CONFIG)
1+
find_package(LLVM 20.1 REQUIRED CONFIG)
22
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
33

44
find_package(MLIR CONFIG REQUIRED

0 commit comments

Comments
 (0)