mirror of https://github.com/AxioDL/metaforce.git
6 lines
211 B
Bash
6 lines
211 B
Bash
|
#!/bin/bash -ex
|
||
|
cd build/Binaries
|
||
|
for f in hecl metaforce-gui metaforce visigen; do
|
||
|
objcopy --only-keep-debug --compress-debug-sections=zlib $f $f.dbg
|
||
|
objcopy --strip-debug --add-gnu-debuglink=$f.dbg $f
|
||
|
done
|