[Lldb-commits] [lldb] [lldb][AIX] Added XCOFF Object File Header for AIX (PR #111814)
Dhruv Srivastava via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 11 04:44:47 PST 2024
DhruvSrivastavaX wrote:
> Are XCOFF files always big endian? If so, then all you need is to add a `DataExtractor::SetByteOrder()`. If not (and you want to support both endiannesses), then it would be better to add both cases to `XCOFFHeaderSizeFromMagic`.
Yes, AIX XCOFF does not support little endian, so I went ahead with the SetByteOrder Fix.
https://github.com/llvm/llvm-project/pull/111814
More information about the lldb-commits
mailing list