diff options
author | Fred Fish <fnf@specifix.com> | 1992-06-15 19:25:13 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-06-15 19:25:13 +0000 |
commit | 4c07f28d773c899f7cc1270dd32c5a376b3771ee (patch) | |
tree | fe89b83cd8de97edbdd6bef22e07e02c6210a8a0 /gdb/Makefile.in | |
parent | 5bdf878ebf0f5da5f7e228b5943e8e709cc3341d (diff) | |
download | gdb-4c07f28d773c899f7cc1270dd32c5a376b3771ee.zip gdb-4c07f28d773c899f7cc1270dd32c5a376b3771ee.tar.gz gdb-4c07f28d773c899f7cc1270dd32c5a376b3771ee.tar.bz2 |
* Makefile.in (VERSION): Bump to 4.5.5.
* symtab.c (decode_line_1): Until C++ support stabilizes, when
C++ lookups fail, print possibly helpful hint about completion.
* cplus-dem.c (demangle_signature): Fix ARM style demangling
for static data members.
* dbxread.c (dbx_psymtab_to_symtab_1): Fix prototype.
* config/ncr3000.mh (INSTALL): Don't use /usr/ucb/install,
it's broken on ncr3000's.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8b9f58d..22d2b5b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -74,8 +74,8 @@ srcdir = . # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which # is where it should be according to Posix). -YACC=byacc -# YACC=yacc +BISON=yacc +YACC=$(BISON) MAKE=make # Documentation (gdb.dvi) needs either GNU m4 or SysV m4; @@ -163,7 +163,7 @@ CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${MMALLOC_LIB} ${LIBIBERTY} \ ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES} ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} -VERSION = 4.5.4 +VERSION = 4.5.5 DIST=gdb LINT=/usr/5bin/lint @@ -341,8 +341,8 @@ init.c: $(srcdir)/munch $(OBS) $(TSOBS) $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o - ${CC-LD} $(LDFLAGS) -o gdb init.o $(OBS) $(TSOBS) $(ADD_FILES) \ - $(CLIBS) $(LOADLIBES) + ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdb \ + init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES) saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS |