We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b0bfd6 commit b4097f7Copy full SHA for b4097f7
libsyclinterface/cmake/modules/FindIntelSyclCompiler.cmake
@@ -100,6 +100,10 @@ if(${clangxx_result} MATCHES "0")
100
MATH(EXPR IDX "${IDX}+1")
101
endforeach()
102
list(GET IntelSyclCompiler_VERSION_LIST 0 VERSION_STRING)
103
+ if(VERSION_STRING MATCHES "Intel SYCL compiler Nightly [0-9]{4}-[0-9]{2}-[0-9]{2} build based on:")
104
+ # Handle nightly build version string
105
+ list(GET IntelSyclCompiler_VERSION_LIST 1 VERSION_STRING)
106
+ endif()
107
108
# Get the dpcpp version
109
string(REGEX MATCH
0 commit comments