1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[CMake] Pass Clang defaults to runtimes builds

This enables the use of Clang default options from runtimes CMake files.

Differential Revision: https://reviews.llvm.org/D47168

llvm-svn: 332923
This commit is contained in:
Petr Hosek 2018-05-22 00:43:04 +00:00
parent 6ca90c97f9
commit ff6d56ed90

View File

@ -252,6 +252,7 @@ else() # if this is included from LLVM's CMake
-DCMAKE_C_COMPILER_WORKS=ON
-DCMAKE_ASM_COMPILER_WORKS=ON
PASSTHROUGH_PREFIXES COMPILER_RT
CLANG_DEFAULT
USE_TOOLCHAIN
${EXTRA_ARGS})
endfunction()
@ -283,6 +284,7 @@ else() # if this is included from LLVM's CMake
-DCMAKE_ASM_COMPILER_WORKS=ON
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON
${${target}_extra_args}
PASSTHROUGH_PREFIXES CLANG_DEFAULT
TOOLCHAIN_TOOLS clang lld llvm-ar llvm-ranlib
USE_TOOLCHAIN
${EXTRA_ARGS})
@ -376,6 +378,7 @@ else() # if this is included from LLVM's CMake
-DCMAKE_CXX_COMPILER_WORKS=ON
-DCMAKE_ASM_COMPILER_WORKS=ON
PASSTHROUGH_PREFIXES LLVM_ENABLE_RUNTIMES
CLANG_DEFAULT
${ARG_PREFIXES}
EXTRA_TARGETS ${extra_targets}
${test_targets}
@ -459,6 +462,7 @@ else() # if this is included from LLVM's CMake
-DLLVM_RUNTIMES_TARGET=${name}
${${name}_extra_args}
PASSTHROUGH_PREFIXES LLVM_ENABLE_RUNTIMES
CLANG_DEFAULT
TOOLCHAIN_TOOLS clang lld llvm-ar llvm-ranlib
EXTRA_TARGETS ${${name}_extra_targets}
${${name}_test_targets}