File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -414,8 +414,12 @@ option(SWIFT_ENABLE_EXPERIMENTAL_DIFFERENTIABLE_PROGRAMMING
414
414
"Enable experimental Swift differentiable programming features"
415
415
FALSE )
416
416
417
+ option (SWIFT_IMPLICIT_CONCURRENCY_IMPORT
418
+ "Implicitly import the Swift concurrency module"
419
+ TRUE )
420
+
417
421
option (SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
418
- "Enable experimental Swift concurrency model "
422
+ "Enable build of the Swift concurrency module "
419
423
FALSE )
420
424
421
425
option (SWIFT_ENABLE_EXPERIMENTAL_DISTRIBUTED
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ namespace swift {
284
284
285
285
// / Disable the implicit import of the _Concurrency module.
286
286
bool DisableImplicitConcurrencyModuleImport =
287
- !SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY ;
287
+ !SWIFT_IMPLICIT_CONCURRENCY_IMPORT ;
288
288
289
289
// / Should we check the target OSs of serialized modules to see that they're
290
290
// / new enough?
Original file line number Diff line number Diff line change 8
8
9
9
#cmakedefine HAVE_PROC_PID_RUSAGE 1
10
10
11
- #cmakedefine01 SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
11
+ #cmakedefine01 SWIFT_IMPLICIT_CONCURRENCY_IMPORT
12
12
13
13
#cmakedefine01 SWIFT_ENABLE_EXPERIMENTAL_DISTRIBUTED
14
14
Original file line number Diff line number Diff line change @@ -2418,7 +2418,7 @@ swift-enable-compatibility-overrides=0
2418
2418
swift-runtime-macho-no-dyld =1
2419
2419
swift-stdlib-single-threaded-runtime =1
2420
2420
swift-stdlib-os-versioning =0
2421
- extra-cmake-options =-DSWIFT_ENABLE_DISPATCH:BOOL =FALSE
2421
+ extra-cmake-options =-DSWIFT_ENABLE_DISPATCH:BOOL =FALSE -DSWIFT_IMPLICIT_CONCURRENCY_IMPORT: BOOL =FALSE
2422
2422
2423
2423
[preset: stdlib_S_standalone_minimal_macho_x86_64,build]
2424
2424
mixin-preset =
You can’t perform that action at this time.
0 commit comments