[Lldb-commits] [lldb] [LLDB][ProcessELFCore] Add Description to ProcessELFCore/ELFThread stop reasons (PR #110065)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 1 06:37:47 PDT 2024


labath wrote:

> I actually tried to yamlize one of my test crash dumps. The issue I encountered was the PT_NOTE sections wasn't being generated with content. Is there a way with obj2yaml to generate PT_NOTES with content?

yaml2obj was originally written for llvm testing, so it mainly focuses on sections and other things that are interesting there. Support for program headers came later, and it's done on an on-demand and self-serve basis. Also, obj2yaml is generally in a better state than yaml2obj, so you may be able to use it to create the file you need, but you may need to write some yaml by hand.

https://github.com/llvm/llvm-project/pull/110065


More information about the lldb-commits mailing list