We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed997a commit 31206eaCopy full SHA for 31206ea
utils/build-script-impl
@@ -3814,11 +3814,12 @@ for host in "${ALL_HOSTS[@]}"; do
3814
3815
# Run dsymutil on executables and shared libraries.
3816
#
3817
- # Exclude shell scripts.
+ # Exclude shell scripts and static archives.
3818
(cd "${INSTALL_SYMROOT}" &&
3819
find ./"${CURRENT_PREFIX}" -perm -0111 -type f -print | \
3820
grep -v crashlog.py | \
3821
grep -v symbolication.py | \
3822
+ grep -v '.a$' | \
3823
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool dsymutil))
3824
3825
# Strip executables, shared libraries and static libraries in
0 commit comments