Skip to content

Commit 37518e8

Browse files
svenvhdbudanov-cmplr
authored andcommitted
Update LLVM version from 15 to 16
Original commit: KhronosGroup/SPIRV-LLVM-Translator@7aa1fd2
1 parent c9a2b33 commit 37518e8

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Intel LLVM-based projects:
55

66
- [oneAPI DPC++ compiler](#oneapi-dpc-compiler)
77
- [Late-outline OpenMP and OpenMP Offload](#late-outline-openmp-and-openmp-offload)
8+
sudo apt-get install llvm-16-dev llvm-16-tools clang-16 libclang-16-dev
9+
`-DLLVM_EXTERNAL_LIT="/usr/lib/llvm-16/build/utils/lit/lit.py"` is
810

911
## oneAPI DPC++ compiler
1012

llvm-spirv/.github/workflows/check-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
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: 15
27+
LLVM_VERSION: 16
2828

2929
jobs:
3030
clang-format-and-tidy:

llvm-spirv/.github/workflows/check-in-tree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on:
3232
- cron: 0 0 * * *
3333

3434
env:
35-
LLVM_VERSION: 15
35+
LLVM_VERSION: 16
3636

3737
jobs:
3838
build_and_test_linux:

llvm-spirv/.github/workflows/check-out-of-tree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
- cron: 0 0 * * *
3030

3131
env:
32-
LLVM_VERSION: 15
32+
LLVM_VERSION: 16
3333

3434
jobs:
3535
build_and_test:

llvm-spirv/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ compiler:
4242
env:
4343
global:
4444
- MAKEFLAGS="-j2"
45-
- LLVM_VERSION=15
45+
- LLVM_VERSION=16
4646
matrix:
4747
- BUILD_TYPE=Release BUILD_EXTERNAL=1 SHARED_LIBS=ON MAKE_TARGETS="" MAKE_TEST_TARGET="test"
4848
- BUILD_TYPE=Debug BUILD_EXTERNAL=1 SHARED_LIBS=ON MAKE_TARGETS="" MAKE_TEST_TARGET="test"

llvm-spirv/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13.4)
22

33
if(NOT DEFINED BASE_LLVM_VERSION)
4-
set (BASE_LLVM_VERSION 15.0.0)
4+
set (BASE_LLVM_VERSION 16.0.0)
55
endif(NOT DEFINED BASE_LLVM_VERSION)
66
set(LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION}.0)
77

0 commit comments

Comments
 (0)