Skip to content

Commit 31206ea

Browse files
committed
Do not try to dsymutil .a files, which is unsupported
1 parent 8ed997a commit 31206ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/build-script-impl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3814,11 +3814,12 @@ for host in "${ALL_HOSTS[@]}"; do
38143814

38153815
# Run dsymutil on executables and shared libraries.
38163816
#
3817-
# Exclude shell scripts.
3817+
# Exclude shell scripts and static archives.
38183818
(cd "${INSTALL_SYMROOT}" &&
38193819
find ./"${CURRENT_PREFIX}" -perm -0111 -type f -print | \
38203820
grep -v crashlog.py | \
38213821
grep -v symbolication.py | \
3822+
grep -v '.a$' | \
38223823
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool dsymutil))
38233824

38243825
# Strip executables, shared libraries and static libraries in

0 commit comments

Comments
 (0)