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 bed074bCopy full SHA for bed074b
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")
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