diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-11 10:17:11 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-11 10:17:11 +0000 |
commit | fb6604097b9837e0e07cb3ec3237fa43eaffc573 (patch) | |
tree | 14d0a8262991b34d34d7245490d3684f5fc97a58 /Makefile.in | |
parent | b662efeddc27736be5248e083eca79f5eaf8ecd3 (diff) | |
download | gdb-fb6604097b9837e0e07cb3ec3237fa43eaffc573.zip gdb-fb6604097b9837e0e07cb3ec3237fa43eaffc573.tar.gz gdb-fb6604097b9837e0e07cb3ec3237fa43eaffc573.tar.bz2 |
add GCCVERBOSE flag for debugging
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 87cde20..fd744e9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -16,7 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ # -# Last Mod Thu Nov 7 18:50:14 PST 1991, by rich@sendai +# Last Mod Mon Nov 11 01:53:12 PST 1991, by rich@rtl.cygnus.com # # $Id$ @@ -42,6 +42,10 @@ OTHERS = ALL = all.normal INSTALL_HEADERS = install-headers INSTALL_FIXED_INCLUDES = install-fixed-includes + +### for debugging +#GCCVERBOSE=-v + #### host and target specific makefile fragments come in here. ### @@ -104,11 +108,12 @@ pass: cp $(srcdir)/gcc/gstdarg.h $(unsubdir)/gas$(subdir)/stdarg.h $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" \ "CC=`pwd`/$(unsubdir)/gcc$(subdir)/$(stagepass)/gcc \ - -O \ + -O $(GCCVERBOSE) \ -B`pwd`/$(unsubdir)/gcc$(subdir)/$(stagepass)/ \ -B`pwd`/$(unsubdir)/gas$(subdir)/$(stagepass)/ \ -B`pwd`/$(unsubdir)/ld$(subdir)/$(stagepass)/" \ "AR=`pwd`/$(unsubdir)/binutils$(subdir)/$(stagepass)/ar" \ + "LD=`pwd`/$(unsubdir)/ld$(subdir)/$(stagepass)/ld $(GCCVERBOSE)" \ "RANLIB=`pwd`/$(unsubdir)/binutils$(subdir)/$(stagepass)/ranlib" \ "LOADLIBES=`pwd`/$(unsubdir)/gnulib$(subdir)/$(stagepass)/gnulib.a /lib/libc.a" \ "LDFLAGS=-nostdlib /lib/crt0.o \ |