Skip to content

Commit

Permalink
Also strip symbols from *.dylib files
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Jun 10, 2024
1 parent e41c654 commit 837d114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/python_wheel_macos_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ wheel_name=$(ls pyarrow-*.whl)
# Unzip and remove old wheel
unzip $wheel_name
rm $wheel_name
for filename in $(ls pyarrow/*.so pyarrow/*.so.*); do
for filename in $(ls pyarrow/*.dylib pyarrow/*.so); do
echo "Stripping debug symbols from: $filename";
strip -S $filename
done
Expand Down

0 comments on commit 837d114

Please sign in to comment.