File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2424 # We need compile command database in order to perform clang-tidy check. So,
2525 # in order to perform configure step we need to setup llvm-dev package. This
2626 # env variable used to specify desired version of it
27- LLVM_VERSION : 20
27+ LLVM_VERSION : 21
2828
2929jobs :
3030 clang-format-and-tidy :
Original file line number Diff line number Diff line change 3232 - cron : 0 0 * * *
3333
3434env :
35- LLVM_VERSION : 20
35+ LLVM_VERSION : 21
3636
3737jobs :
3838 build_and_test_linux :
Original file line number Diff line number Diff line change 2929 - cron : 0 0 * * *
3030
3131env :
32- LLVM_VERSION : 20
32+ LLVM_VERSION : 21
3333
3434jobs :
3535 build_and_test :
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.13.4)
22
33if (NOT DEFINED BASE_LLVM_VERSION)
4- set (BASE_LLVM_VERSION 20 .0.0)
4+ set (BASE_LLVM_VERSION 21 .0.0)
55endif (NOT DEFINED BASE_LLVM_VERSION)
66set (LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION} .0)
77
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ The translator can be built with the latest(nightly) package of LLVM. For Ubuntu
3030wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
3131sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main"
3232sudo apt-get update
33- sudo apt-get install llvm-20 -dev llvm-20 -tools clang-20 libclang-20 -dev
33+ sudo apt-get install llvm-21 -dev llvm-21 -tools clang-21 libclang-21 -dev
3434```
3535The installed version of LLVM will be used by default for out-of-tree build of the translator.
3636```
@@ -157,7 +157,7 @@ make test
157157```
158158This requires that the ` -DLLVM_SPIRV_INCLUDE_TESTS=ON ` argument is
159159passed to CMake during the build step. Additionally,
160- ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-20 /build/utils/lit/lit.py" ` is
160+ ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-21 /build/utils/lit/lit.py" ` is
161161needed when building with a pre-installed version of LLVM.
162162
163163The translator test suite can be disabled by passing
You can’t perform that action at this time.
0 commit comments