diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2024-04-22 16:10:16 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2024-04-22 21:34:19 -0400 |
commit | 740ccea39ecf04c96025a04c5f97de28c71ff8b5 (patch) | |
tree | bb7ac2e092436d44cbfa27aede6347f2a44a4e2d /gdb | |
parent | 6e7c49c2dd9ab0803894925c2ec422ea5aeddfb8 (diff) | |
download | gdb-740ccea39ecf04c96025a04c5f97de28c71ff8b5.zip gdb-740ccea39ecf04c96025a04c5f97de28c71ff8b5.tar.gz gdb-740ccea39ecf04c96025a04c5f97de28c71ff8b5.tar.bz2 |
gdb: don't include hashtab.h in defs.h
Nothing in defs.h actually uses this.
Add some includes for some spots using things from hashtab.h. Note that
if the GDB build doesn't use libxxhash, hashtab.h is included by
gdbsupport/common-utils.h, so all files still see hashtab.h. It puzzled
me for some time why I didn't see build failures in my build (which
didn't use libxxhash) but the buildbot gave build failures (it uses
libxxhash).
Change-Id: I8efd68decdaf579f048941c7537cd689885caa2a
Approved-By: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/defs.h | 2 | ||||
-rw-r--r-- | gdb/dwarf2/die.h | 1 | ||||
-rw-r--r-- | gdb/dwarf2/index-common.h | 1 | ||||
-rw-r--r-- | gdb/extension.h | 1 |
4 files changed, 3 insertions, 2 deletions
@@ -82,8 +82,6 @@ #define O_BINARY 0 #endif -#include "hashtab.h" - /* * System root path, used to find libraries etc. */ extern std::string gdb_sysroot; diff --git a/gdb/dwarf2/die.h b/gdb/dwarf2/die.h index a749b95..d4eab08 100644 --- a/gdb/dwarf2/die.h +++ b/gdb/dwarf2/die.h @@ -22,6 +22,7 @@ #include "complaints.h" #include "dwarf2/attribute.h" +#include "hashtab.h" /* This data structure holds a complete die structure. */ struct die_info diff --git a/gdb/dwarf2/index-common.h b/gdb/dwarf2/index-common.h index 0a871a7..3390129 100644 --- a/gdb/dwarf2/index-common.h +++ b/gdb/dwarf2/index-common.h @@ -21,6 +21,7 @@ #define DWARF_INDEX_COMMON_H #include "extract-store-integer.h" +#include "hashtab.h" /* The suffix for an index file. */ #define INDEX4_SUFFIX ".gdb-index" diff --git a/gdb/extension.h b/gdb/extension.h index 5260bcb..9ba1299 100644 --- a/gdb/extension.h +++ b/gdb/extension.h @@ -22,6 +22,7 @@ #include "mi/mi-cmds.h" #include "gdbsupport/array-view.h" +#include "hashtab.h" #include <optional> struct breakpoint; |