Re: [PATCH 3/4] gdb: distinguish GNU and MSVC flavors of the Windows OS ABI
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.comp.gdb.patches |
|---|---|
| Message-ID | <[email protected]> |
> From: Pedro Alves <[email protected]> > Date: Tue, 14 Jul 2026 01:45:06 +0100 > > gdb/NEWS | 16 ++++++++++++++++ > gdb/aarch64-windows-tdep.c | 5 ++++- > gdb/amd64-windows-tdep.c | 6 +++++- > gdb/arch-utils.c | 18 ++++++++++++++++++ > gdb/configure.tgt | 8 ++++++-- > gdb/doc/gdb.texinfo | 15 +++++++++++++++ > gdb/i386-windows-tdep.c | 6 +++++- > gdb/osabi.c | 32 +++++++++++++++++++++++++++----- > gdb/osabi.h | 8 ++++++++ > gdb/windows-tdep.h | 5 +++-- > gdbsupport/osabi.def | 2 ++ > 11 files changed, 109 insertions(+), 12 deletions(-) Thanks. > diff --git a/gdb/NEWS b/gdb/NEWS > index ec9b5a33787..cf3948f87e4 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -103,6 +103,16 @@ > everywhere GDB shows a filename/dirname: source filenames, > executable filename, shared libraries, the cd/pwd commands, etc. > > +* GDB now distinguishes between the GNU (MinGW) and MSVC Windows ABIs. > + > + The "set osabi" command accepts two new values, "Windows-GNU" and > + "Windows-MSVC". The existing "Windows" value continues to work and > + now means "let GDB pick the flavor": GDB uses the configured default > + OS ABI (from --target) when that is a Windows flavor, and otherwise > + assumes the GNU flavor. E.g., --target=x86_64-pc-windows-msvc > + defaults to the MSVC ABI, and --target=x86_64-w64-mingw32 defaults > + to GNU ABI. See "New targets" entry below. This part is okay, but I think it would make sense to tell which compilers produce binaries of Windows-MSVC ABI. E.g., does the above mean that GDB will now be able to debug programs produces by MSVC, including use of the PDB debug data files? Also, you only mention the 64-bit host and target triplets, but does that mean this is limited to 64-bit Windows programs? > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -28680,6 +28680,15 @@ When @value{GDBN} is debugging the AArch64 architecture, it provides a > @code{longjmp} when debugging binaries that use the @sc{newlib} C library. > The ``Newlib'' OS ABI can be selected by @code{set osabi Newlib}. > > +On Windows, the GNU (MinGW) and MSVC toolchains use different ABIs. > +For example, they disagree on the size of @code{long double}. > +@value{GDBN} provides a separate OS ABI for each: ``Windows-GNU'' and > +``Windows-MSVC''. A generic ``Windows'' OS ABI is also available. It > +does not select a flavor directly, but asks @value{GDBN} to pick one: > +@value{GDBN} uses the OS ABI it was configured with by default (from > +the @code{--target} configure option) when that is a Windows flavor, > +and otherwise assumes the GNU flavor. Should we have a cross-reference here to the "Configure Options" node? Reviewed-By: Eli Zaretskii <[email protected]>