Ted Mielczarek
Ted Mielczarek
I learned about these sections while looking at the llvm-dsymutil docs: https://llvm.org/docs/CommandGuide/dsymutil.html#cmdoption-z There's a good description of their purpose and contents in the LLVM docs: https://llvm.org/docs/SourceLevelDebugging.html#name-accelerator-tables
Hi, thanks for this project! I was trying to get a simple example working with `scala_proto_library` and kept getting a `no matching toolchains` error from bazel. After reading the bazel...
I noticed this while trying to get a build working in my project, so I edited my test project to reproduce it in a smaller testcase: https://github.com/luser/bazel-scala-proto-test/tree/protoc-failure I edited `hello.proto`...
I was looking at a Rust release blog post, and it mentioned thanks.rust-lang.org, and also mentioned that it existed at https://❤.rust-lang.org . However, visiting the site from that URL doesn't...
I refactored some code I had that was creating a `HashSet` from a const slice to use `lazy_static` instead. I renamed the `const` and used its original name for the...
In CI at my work, we ran into a situation where rustc would get OOM-killed while linking example binaries: ``` error: linking with `cc` failed: exit code: 1 | =...
Spun off from the specific proposal in https://github.com/rust-lang/cargo/issues/4544#issuecomment-357371733 "A random solution which may help solve this though is to perhaps list the valid targets for a project in a workspace...
I glanced at the breakpad-dev mailing list and noticed that in September, support for [RISC-V minidumps from Linux was merged](https://github.com/google/breakpad/commit/28cf16bc342c0e39f867ccc1a30357a803b9a15a). At a minimum, adding the RISC-V CPU context values would...
For compatibility with Breakpad's dump_syms, we should figure out how to dump extern "C" functions without parameters in the function signature. I have an attempt at doing this in the...
Breakpad's dump_syms can read the x64 unwind tables out of the PE and dump them as STACK CFI records. We should do the same. Additionally, some PDB files (notably Microsoft's)...