Skip to content

Commit 44f68f6

Browse files
authored
Only support LLVM 16 (#168)
1 parent 089cf8d commit 44f68f6

File tree

4 files changed

+12
-337
lines changed

4 files changed

+12
-337
lines changed

CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ if (NOT DEFINED LLVM_VERSION_MAJOR)
1515
set (CMAKE_CXX_STANDARD 17)
1616
endif()
1717

18-
if(LLVM_VERSION_MAJOR LESS 8)
19-
message(FATAL_ERROR "This project isn't buldable with LLVM < 8.0.0.")
20-
elseif(LLVM_VERSION_MAJOR LESS 10)
21-
message(WARNING "Building with LLVM < 10.0.0 is at your own risk.")
18+
if(NOT LLVM_VERSION_MAJOR EQUAL 16)
19+
message(FATAL_ERROR "This project only supports LLVM 16. For older versions of LLVM please check https://github.com/JuliaHubOSS/llvm-cbe/tags")
2220
endif()
2321

2422
add_subdirectory(lib)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This LLVM C backend has been resurrected by Julia Computing with various improve
66
Installation instructions
77
=========================
88

9-
This version of the LLVM C backend works with LLVM 10.0 and 16.0, other version of LLVM may work but are untested.
9+
This version of the LLVM C backend works with LLVM 16, for older versions please check the [tags](https://github.com/JuliaHubOSS/llvm-cbe/tags).
1010

1111
Step 1: Installing LLVM
1212
=======================

0 commit comments

Comments
 (0)