mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
9 lines
238 B
Bash
9 lines
238 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
objcopy --only-keep-debug --compress-debug-section=zlib "${1}" "${1}.debug"
|
|
if [ -f "${1}.debug" ]; then
|
|
objcopy --strip-debug --strip-unneeded "${1}"
|
|
objcopy --add-gnu-debuglink="${1}.debug" "${1}"
|
|
fi
|