[Lldb-commits] [PATCH] D128268: [lldb] Fix reading i686-windows executables with GNU environment
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 28 01:05:17 PDT 2022
labath added a comment.
In D128268#3611053 <https://reviews.llvm.org/D128268#3611053>, @mstorsjo wrote:
> The odd thing about the second one is the added hardcoded `AddArch(ArchSpec("i686-pc-windows"));` and `AddArch(ArchSpec("i386-pc-windows"));` at the top of `PlatformWindows.cpp`.
>
> Anyway, it does seem to work fine in my quick test to get rid of this duality, so I'll post a patch that does that.
I think those hardcoded lines are there precisely because of the duality (i.e. wanting to support both i386 and i686 regardless of what the host layer reports). If that is removed, maybe all of that can be changed to the pattern used in other platform plugins <https://github.com/llvm/llvm-project/blob/main/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp#L114>.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128268/new/
https://reviews.llvm.org/D128268
More information about the lldb-commits
mailing list