diff options
author | H.J. Lu <hjl@gnu.org> | 1998-06-21 16:34:31 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-21 10:34:31 -0600 |
commit | 1442f4eb578f793a3695bf3c76d37d94586a1dd2 (patch) | |
tree | bca84a1492830f223fc89ab46d6d3a2052c08ae8 /gcc | |
parent | e4ad60fe62a6a62331573cafdd8c83e5b1c3ec63 (diff) | |
download | gcc-1442f4eb578f793a3695bf3c76d37d94586a1dd2.zip gcc-1442f4eb578f793a3695bf3c76d37d94586a1dd2.tar.gz gcc-1442f4eb578f793a3695bf3c76d37d94586a1dd2.tar.bz2 |
Forgot to commit last night:
* Makefile.in (crtbeginS.o, crtendS.o): Add -fno-exceptions and
-DCRTSTUFFS_O.
(INSTALL): cd $(srcdir) before make.
From-SVN: r20638
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd61e13..08ec519 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -12,6 +12,10 @@ Sun Jun 21 01:16:38 1998 John Wehle (john@feith.com) Sun Jun 21 00:42:20 1998 H.J. Lu (hjl@gnu.org) + * Makefile.in (crtbeginS.o, crtendS.o): Add -fno-exceptions and + -DCRTSTUFFS_O. + (INSTALL): cd $(srcdir) before make. + * flow.c (allocate_for_life_analysis, init_regset_vector): Remove declaration. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index f453172..b3e7d96 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1214,12 +1214,12 @@ crtbeginS.o crtendS.o: s-crtS ; @true s-crtS: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \ defaults.h frame.h gbl-ctors.h $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \ - -DCRT_BEGIN -finhibit-size-directive -fno-inline-functions \ - -g0 -c $(srcdir)/crtstuff.c + -DCRT_BEGIN -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \ + -fno-exceptions -g0 -c $(srcdir)/crtstuff.c mv crtstuff$(objext) crtbeginS$(objext) $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \ - -DCRT_END -finhibit-size-directive -fno-inline-functions \ - -g0 -c $(srcdir)/crtstuff.c -o crtendS$(objext) + -DCRT_END -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \ + -fno-exceptions -g0 -c $(srcdir)/crtstuff.c -o crtendS$(objext) touch s-crtS # Compile the start modules crt0.o and mcrt0.o that are linked with every program @@ -2108,8 +2108,8 @@ cpp.dvi: $(srcdir)/cpp.texi INSTALL: $(srcdir)/install1.texi $(srcdir)/install.texi - $(MAKEINFO) -D INSTALLONLY --no-header --no-split -o INSTALL \ - $(srcdir)/install1.texi + cd $(srcdir); $(MAKEINFO) -D INSTALLONLY --no-header \ + --no-split -o INSTALL install1.texi # # Deletion of files made during compilation. # There are four levels of this: |