GetTargetTriple.cmake: detect MinGW 64 bits.

llvm-svn: 116424
This commit is contained in:
Oscar Fuentes 2010-10-13 20:15:08 +00:00
parent 8f0bea85bf
commit 03ba7cb432

View File

@ -9,7 +9,11 @@ function( get_target_triple var )
set( value "i686-pc-win32" )
endif()
elseif( MINGW AND NOT MSYS )
set( value "i686-pc-mingw32" )
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
set( value "x86_64-w64-mingw32" )
else()
set( value "i686-pc-mingw32" )
endif()
else( MSVC )
set(config_guess ${LLVM_MAIN_SRC_DIR}/autoconf/config.guess)
execute_process(COMMAND sh ${config_guess}