File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,6 @@ if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
83
83
84
84
add_custom_target (embedded-darwin )
85
85
add_dependencies (embedded-libraries embedded-darwin )
86
-
87
- set_property (GLOBAL APPEND PROPERTY JOB_POOLS one_job=1 )
88
86
foreach (entry ${EMBEDDED_STDLIB_TARGET_TRIPLES} )
89
87
string (REGEX REPLACE "[ \t ]+" ";" list "${entry} " )
90
88
list (GET list 0 arch )
@@ -127,7 +125,6 @@ if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
127
125
INSTALL_IN_COMPONENT stdlib
128
126
)
129
127
add_dependencies (embedded-darwin embedded-darwin-${mod} )
130
- set_property (TARGET embedded-darwin-${mod} PROPERTY JOB_POOL_COMPILE one_job )
131
128
endforeach ()
132
129
endif ()
133
130
Original file line number Diff line number Diff line change @@ -403,12 +403,18 @@ if(BOOTSTRAPPING_MODE STREQUAL "BOOTSTRAPPING")
403
403
BOOTSTRAPPING 1 )
404
404
endif ()
405
405
406
+ set (tooling_stdlib_deps )
407
+ if (TARGET libSwiftScan )
408
+ list (append tooling_stdlib_deps libSwiftScan )
409
+ endif ()
410
+
406
411
add_swift_target_library (swiftCore
407
412
${SWIFT_STDLIB_LIBRARY_BUILD_TYPES}
408
413
${swiftCore_common_options}
409
414
${compile_flags_for_final_build}
410
415
FILE_DEPENDS
411
416
${swiftCore_common_dependencies}
417
+ DEPENDS ${tooling_stdlib_deps}
412
418
INSTALL_IN_COMPONENT
413
419
stdlib
414
420
MACCATALYST_BUILD_FLAVOR
@@ -451,6 +457,7 @@ if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
451
457
SDK "embedded"
452
458
ARCHITECTURE "${arch} "
453
459
FILE_DEPENDS ${swiftCore_common_dependencies}
460
+ DEPENDS ${tooling_stdlib_deps}
454
461
INSTALL_IN_COMPONENT stdlib
455
462
)
456
463
add_dependencies (embedded-stdlib embedded-stdlib-${mod} )
You can’t perform that action at this time.
0 commit comments