Skip to content

Commit 6362ef1

Browse files
authored
[CMake] Avoid build spam by switching to Debug message (llvm#69497)
This is primarily only useful when debugging. It's generally assumed that users will have their custom flags applied if it's specified in their CMake cache files. Addresses llvm#68393 (comment)
1 parent c7be4e6 commit 6362ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/cmake/modules/AddLLVM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ endmacro(add_llvm_tool_subdirectory)
15301530
15311531
macro(add_custom_linker_flags name)
15321532
if (LLVM_${name}_LINKER_FLAGS)
1533-
message(STATUS "Applying ${LLVM_${name}_LINKER_FLAGS} to ${name}")
1533+
message(DEBUG "Applying ${LLVM_${name}_LINKER_FLAGS} to ${name}")
15341534
target_link_options(${name} PRIVATE ${LLVM_${name}_LINKER_FLAGS})
15351535
endif()
15361536
endmacro()

0 commit comments

Comments
 (0)