Skip to content

Commit 14f9dc6

Browse files
committed
Do not try to dsymutil .a files, which is unsupported
1 parent 4ed8de1 commit 14f9dc6

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
@@ -3838,11 +3838,12 @@ for host in "${ALL_HOSTS[@]}"; do
38383838

38393839
# Run dsymutil on executables and shared libraries.
38403840
#
3841-
# Exclude shell scripts.
3841+
# Exclude shell scripts and static archives.
38423842
(cd "${INSTALL_SYMROOT}" &&
38433843
find ./"${CURRENT_PREFIX}" -perm -0111 -type f -print | \
38443844
grep -v crashlog.py | \
38453845
grep -v symbolication.py | \
3846+
grep -v '.a$' | \
38463847
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool dsymutil))
38473848

38483849
# Strip executables, shared libraries and static libraries in

0 commit comments

Comments
 (0)