diff options
author | Andreas Arnez <arnez@linux.ibm.com> | 2021-11-17 11:46:36 +0100 |
---|---|---|
committer | Andreas Arnez <arnez@linux.ibm.com> | 2021-11-17 15:31:11 +0100 |
commit | 0df670bbe009d3b57f5dbf9599913ad06013ec4e (patch) | |
tree | 9d995e2dadf417ea63114cd356d57665de8187d6 /gdb/s390-linux-nat.c | |
parent | 1aed145ad6475a3be195f0b3444c14ecd84068e4 (diff) | |
download | gdb-0df670bbe009d3b57f5dbf9599913ad06013ec4e.zip gdb-0df670bbe009d3b57f5dbf9599913ad06013ec4e.tar.gz gdb-0df670bbe009d3b57f5dbf9599913ad06013ec4e.tar.bz2 |
[gdb/build, s390x] Fix build after gdbarch_tdep changes
Commit 345bd07cce33 ("gdb: fix gdbarch_tdep ODR violation") changes a
declaration in s390-tdep.h from
struct gdbarch_tdep { ... };
to
struct s390_gdbarch_tdep : gdbarch_tdep { ... };
and now requires that gdbarch_tdep has been declared before. Which is
usually the case, except when compiling s390-linux-nat.c, where
s390-tdep.h is included before gdbarch.h. Thus the s390x build errors out
with the compiler complaining about a missing class name after the colon.
Fix this in s390-linux-nat.c, by including gdbarch.h before s390-tdep.h.
Diffstat (limited to 'gdb/s390-linux-nat.c')
-rw-r--r-- | gdb/s390-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/s390-linux-nat.c b/gdb/s390-linux-nat.c index 8f6eb61..4c64a85 100644 --- a/gdb/s390-linux-nat.c +++ b/gdb/s390-linux-nat.c @@ -29,6 +29,7 @@ #include "regset.h" #include "nat/linux-ptrace.h" #include "gdbcmd.h" +#include "gdbarch.h" #include "s390-tdep.h" #include "s390-linux-tdep.h" @@ -43,7 +44,6 @@ #include <algorithm> #include "inf-ptrace.h" #include "linux-tdep.h" -#include "gdbarch.h" /* Per-thread arch-specific data. */ |