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 4ed8de1 commit 14f9dc6Copy full SHA for 14f9dc6
utils/build-script-impl
@@ -3838,11 +3838,12 @@ for host in "${ALL_HOSTS[@]}"; do
3838
3839
# Run dsymutil on executables and shared libraries.
3840
#
3841
- # Exclude shell scripts.
+ # Exclude shell scripts and static archives.
3842
(cd "${INSTALL_SYMROOT}" &&
3843
find ./"${CURRENT_PREFIX}" -perm -0111 -type f -print | \
3844
grep -v crashlog.py | \
3845
grep -v symbolication.py | \
3846
+ grep -v '.a$' | \
3847
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool dsymutil))
3848
3849
# Strip executables, shared libraries and static libraries in
0 commit comments