diff options
author | Kévin Le Gouguec <legouguec@adacore.com> | 2024-05-20 17:22:50 +0200 |
---|---|---|
committer | Kévin Le Gouguec <legouguec@adacore.com> | 2024-05-20 18:47:33 +0200 |
commit | 752e03a7c1ac5f3539c3294d71d943269e442643 (patch) | |
tree | 368271aacff666b51174549446b6df56e5a58faa | |
parent | 762910fbd19cf703d732ad3d2f2ff0d95c1cbfa2 (diff) | |
download | binutils-752e03a7c1ac5f3539c3294d71d943269e442643.zip binutils-752e03a7c1ac5f3539c3294d71d943269e442643.tar.gz binutils-752e03a7c1ac5f3539c3294d71d943269e442643.tar.bz2 |
gdb: Fix Windows build after #include shuffle
Without this patch, the build chokes on:
../../src/gdb/windows-nat.c:384:21: error: field 'm_debug_event_pending' has incomplete type 'std::atomic<bool>'
384 | std::atomic<bool> m_debug_event_pending { false };
| ^~~~~~~~~~~~~~~~~~~~~
In file included from […gcc tree…]/include/c++/13.2.1/bits/shared_ptr_atomic.h:33,
from […gcc tree…]/include/c++/13.2.1/memory:81,
from ../../src/gdb/../gdbsupport/gdb_unique_ptr.h:23,
from ../../src/gdb/../gdbsupport/common-utils.h:26,
from ../../src/gdb/../gdbsupport/common-defs.h:199,
from ./../../src/gdb/defs.h:26,
from <command-line>:
[…gcc tree…]/include/c++/13.2.1/bits/atomic_base.h:174:12: note: declaration of 'struct std::atomic<bool>'
174 | struct atomic;
| ^~~~~~
make.exe[2]: *** [Makefile:1947: windows-nat.o] Error 1
Presumably windows-nat.c relied on objfiles.h including <atomic>,
which was undone in 2024-05-16 "gdb: remove unused includes in
objfiles.{c,h}" (f617661c110).
-rw-r--r-- | gdb/windows-nat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 70f955d..e4feea1 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -41,6 +41,7 @@ #include <cygwin/version.h> #endif #include <algorithm> +#include <atomic> #include <vector> #include <queue> |