Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libsyclinterface/cmake/modules/FindIntelSyclCompiler.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ if(${clangxx_result} MATCHES "0")
MATH(EXPR IDX "${IDX}+1")
endforeach()
list(GET IntelSyclCompiler_VERSION_LIST 0 VERSION_STRING)
if("${VERSION_STRING}" MATCHES "Intel SYCL compiler Nightly")
# Handle nightly build version string
list(GET IntelSyclCompiler_VERSION_LIST 1 VERSION_STRING)
endif()

# Get the dpcpp version
string(REGEX MATCH
Expand Down
Loading