File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ elseif(BOOTSTRAPPING_MODE STREQUAL "OFF")
191
191
set (SWIFT_SHOULD_BUILD_EMBEDDED_CONCURRENCY FALSE )
192
192
endif ()
193
193
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB AND SWIFT_SHOULD_BUILD_EMBEDDED_CONCURRENCY )
194
- add_custom_target (embedded-concurrency ALL )
194
+ add_custom_target (embedded-concurrency )
195
195
add_dependencies (embedded-libraries embedded-concurrency )
196
196
197
197
set (SWIFT_ENABLE_REFLECTION OFF )
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ add_swift_target_library(swiftDarwin ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES}
81
81
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
82
82
set (SWIFT_ENABLE_REFLECTION OFF )
83
83
84
- add_custom_target (embedded-darwin ALL )
84
+ add_custom_target (embedded-darwin )
85
85
add_dependencies (embedded-libraries embedded-darwin )
86
86
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
87
87
string (REGEX REPLACE "[ \t ]+" ";" list "${entry} " )
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ add_swift_target_library(swiftSynchronization ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES
134
134
# i.e. there is no .o or .a file produced (no binary code is actually produced)
135
135
# and only users of a library are going to actually compile any needed code.
136
136
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
137
- add_custom_target (embedded-synchronization ALL )
137
+ add_custom_target (embedded-synchronization )
138
138
add_dependencies (embedded-libraries embedded-synchronization )
139
139
140
140
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ add_swift_target_library(swift_Volatile ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_S
22
22
)
23
23
24
24
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
25
- add_custom_target (embedded-volatile ALL )
25
+ add_custom_target (embedded-volatile )
26
26
add_dependencies (embedded-libraries embedded-volatile )
27
27
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
28
28
string (REGEX REPLACE "[ \t ]+" ";" list "${entry} " )
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ add_swift_target_library(swiftCore
413
413
# i.e. there is no .o or .a file produced (no binary code is actually produced)
414
414
# and only users of a library are going to actually compile any needed code.
415
415
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
416
- add_custom_target (embedded-stdlib ALL )
416
+ add_custom_target (embedded-stdlib )
417
417
add_dependencies (embedded-libraries embedded-stdlib )
418
418
419
419
set (SWIFT_ENABLE_REFLECTION OFF )
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ endif()
52
52
53
53
# Embedded Swift Unicode library
54
54
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
55
- add_custom_target (embedded-unicode ALL )
55
+ add_custom_target (embedded-unicode )
56
+ add_dependencies (embedded-libraries embedded-unicode )
56
57
57
58
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
58
59
string (REGEX REPLACE "[ \t ]+" ";" list "${entry} " )
You can’t perform that action at this time.
0 commit comments