File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ option(SWIFT_STDLIB_EMIT_API_DESCRIPTORS
101
101
102
102
option (SWIFT_STDLIB_BUILD_ONLY_CORE_MODULES
103
103
"Build only the core subset of the standard library,
104
- ignoring additional libraries such as Concurrency, Distributed and StringProcessing .
104
+ ignoring additional libraries such as Distributed, Observation and Synchronization .
105
105
This is an option meant for internal configurations inside Apple
106
106
that need to build the standard libraries in chunks when constructing an SDK"
107
107
FALSE )
Original file line number Diff line number Diff line change @@ -269,6 +269,16 @@ if(SWIFT_BUILD_STDLIB)
269
269
if (SWIFT_BUILD_CLANG_OVERLAYS)
270
270
add_subdirectory (ClangOverlays)
271
271
endif ()
272
+
273
+ if (SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY)
274
+ add_subdirectory (Concurrency)
275
+ endif ()
276
+
277
+ if (SWIFT_ENABLE_EXPERIMENTAL_STRING_PROCESSING)
278
+ add_subdirectory (RegexParser)
279
+ add_subdirectory (StringProcessing)
280
+ add_subdirectory (RegexBuilder)
281
+ endif ()
272
282
endif ()
273
283
274
284
if (SWIFT_BUILD_STDLIB AND NOT SWIFT_STDLIB_BUILD_ONLY_CORE_MODULES)
@@ -279,20 +289,10 @@ if(SWIFT_BUILD_STDLIB AND NOT SWIFT_STDLIB_BUILD_ONLY_CORE_MODULES)
279
289
add_subdirectory (Differentiation)
280
290
endif ()
281
291
282
- if (SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY)
283
- add_subdirectory (Concurrency)
284
- endif ()
285
-
286
292
if (SWIFT_ENABLE_EXPERIMENTAL_DISTRIBUTED)
287
293
add_subdirectory (Distributed)
288
294
endif ()
289
295
290
- if (SWIFT_ENABLE_EXPERIMENTAL_STRING_PROCESSING)
291
- add_subdirectory (RegexParser)
292
- add_subdirectory (StringProcessing)
293
- add_subdirectory (RegexBuilder)
294
- endif ()
295
-
296
296
if (SWIFT_ENABLE_EXPERIMENTAL_OBSERVATION)
297
297
add_subdirectory (Observation)
298
298
endif ()
You can’t perform that action at this time.
0 commit comments