For ELF core files, it needs a way to add raw contents from the program
header directly since core files don't have sections.
Details
Details
- Reviewers
MaskRay jhenderson irogers
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Event Timeline
Comment Actions
Do you really need this? We already have the ability to provide "filler" sections which are like regular sections except they don't have a corresponding section header. See https://github.com/llvm/llvm-project/blob/main/llvm/test/tools/yaml2obj/ELF/custom-fill.yaml. (If you do actually need the new feature, you need to write tests for it too).
Comment Actions
Cool. I didn't know I can use that. With SectionHeaderTable.NoHeaders = true, it'll do all I need. Thanks for the info!