Skip to content

Commit 5b5041d

Browse files
author
Davide Italiano
committed
[build-script] Fix defaults and unittests.
1 parent 5dec537 commit 5b5041d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

utils/build_swift/driver_arguments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,11 +629,11 @@ def create_argument_parser():
629629
help='build the Debug variant of LLDB')
630630

631631
option('--lldb-build-with-xcode', store('lldb_build_with_xcode'),
632-
const='0',
632+
const='1',
633633
help='build LLDB using xcodebuild, if possible')
634634

635635
option('--lldb-build-with-cmake', store('lldb_build_with_xcode'),
636-
const='1',
636+
const='0',
637637
help='build LLDB using CMake')
638638

639639
option('--debug-cmark', store('cmark_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)