File tree Expand file tree Collapse file tree 4 files changed +12
-337
lines changed Expand file tree Collapse file tree 4 files changed +12
-337
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,8 @@ if (NOT DEFINED LLVM_VERSION_MAJOR)
15
15
set (CMAKE_CXX_STANDARD 17 )
16
16
endif ()
17
17
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" )
22
20
endif ()
23
21
24
22
add_subdirectory (lib )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This LLVM C backend has been resurrected by Julia Computing with various improve
6
6
Installation instructions
7
7
=========================
8
8
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 ) .
10
10
11
11
Step 1: Installing LLVM
12
12
=======================
You can’t perform that action at this time.
0 commit comments