Fix error message if LTO does not available.

This commit is contained in:
Andrey Akhmichin 2024-02-10 00:45:10 +05:00
parent 28112bab77
commit 130a6aad6a
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ check_ipo_supported(RESULT HAVE_LTO OUTPUT LTO_ERROR)
if(HAVE_LTO)
message(STATUS "IPO / LTO enabled")
else()
message(STATUS "IPO / LTO not supported: <${LTO_ERROR}>")
message(STATUS "IPO / LTO not supported: ${LTO_ERROR}")
endif()
check_include_file("tgmath.h" HAVE_TGMATH_H)