Skip to content

Commit 0f579ba

Browse files
authored
[SYCL] Update DPCPP library major version (#6801)
1 parent 6647cfd commit 0f579ba

File tree

3 files changed

+4662
-4696
lines changed

3 files changed

+4662
-4696
lines changed

clang/lib/Driver/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif()
1818

1919
# This must be in sync with llvm/sycl/CMakeLists.txt.
2020
SET_SOURCE_FILES_PROPERTIES( ToolChains/MSVC.cpp ToolChains/Clang.cpp
21-
PROPERTIES COMPILE_DEFINITIONS SYCL_MAJOR_VERSION="5" )
21+
PROPERTIES COMPILE_DEFINITIONS SYCL_MAJOR_VERSION="6" )
2222

2323
add_clang_library(clangDriver
2424
Action.cpp

sycl/CMakeLists.txt

+3-5
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,10 @@ include(SYCLUtils)
2727

2828
# The change in SYCL_MAJOR_VERSION must be accompanied with the same update in
2929
# llvm/clang/lib/Driver/CMakeLists.txt.
30-
set(SYCL_MAJOR_VERSION 5)
31-
set(SYCL_MINOR_VERSION 7)
30+
set(SYCL_MAJOR_VERSION 6)
31+
set(SYCL_MINOR_VERSION 0)
3232
set(SYCL_PATCH_VERSION 0)
33-
# Don't forget to re-enable sycl_symbols_windows.dump once we leave ABI-breaking
34-
# window!
35-
set(SYCL_DEV_ABI_VERSION 18)
33+
set(SYCL_DEV_ABI_VERSION 0)
3634
if (SYCL_ADD_DEV_VERSION_POSTFIX)
3735
set(SYCL_VERSION_POSTFIX "-${SYCL_DEV_ABI_VERSION}")
3836
endif()

0 commit comments

Comments
 (0)