From 05570c5c71d88df485588d30187d0e8c9ac6aa2a Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 22 Nov 2023 12:54:04 +0100 Subject: [PATCH] Improve status messages about CXX11-ABI --- cmake/modules/BasicConfig.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/BasicConfig.cmake b/cmake/modules/BasicConfig.cmake index ce3a013..6a9d65a 100644 --- a/cmake/modules/BasicConfig.cmake +++ b/cmake/modules/BasicConfig.cmake @@ -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