3 Commits

Author SHA1 Message Date
Martin Pulec
d3f0802e53 tools/stacktrace_addr2line.sh fixed parsing
backtrace_symbols has slightly different output than backtrace_symbols_fd:
```./build/bin/uv(+0x24d92)[0x7b9c947ad92]```

In the first, there is a space between `(+0x24d92)` and `[0x7b9c947ad92]`:
```./build/bin/uv(+0x24d92) [0x7b9c947ad92]```

so support both syntaxes (the absolute address is ignored anyways,
there were just missing quotes around a variable)
2023-11-13 16:48:22 +01:00
Martin Pulec
c8a029e421 stacktrace_addr2line.sh: prettier print
- pretty print by default (use one line output)
- print inlines stack trace by default
- better delimit individual stack frames
2021-04-15 13:08:08 +02:00
Martin Pulec
85ecbbdfb1 Added tools/stacktrace_addr2line.sh
+ updated REPORTING_BUGS.md
2021-02-25 16:37:47 +01:00