We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e956c commit de375a9Copy full SHA for de375a9
tools/extract-debug-symbols.sh
@@ -18,9 +18,9 @@ for input in $inputs ; do
18
# If this file is a dynamic library, don't do a full strip or we'll
19
# destroy it (no symbols => can't link to it)
20
if [[ "$(objdump -f $input)" =~ "DYNAMIC" ]] ; then
21
- $STRIP --preserve-dates --strip-debug "$input"
+ $STRIP -x --preserve-dates --strip-debug "$input"
22
else
23
- $STRIP --preserve-dates --strip-debug --strip-unneeded "$input"
+ $STRIP -x --preserve-dates --strip-debug --strip-unneeded "$input"
24
fi
25
26
# Add a hint for the debugger so it can find the debug info
0 commit comments