Skip to content

Commit 3a599e9

Browse files
committed
[Build] Disable building the _Distributed library by default.
1 parent 492ecea commit 3a599e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utils/build_swift/build_swift/driver_arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@ def create_argument_parser():
11881188
help='Enable experimental Swift concurrency model.')
11891189

11901190
option('--enable-experimental-distributed', toggle_true,
1191-
default=True,
1191+
default=False,
11921192
help='Enable experimental Swift distributed actors.')
11931193

11941194
option('--enable-experimental-string-processing', toggle_true,

utils/build_swift/tests/expected_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
'enable_asan': False,
145145
'enable_experimental_differentiable_programming': True,
146146
'enable_experimental_concurrency': True,
147-
'enable_experimental_distributed': True,
147+
'enable_experimental_distributed': False,
148148
'enable_experimental_string_processing': True,
149149
'enable_lsan': False,
150150
'enable_sanitize_coverage': False,

0 commit comments

Comments
 (0)