Skip to content

Commit c388946

Browse files
authored
Merge pull request #23908 from dcci/lldb-me
[lldb] Switch PR testing and build to use CMake by default.
2 parents bfb609f + 5b5041d commit c388946

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

utils/build-presets.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ assertions
528528
test
529529
validation-test
530530

531-
llvm-targets-to-build=X86;AArch64;PowerPC
531+
llvm-targets-to-build=X86;ARM;AArch64;PowerPC
532532

533533
# Set the vendor to apple
534534
compiler-vendor=apple

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ KNOWN_SETTINGS=(
7474
swift-stdlib-enable-assertions "1" "enable assertions in Swift"
7575
swift-stdlib-use-nonatomic-rc "0" "build the Swift stdlib and overlays with nonatomic reference count operations enabled"
7676
lldb-build-type "Debug" "the CMake build variant for LLDB"
77-
lldb-build-with-xcode "1" "Use xcodebuild to build LLDB, instead of CMake"
77+
lldb-build-with-xcode "0" "Use xcodebuild to build LLDB, instead of CMake"
7878
llbuild-build-type "Debug" "the CMake build variant for llbuild"
7979
foundation-build-type "Debug" "the build variant for Foundation"
8080
libdispatch-build-type "Debug" "the build variant for libdispatch"

utils/build_swift/driver_arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _apply_default_arguments(args):
7777
args.lldb_build_variant = args.build_variant
7878

7979
if args.lldb_build_with_xcode is None:
80-
args.lldb_build_with_xcode = '1'
80+
args.lldb_build_with_xcode = '0'
8181

8282
if args.foundation_build_variant is None:
8383
args.foundation_build_variant = args.build_variant

utils/build_swift/tests/expected_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
'llbuild_assertions': True,
153153
'lldb_assertions': True,
154154
'lldb_build_variant': 'Debug',
155-
'lldb_build_with_xcode': '1',
155+
'lldb_build_with_xcode': '0',
156156
'llvm_assertions': True,
157157
'llvm_build_variant': 'Debug',
158158
'llvm_max_parallel_lto_link_jobs':

0 commit comments

Comments
 (0)