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 @@ -186,7 +186,7 @@ elseif(BOOTSTRAPPING_MODE STREQUAL "OFF")
186
186
set (SWIFT_SHOULD_BUILD_EMBEDDED_CONCURRENCY FALSE )
187
187
endif ()
188
188
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB AND SWIFT_SHOULD_BUILD_EMBEDDED_CONCURRENCY )
189
- add_custom_target (embedded-concurrency ALL )
189
+ add_custom_target (embedded-concurrency )
190
190
add_dependencies (embedded-libraries embedded-concurrency )
191
191
192
192
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 1
1
2
2
# Embedded Swift Unicode library
3
3
if (SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB )
4
- add_custom_target (embedded-unicode ALL )
4
+ add_custom_target (embedded-unicode )
5
+ add_dependencies (embedded-libraries embedded-unicode )
5
6
6
7
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
7
8
string (REGEX REPLACE "[ \t ]+" ";" list "${entry} " )
You can’t perform that action at this time.
0 commit comments