forked from OSchip/llvm-project
[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:
parent
a435d73349
commit
0681d9e6d9
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue