diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-11 17:59:52 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-11 17:59:52 +0000 |
commit | 550e87b54d91df0f39a194bc7f12eaedb9d772b4 (patch) | |
tree | a99a392edd9aa8999c3a7a47768adbc07f676e9e /ld | |
parent | f79edb02abf0e2f5c5b4d3aa4314127dd34f55b8 (diff) | |
download | gdb-550e87b54d91df0f39a194bc7f12eaedb9d772b4.zip gdb-550e87b54d91df0f39a194bc7f12eaedb9d772b4.tar.gz gdb-550e87b54d91df0f39a194bc7f12eaedb9d772b4.tar.bz2 |
* ldlex.l ldgram.y: made -V option do same as -v
* Makefile.in: Added $(MINUS_G) flag so debugging can be
turned off
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 14 | ||||
-rw-r--r-- | ld/Makefile.in | 7 |
2 files changed, 17 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 888f2ef..45ad82f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,17 @@ +Mon Nov 11 09:57:32 1991 Steve Chamberlain (steve at cygnus.com) + + * ldlex.l ldgram.y: made -V option do same as -v + * Makefile.in: Added $(MINUS_G) flag so debugging can be + turned off + +Sun Nov 3 16:37:37 1991 Steve Chamberlain (steve at cygnus.com) + i386 aout changes from Bob Kukura + * Makefile.in, config.h: added i386aout support + * configure.in: fixed /h-{myhost} typo + * ldgram.y: -MM now gives more boring map. + * ldlang.c: now does D_PAGED flag the right way. + * ldsym.c: -MM flags does the right thing. + Sun Nov 3 15:00:03 1991 Per Bothner (bothner at cygnus.com) * configure.in: Fixed typo. Also, a fix for hp300bsd. diff --git a/ld/Makefile.in b/ld/Makefile.in index 30efab8..004ea3d 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -42,7 +42,7 @@ INSTALL_FILE = $(INSTALL) BASEDIR = ../.. INCLUDE = $(srcdir)/../include INCLUDES = -I. -I$(srcdir) -I$(INCLUDE) -DEBUG = -g +MINUS_G = -g # Where to find texinfo.tex to format docn with TeX TEXIDIR = $(srcdir)/../texinfo/fsf @@ -65,7 +65,7 @@ SCRIPTS = ldgld68k.sc ldgld.sc \ #### target and host dependent Makefile fragments come in here. ### -CFLAGS = $(INCLUDES) $(DEBUG) $(HDEFINES) $(TDEFINES) $(CDEFINES) +CFLAGS = $(INCLUDES) $(MINUS_G) $(HDEFINES) $(TDEFINES) $(CDEFINES) LINTFLAGS = $(INCLUDES) $(EXTRA_DEF) .SUFFIXES: .y .x .xr .xu .xn .xN .sc .scu .scr .scn $(SUFFIXES) @@ -174,8 +174,7 @@ ldgram.h ldgram.c: ldgram.y if [ -f y.tab.h -a ! -f ldgram.h ]; then mv y.tab.h ldgram.h; else true ; fi ldlex.c: ldlex.l - lex -t $(VPATH)/ldlex.l >ldlex.c - + lex -t $(VPATH)/ldlex.l >ldlex.c ldgld.c: $(srcdir)/ldtemplate sed -e s/"<ldtarget>"/ldgld/g -e s/"<arch>"/m68k/g \ |