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 @@ -403,8 +403,12 @@ option(SWIFT_ENABLE_EXPERIMENTAL_DIFFERENTIABLE_PROGRAMMING
403
403
"Enable experimental Swift differentiable programming features"
404
404
FALSE )
405
405
406
+ option (SWIFT_IMPLICIT_CONCURRENCY_IMPORT
407
+ "Implicitly import the Swift concurrency module"
408
+ TRUE )
409
+
406
410
option (SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
407
- "Enable experimental Swift concurrency model "
411
+ "Enable build of the Swift concurrency module "
408
412
FALSE )
409
413
410
414
option (SWIFT_ENABLE_DISPATCH
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ namespace swift {
275
275
276
276
// / Disable the implicit import of the _Concurrency module.
277
277
bool DisableImplicitConcurrencyModuleImport =
278
- !SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY ;
278
+ !SWIFT_IMPLICIT_CONCURRENCY_IMPORT ;
279
279
280
280
// / Should we check the target OSs of serialized modules to see that they're
281
281
// / 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
#endif // SWIFT_CONFIG_H
Original file line number Diff line number Diff line change @@ -2395,7 +2395,7 @@ swift-enable-compatibility-overrides=0
2395
2395
swift-runtime-macho-no-dyld =1
2396
2396
swift-stdlib-single-threaded-runtime =1
2397
2397
swift-stdlib-os-versioning =0
2398
- extra-cmake-options =-DSWIFT_ENABLE_DISPATCH:BOOL =FALSE
2398
+ extra-cmake-options =-DSWIFT_ENABLE_DISPATCH:BOOL =FALSE -DSWIFT_IMPLICIT_CONCURRENCY_IMPORT: BOOL =FALSE
2399
2399
2400
2400
[preset: stdlib_S_standalone_minimal_macho_x86_64,build]
2401
2401
mixin-preset =
You can’t perform that action at this time.
0 commit comments