[compiler-rt] r245453 - [cmake darwin] Use a STATUS message type. Explain where the arches came from.
Filipe Cabecinhas via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 19 09:23:20 PDT 2015
Author: filcab
Date: Wed Aug 19 11:23:19 2015
New Revision: 245453
URL: http://llvm.org/viewvc/llvm-project?rev=245453&view=rev
Log:
[cmake darwin] Use a STATUS message type. Explain where the arches came from.
Modified:
compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake
Modified: compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake?rev=245453&r1=245452&r2=245453&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake Wed Aug 19 11:23:19 2015
@@ -32,7 +32,7 @@ function(darwin_get_toolchain_supported_
ARCHES_MATCHED "${LINKER_VERSION}")
if(ARCHES_MATCHED)
set(ARCHES "${CMAKE_MATCH_1}")
- message("Matched ARCHES: ${ARCHES}")
+ message(STATUS "Got ld supported ARCHES: ${ARCHES}")
string(REPLACE " " ";" ARCHES ${ARCHES})
else()
# If auto-detecting fails, fall back to a default set
More information about the llvm-commits
mailing list