mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
579e43a44a
triple. Assign to LLVM_HOSTTRIPLE so it figures in config.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58176 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
632 B
CMake
20 lines
632 B
CMake
# Returns the host triple.
|
|
# Invokes config.guess
|
|
|
|
function( get_target_triple var )
|
|
if( MSVC )
|
|
set( ${var} "i686-pc-win32" PARENT_SCOPE )
|
|
else( MSVC )
|
|
set(config_guess ${LLVM_MAIN_SRC_DIR}/autoconf/config.guess)
|
|
execute_process(COMMAND sh ${config_guess}
|
|
RESULT_VARIABLE TT_RV
|
|
OUTPUT_VARIABLE TT_OUT
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
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}}")
|
|
endif( MSVC )
|
|
endfunction( get_target_triple var )
|