metaforce/ci/split-debug-linux.sh

8 lines
231 B
Bash
Raw Normal View History

2021-04-07 08:12:50 -07:00
#!/bin/bash -ex
2021-06-11 18:19:33 -07:00
cd build/install
2021-04-07 08:12:50 -07:00
for f in hecl metaforce-gui metaforce visigen; do
objcopy --only-keep-debug $f $f.dbg
2021-04-07 08:12:50 -07:00
objcopy --strip-debug --add-gnu-debuglink=$f.dbg $f
done
2021-06-11 18:19:33 -07:00
tar acfv "$GITHUB_WORKSPACE"/debug.tar.xz -- *.dbg