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 24
24
# We need compile command database in order to perform clang-tidy check. So,
25
25
# in order to perform configure step we need to setup llvm-dev package. This
26
26
# env variable used to specify desired version of it
27
- LLVM_VERSION : 19
27
+ LLVM_VERSION : 20
28
28
29
29
jobs :
30
30
clang-format-and-tidy :
Original file line number Diff line number Diff line change 32
32
- cron : 0 0 * * *
33
33
34
34
env :
35
- LLVM_VERSION : 19
35
+ LLVM_VERSION : 20
36
36
37
37
jobs :
38
38
build_and_test_linux :
Original file line number Diff line number Diff line change 29
29
- cron : 0 0 * * *
30
30
31
31
env :
32
- LLVM_VERSION : 19
32
+ LLVM_VERSION : 20
33
33
34
34
jobs :
35
35
build_and_test :
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.13.4 )
2
2
3
3
if (NOT DEFINED BASE_LLVM_VERSION )
4
- set (BASE_LLVM_VERSION 19 .0.0 )
4
+ set (BASE_LLVM_VERSION 20 .0.0 )
5
5
endif (NOT DEFINED BASE_LLVM_VERSION )
6
6
set (LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION} .0 )
7
7
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
30
30
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
31
31
sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main"
32
32
sudo apt-get update
33
- sudo apt-get install llvm-19 -dev llvm-19 -tools clang-19 libclang-19 -dev
33
+ sudo apt-get install llvm-20 -dev llvm-20 -tools clang-20 libclang-20 -dev
34
34
```
35
35
The installed version of LLVM will be used by default for out-of-tree build of the translator.
36
36
```
@@ -156,7 +156,7 @@ make test
156
156
```
157
157
This requires that the ` -DLLVM_SPIRV_INCLUDE_TESTS=ON ` argument is
158
158
passed to CMake during the build step. Additionally,
159
- ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-19 /build/utils/lit/lit.py" ` is
159
+ ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-20 /build/utils/lit/lit.py" ` is
160
160
needed when building with a pre-installed version of LLVM.
161
161
162
162
The translator test suite can be disabled by passing
You can’t perform that action at this time.
0 commit comments