File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ assertions
528
528
test
529
529
validation-test
530
530
531
- llvm-targets-to-build =X86; ARM; AArch64;PowerPC
531
+ llvm-targets-to-build =X86; AArch64;PowerPC
532
532
533
533
# Set the vendor to apple
534
534
compiler-vendor =apple
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ KNOWN_SETTINGS=(
74
74
swift-stdlib-enable-assertions " 1" " enable assertions in Swift"
75
75
swift-stdlib-use-nonatomic-rc " 0" " build the Swift stdlib and overlays with nonatomic reference count operations enabled"
76
76
lldb-build-type " Debug" " the CMake build variant for LLDB"
77
- lldb-build-with-xcode " 0 " " Use xcodebuild to build LLDB, instead of CMake"
77
+ lldb-build-with-xcode " 1 " " Use xcodebuild to build LLDB, instead of CMake"
78
78
llbuild-build-type " Debug" " the CMake build variant for llbuild"
79
79
foundation-build-type " Debug" " the build variant for Foundation"
80
80
libdispatch-build-type " Debug" " the build variant for libdispatch"
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def _apply_default_arguments(args):
77
77
args .lldb_build_variant = args .build_variant
78
78
79
79
if args .lldb_build_with_xcode is None :
80
- args .lldb_build_with_xcode = '0 '
80
+ args .lldb_build_with_xcode = '1 '
81
81
82
82
if args .foundation_build_variant is None :
83
83
args .foundation_build_variant = args .build_variant
@@ -629,11 +629,11 @@ def create_argument_parser():
629
629
help = 'build the Debug variant of LLDB' )
630
630
631
631
option ('--lldb-build-with-xcode' , store ('lldb_build_with_xcode' ),
632
- const = '0 ' ,
632
+ const = '1 ' ,
633
633
help = 'build LLDB using xcodebuild, if possible' )
634
634
635
635
option ('--lldb-build-with-cmake' , store ('lldb_build_with_xcode' ),
636
- const = '1 ' ,
636
+ const = '0 ' ,
637
637
help = 'build LLDB using CMake' )
638
638
639
639
option ('--debug-cmark' , store ('cmark_build_variant' ),
You can’t perform that action at this time.
0 commit comments