Jan Michael Auer
Jan Michael Auer
We used to have `Cargo.lock` checked in for the C-ABI binary. When we moved everything into a workspace, that was dropped. There's nothing wrong with bringing back Cargo.lock; however, we...
You're right, the Python documentation is currently very insufficient. Until we catch up with this, you can have a look at this test for an example of how to symbolicate:...
Hi @luser, and thanks a lot for publishing your crate(s). Your parser is certainly nicer and way more complete than ours which was only hacked together to serve our immediate...
Okay, this sounds very nice already. I think we share a common idea of how this could look like. > The Google folks actually moved away from the .sym file...
It's been a while. Time to revive this issue, starting with symbol parsing. After some benchmarking of our Breakpad parser, we concluded that our pest impl is too slow, at...
> You might consider going one step further and only parsing the FUNC lines, leaving the line data for each function unparsed until actually requested. We got you covered: [accessor](https://github.com/getsentry/symbolic/blob/3d13f37efc42399f822d8c68521f7793ced5f426/symbolic-debuginfo/src/breakpad.rs#L359-L364)...
I didn't fully think this through yet. Symbolic is a large and higher-level library for debugging and symbolicating. Particularly `symbolic-debuginfo` builds on other libraries for the actual implementation of various...
Yes, we had that, but if we fail to parse the header we always had to bail out. We could argue that `goblin` shouldn't parse relocations eagerly, but in the...
We never implemented a full `dump_syms` equivalent, but only the `CFI` part of it. To do that, you'll want to use [`AsciiCfiWriter`](https://docs.rs/symbolic-minidump/7.1.1/symbolic_minidump/cfi/struct.AsciiCfiWriter.html). To write `FUNC` and `PUBLIC` records, you would...
@calixteman sorry for the exceptionally long response cycle on this one. Do you still need this patch? If so, I would slightly prefer to create more abstract flags, which we...