diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-08-16 17:44:51 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-08-16 17:44:51 +0000 |
commit | 07978cd82389d4b65b44ea25a2808738569ea6a6 (patch) | |
tree | 206e5584c1503eef5ef270ff04d290029159d4c2 /gdb/Makefile.in | |
parent | ca506da8bc29c6389514750151973321098caddc (diff) | |
download | gdb-07978cd82389d4b65b44ea25a2808738569ea6a6.zip gdb-07978cd82389d4b65b44ea25a2808738569ea6a6.tar.gz gdb-07978cd82389d4b65b44ea25a2808738569ea6a6.tar.bz2 |
2003-08-16 Andrew Cagney <cagney@redhat.com>
* Makefile.in (printcmd.o, valprint.o): Do not try to build with
-Werror. -Wformat-nonliteral problems.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 21910e1..5f2a6a8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1348,6 +1348,12 @@ v850ice.o: $(srcdir)/v850ice.c $(GDBTK_CFLAGS) \ $(srcdir)/v850ice.c +# FIXME: cagney/2003-08-10: Do not try to build "valprint.c" with +# -Wformat-nonliteral. It relies on local_hex_format et.al. and +# that's a mess. It needs a serious overhaul. +valprint.o: $(srcdir)/valprint.c + $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/valprint.c + # FIXME: z8k-tdep.c calls _initialize_gdbtypes(). Since that isn't # declared -Wimplicit fails. It should be using the GDBARCH framework. # cagney 1999-09-02. |