Skip to content

Commit 7271fd0

Browse files
authored
[build] Run dsymutil on multiple files at a time (#34149)
The change in #33654 had the effect of not leveraging dsymutil parallelism -- pass instead multiple file at once. Addresses rdar://69550787
1 parent 95c4a97 commit 7271fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3049,7 +3049,7 @@ for host in "${ALL_HOSTS[@]}"; do
30493049
grep -v '.py$' | \
30503050
grep -v '.a$' | \
30513051
grep -v 'swift-api-digester' | \
3052-
xargs -n 1 -P 1 ${dsymutil_path})
3052+
xargs -P 1 ${dsymutil_path})
30533053

30543054
# Strip executables, shared libraries and static libraries in
30553055
# `host_install_destdir`.

0 commit comments

Comments
 (0)