[Lldb-commits] [PATCH] D65691: Various build fixes for lldb on MinGW
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Aug 3 11:03:53 PDT 2019
clayborg added a comment.
In D65691#1613395 <https://reviews.llvm.org/D65691#1613395>, @mstorsjo wrote:
> As context (I haven't followed lldb almost at all), what's the general status of lldb on windows - generally working, or still a work in progress? Does it work with dwarf debug info in COFF (as commonly used in mingw environments), in addition to PDB? I.e. is the existing dwarf support tied to the ELF/MachO formats, or is it decoupled?
It is decoupled. As long as the ObjectFileCOFF hands out the right section for the section enumeration in lldb-enumerations.h in the lldb::SectionType, it should all just work. The enumerations in question are all of the enums that start with eSectionTypeDWARF. It seems to have support in ObjectFilePECOFF::CreateSections(...). So I think it should all just work. Let us know if there are any issues.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65691/new/
https://reviews.llvm.org/D65691
More information about the lldb-commits
mailing list