Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/root-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ jobs:
- image: alma10
is_special: true
property: "clang Ninja"
overrides: ["CMAKE_C_COMPILER=clang", "CMAKE_CXX_COMPILER=clang++"]
overrides: ["CMAKE_C_COMPILER=clang", "CMAKE_CXX_COMPILER=clang++", "CMAKE_CXX_STANDARD=23", "libcxx=ON"]
cmake_generator: Ninja
# Fedora Rawhide with Python debug build
- image: rawhide
Expand Down
2 changes: 1 addition & 1 deletion cmake/modules/SearchInstalledSoftware.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2211,7 +2211,7 @@ if(NOT ROOT_HAVE_NATIVE_CXX_FILESYSTEM)
set(CMAKE_REQUIRED_LIBRARIES stdc++fs)
check_cxx_source_compiles("${_filesystem_source}" ROOT_NEED_STDCXXFS)
if(NOT ROOT_NEED_STDCXXFS)
message(FATAL_ERROR "Could not determine how to use C++17 <filesystem>")
message(WARNING "Could not determine how to use C++17 <filesystem>")
endif()
endif()

Expand Down
Loading