Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-09-13 11:55:36 +0300
committerSergey Sharybin <sergey@blender.org>2022-09-13 11:55:36 +0300
commit8e03df9bbc22baaf9d538e01c44f6857a8c9b43a (patch)
tree2809753f2b543dd819caea092054fe6c433e177f
parent602cca671e6905bd9942513d0c99cf7f03cce5ee (diff)
Fix oneAPI compilation on modern Linux and CentOS 7 libraries
-rw-r--r--intern/cycles/kernel/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/CMakeLists.txt b/intern/cycles/kernel/CMakeLists.txt
index 6d84357b699..aa31335393f 100644
--- a/intern/cycles/kernel/CMakeLists.txt
+++ b/intern/cycles/kernel/CMakeLists.txt
@@ -793,7 +793,7 @@ if(WITH_CYCLES_DEVICE_ONEAPI)
if(UNIX AND NOT APPLE)
if(NOT WITH_CXX11_ABI)
check_library_exists(sycl
- _ZN2cl4sycl7handler22verifyUsedKernelBundleERKSs ${sycl_compiler_root}/../lib SYCL_NO_CXX11_ABI)
+ _ZN4sycl3_V17handler22verifyUsedKernelBundleERKSs ${sycl_compiler_root}/../lib SYCL_NO_CXX11_ABI)
if(SYCL_NO_CXX11_ABI)
list(APPEND sycl_compiler_flags -D_GLIBCXX_USE_CXX11_ABI=0)
endif()