File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -628,8 +628,6 @@ function set_build_options_for_host() {
628
628
-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=" ${cmake_osx_deployment_target} "
629
629
-DCMAKE_OSX_SYSROOT:PATH=" $( xcrun --sdk ${xcrun_sdk_name} --show-sdk-path) "
630
630
-DLLVM_ENABLE_LIBCXX:BOOL=TRUE
631
- -DLLVM_TOOL_COMPILER_RT_BUILD:BOOL=" $( false_true ${SKIP_BUILD_COMPILER_RT} ) "
632
- -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=" $( false_true ${SKIP_BUILD_COMPILER_RT} ) "
633
631
-DCOMPILER_RT_ENABLE_IOS:BOOL=FALSE
634
632
-DCOMPILER_RT_ENABLE_WATCHOS:BOOL=FALSE
635
633
-DCOMPILER_RT_ENABLE_TVOS:BOOL=FALSE
@@ -675,6 +673,11 @@ function set_build_options_for_host() {
675
673
;;
676
674
esac
677
675
676
+ llvm_cmake_options+=(
677
+ -DLLVM_TOOL_COMPILER_RT_BUILD:BOOL=" $( false_true ${SKIP_BUILD_COMPILER_RT} ) "
678
+ -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=" $( false_true ${SKIP_BUILD_COMPILER_RT} ) "
679
+ )
680
+
678
681
if [[ " ${llvm_target_arch} " ]] ; then
679
682
llvm_cmake_options+=(
680
683
-DLLVM_TARGET_ARCH=" ${llvm_target_arch} "
You can’t perform that action at this time.
0 commit comments