From d3cf9ea7aa2c773531b4720a2d0030d258e2bdb1 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Tue, 27 Sep 2016 18:08:40 +0000 Subject: [PATCH] Improve CMake output of host and target triple Summary: The previous output was confusing as it would output "Taget triple: x86_64-unknown-linux-gnu" even when LLVM_HOST_TRIPLE or LLVM_DEFAULT_TARGET_TRIPLE were set on the CMake command line Patch by: Alex Richardson! Reviewers: beanz Subscribers: Eugene.Zelenko Differential Revision: https://reviews.llvm.org/D17067 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282516 91177308-0d34-0410-b5e6-96231b3b80d8 --- CMakeLists.txt | 2 ++ cmake/modules/GetHostTriple.cmake | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d808664c1e..e6fac3249ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -514,6 +514,8 @@ list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD) set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING "Default target for which LLVM will generate code." ) set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}") +message(STATUS "LLVM host triple: ${LLVM_HOST_TRIPLE}") +message(STATUS "LLVM default target triple: ${LLVM_DEFAULT_TARGET_TRIPLE}") include(HandleLLVMOptions) diff --git a/cmake/modules/GetHostTriple.cmake b/cmake/modules/GetHostTriple.cmake index 5de710c7ede..0cad1db4eff 100644 --- a/cmake/modules/GetHostTriple.cmake +++ b/cmake/modules/GetHostTriple.cmake @@ -26,5 +26,4 @@ function( get_host_triple var ) set( value ${TT_OUT} ) endif( MSVC ) set( ${var} ${value} PARENT_SCOPE ) - message(STATUS "Target triple: ${value}") endfunction( get_host_triple var ) -- 2.50.1