0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-19 19:42:29 +02:00

Add script to dump breakpad symbols

This commit is contained in:
Arne Schwabe 2013-06-10 12:24:32 +02:00
parent d968e3207d
commit 4fd19396ea

17
misc/dump_syms.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
function dumplib()
{
LIB=$1
for arch in armeabi-v7a armeabi; do
VER=$(dump_syms obj/local/$arch/$LIB |grep MODULE | cut -d " " -f 4)
mkdir -p symbols/$LIB/$VER
dump_syms obj/local/armeabi-v7a/$LIB > symbols/$LIB/$VER/$LIB.sym
done
}
dumplib libopenvpn.so