From 4fd19396ea1e8c58d8b30a3b6b1c56eb00bb3de1 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Mon, 10 Jun 2013 12:24:32 +0200 Subject: Add script to dump breakpad symbols --- misc/dump_syms.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 misc/dump_syms.sh (limited to 'misc') diff --git a/misc/dump_syms.sh b/misc/dump_syms.sh new file mode 100755 index 00000000..6f6f7c6d --- /dev/null +++ b/misc/dump_syms.sh @@ -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 + + + -- cgit v1.2.3