diff options
author | Tom Tromey <tom@tromey.com> | 2019-01-22 00:26:45 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-25 15:28:17 -0700 |
commit | a0707f3c36cab402cd4c3235bedd2b5f7b4c6aed (patch) | |
tree | 504e54c61556d9c6b6e5903831de2a2bd3ccc1ac | |
parent | 0747795c085d3b2a35da6bb474f32c58ce1b70c8 (diff) | |
download | gdb-a0707f3c36cab402cd4c3235bedd2b5f7b4c6aed.zip gdb-a0707f3c36cab402cd4c3235bedd2b5f7b4c6aed.tar.gz gdb-a0707f3c36cab402cd4c3235bedd2b5f7b4c6aed.tar.bz2 |
Don't use -I for common subdirectory
This changes the Makefiles to remove the -I for the common/
subdirectory. This will enforce the rule that includes must use the
'common/filename.h' form.
gdb/ChangeLog
2019-01-25 Tom Tromey <tom@tromey.com>
* Makefile.in (GDB_CFLAGS): Don't add -I for common.
gdb/gdbserver/ChangeLog
2019-01-25 Tom Tromey <tom@tromey.com>
* Makefile.in (INCLUDE_CFLAGS): Don't add -I for common.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/Makefile.in | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b893255..ede7a64 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2019-01-25 Tom Tromey <tom@tromey.com> + * Makefile.in (GDB_CFLAGS): Don't add -I for common. + +2019-01-25 Tom Tromey <tom@tromey.com> + * xtensa-linux-nat.c: Fix common/ includes. * xml-support.h: Fix common/ includes. * xml-support.c: Fix common/ includes. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 215ef79..72ca855 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -543,7 +543,7 @@ CONFIG_DEP_SUBDIR = $(addsuffix /$(DEPDIR),$(CONFIG_SRC_SUBDIR)) # your system doesn't have fcntl.h in /usr/include (which is where it # should be according to Posix). DEFS = @DEFS@ -GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \ +GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config \ -DLOCALEDIR="\"$(localedir)\"" $(DEFS) # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory. diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 0fd3360..a244c4f 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,9 @@ 2019-01-25 Tom Tromey <tom@tromey.com> + * Makefile.in (INCLUDE_CFLAGS): Don't add -I for common. + +2019-01-25 Tom Tromey <tom@tromey.com> + * win32-low.c: Fix common/ includes. * win32-i386-low.c: Fix common/ includes. * tracepoint.c: Fix common/ includes. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 4ae1369..8cffe3dd 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -118,7 +118,7 @@ GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@ # in those directories should be included with the subdirectory. # e.g.: "target/wait.h". # -INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../common \ +INCLUDE_CFLAGS = -I. -I${srcdir} \ -I$(srcdir)/../regformats -I$(srcdir)/.. -I$(INCLUDE_DIR) \ $(INCGNU) |