Skip to content
Merged
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 cmake/options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ endif()
# Fix Clang complaining about the sized delete operator.
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM")
target_compile_options(${SVS_LIB} INTERFACE -fsized-deallocation)
# TODO: remove once eve releases with clang-20 support
if (CMAKE_CXX_COMPILER_VERSION GREATER_EQUAL 20.0)
target_compile_options(svs_compile_options INTERFACE -Wno-deprecated-literal-operator)
endif()
endif()

# Provide better diagnostics for broken templates.
Expand Down
Loading