Improve status messages about CXX11-ABI

This commit is contained in:
Martchus 2023-11-22 12:54:04 +01:00
parent cc6576c417
commit 05570c5c71
1 changed files with 2 additions and 2 deletions

View File

@ -260,9 +260,9 @@ endif ()
option(FORCE_OLD_ABI "specifies whether usage of libstdc++'s old ABI should be forced" OFF)
if (FORCE_OLD_ABI)
list(APPEND META_PRIVATE_COMPILE_DEFINITIONS _GLIBCXX_USE_CXX11_ABI=0)
message(STATUS "Forcing usage of old CXX11 ABI of libstdc++.")
message(STATUS "Forcing usage of old CXX11-ABI of libstdc++ (has no effect when a different standard library is used).")
else ()
message(STATUS "Using default CXX11 ABI of libstdc++ (not forcing old CX11 ABI).")
message(STATUS "Using default CXX11-ABI (not forcing old CXX11-ABI of libstdc++).")
endif ()
# enable debug-only code when doing a debug build