Skip to content

Commit

Permalink
Remove printf-family usage, part 1 + support for fmt 9
Browse files Browse the repository at this point in the history
Closes: #1391
  • Loading branch information
375gnu committed Aug 4, 2022
1 parent 073b28a commit 3ee1ed8
Show file tree
Hide file tree
Showing 52 changed files with 19,461 additions and 19,351 deletions.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Expand Up @@ -362,9 +362,13 @@ else()
add_definitions(-DNO_DEBUG -DEIGEN_NO_DEBUG)
if(NOT MSVC)
add_compile_options(
$<$<COMPILE_LANGUAGE:CXX>:-fno-rtti>
$<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions>
)
if(FMT_VERSION LESS 90000)
add_compile_options(
$<$<COMPILE_LANGUAGE:CXX>:-fno-rtti>
)
endif()
endif()
endif()

Expand Down

0 comments on commit 3ee1ed8

Please sign in to comment.