Display linker messages in mode STATUS to be consistent

This commit is contained in:
spectranator 2024-10-12 23:22:31 +00:00
parent 15470284cf
commit 783e8952e0

View File

@ -706,10 +706,10 @@ if (YUZU_USE_FASTER_LD AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
find_program(MOLD mold)
if (MOLD AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12.1")
message(NOTICE "Selecting mold as linker")
message(STATUS "Selecting mold as linker")
add_link_options("-fuse-ld=mold")
elseif (LLD)
message(NOTICE "Selecting lld as linker")
message(STATUS "Selecting lld as linker")
add_link_options("-fuse-ld=lld")
endif()
endif()