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")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it make sense to update the libsyclinterface/cmake/modules/FindIntelSyclCompiler.cmake with the latest content from the recent 2025.3 release instead?

# Handle nightly build version string
list(GET IntelSyclCompiler_VERSION_LIST 1 VERSION_STRING)
endif()

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