We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0198b commit 1d6693fCopy full SHA for 1d6693f
scripts/decode_stacktrace.sh
@@ -37,6 +37,13 @@ parse_symbol() {
37
symbol=${symbol#\(}
38
symbol=${symbol%\)}
39
40
+ # Strip segment
41
+ local segment
42
+ if [[ $symbol == *:* ]] ; then
43
+ segment=${symbol%%:*}:
44
+ symbol=${symbol#*:}
45
+ fi
46
+
47
# Strip the symbol name so that we could look it up
48
local name=${symbol%+*}
49
@@ -84,7 +91,7 @@ parse_symbol() {
84
91
code=${code//$'\n'/' '}
85
92
86
93
# Replace old address with pretty line numbers
87
- symbol="$name ($code)"
94
+ symbol="$segment$name ($code)"
88
95
}
89
96
90
97
decode_code() {
0 commit comments