mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
06a73ad7c4
9d25362
build: add armhf/aarch64 gitian builds (Cory Fields)980e7eb
depends: only build qt on linux for x86_64/x86 (Cory Fields)
11 lines
353 B
Bash
11 lines
353 B
Bash
#!/bin/sh
|
|
|
|
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
|