Fix CMake reporting of target triple.
authorDaniel Dunbar <daniel@zuster.org>
Sat, 7 Nov 2009 23:52:27 +0000 (23:52 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 7 Nov 2009 23:52:27 +0000 (23:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86419 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/config-ix.cmake
cmake/modules/GetTargetTriple.cmake

index f8d242420fd2935642d600418efefc219ba8093a..dc57a1340366ada66026b8f4567931ea3700dfa4 100755 (executable)
@@ -147,7 +147,6 @@ endif()
 
 include(GetTargetTriple)
 get_target_triple(LLVM_HOSTTRIPLE)
-message(STATUS "LLVM_HOSTTRIPLE: ${LLVM_HOSTTRIPLE}")
 
 # FIXME: We don't distinguish the target and the host. :(
 set(TARGET_TRIPLE "${LLVM_HOSTTRIPLE}")
index 87262add59d3a5d35e70349b57d949ef1c5eeffe..ac0c009242666c1db1e60bd34dabf66a38eda2ec 100644 (file)
@@ -4,12 +4,12 @@
 function( get_target_triple var )
   if( MSVC )
     if( CMAKE_CL_64 )
-      set( ${var} "x86_64-pc-win32" PARENT_SCOPE )
+      set( value "x86_64-pc-win32" )
     else()
-      set( ${var} "i686-pc-win32" PARENT_SCOPE )
+      set( value "i686-pc-win32" )
     endif()
   elseif( MINGW AND NOT MSYS )
-    set( ${var} "i686-pc-mingw32" PARENT_SCOPE )
+    set( value "i686-pc-mingw32" )
   else( MSVC )
     set(config_guess ${LLVM_MAIN_SRC_DIR}/autoconf/config.guess)
     execute_process(COMMAND sh ${config_guess}
@@ -19,7 +19,8 @@ function( get_target_triple var )
     if( NOT TT_RV EQUAL 0 )
       message(FATAL_ERROR "Failed to execute ${config_guess}")
     endif( NOT TT_RV EQUAL 0 )
-    set( ${var} ${TT_OUT} PARENT_SCOPE )
-    message(STATUS "Target triple: ${${var}}")
+    set( value ${TT_OUT} )
   endif( MSVC )
+  set( ${var} ${value} PARENT_SCOPE )
+  message(STATUS "Target triple: ${value}")
 endfunction( get_target_triple var )