mirror of
https://github.com/QuasarApp/QuasarAppCoin.git
synced 2025-04-28 18:54:34 +00:00
Github-Pull: #15549 Rebased-From: 32da92bdf6bb55d6d312b0f85797d439cc942db5 Tree-SHA512: c79455ed3aa0e529821ed30c5d36244dcc9fbf9154b63dfcce4789143d8a737f83ea2aaea8993748babc4cec45ae0e88449d2a6ddc90dcf62a39cf8d6a2ace2e
11 lines
359 B
Bash
11 lines
359 B
Bash
#!/bin/sh
|
|
set -e
|
|
if [ $# -ne 3 ];
|
|
then echo "usage: $0 <input> <stripped-binary> <debug-binary>"
|
|
fi
|
|
|
|
@OBJCOPY@ --enable-deterministic-archives -p --only-keep-debug $1 $3
|
|
@OBJCOPY@ --enable-deterministic-archives -p --strip-debug $1 $2
|
|
@STRIP@ --enable-deterministic-archives -p -s $2
|
|
@OBJCOPY@ --enable-deterministic-archives -p --add-gnu-debuglink=$3 $2
|