Skip to content

Commit

Permalink
build-script: strip debug info from libraries and executables
Browse files Browse the repository at this point in the history
One of the recent build-script refactorings has dropped the parentheses,
restore them.

rdar://problem/27083605
  • Loading branch information
gribozavr committed Jul 11, 2016
1 parent 5164668 commit 52d4d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/build-script-impl
Original file line number Diff line number Diff line change
Expand Up @@ -2904,7 +2904,7 @@ for host in "${ALL_HOSTS[@]}"; do
# Strip executables, shared libraries and static libraries in
# `host_install_destdir`.
find "${host_install_destdir}${TOOLCHAIN_PREFIX}/" \
-perm -0111 -or -name "*.a" -type f -print | \
'(' -perm -0111 -or -name "*.a" ')' -type f -print | \
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool strip) -S

{ set +x; } 2>/dev/null
Expand Down

0 comments on commit 52d4d8e

Please sign in to comment.