diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-19 14:37:24 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-19 14:37:24 +0000 |
commit | 7a69d725bf6f24c25f7d7e74a650a799ecb5b0fc (patch) | |
tree | 78b667077fae226a1e94add50c2a22abe4cf910d | |
parent | de2ffa70ea5e5971b18f51d9dae6685be7f46272 (diff) | |
download | gcc-7a69d725bf6f24c25f7d7e74a650a799ecb5b0fc.zip gcc-7a69d725bf6f24c25f7d7e74a650a799ecb5b0fc.tar.gz gcc-7a69d725bf6f24c25f7d7e74a650a799ecb5b0fc.tar.bz2 |
(crtbegin.o, crtend.o): Specify -fno-inline-functions.
From-SVN: r5807
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 60b2dc7..0a0b783 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -787,11 +787,13 @@ sublibobjc.a: cc1obj libgcc2.ready # linked using GCC on system V, for the sake of C++ constructors. crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \ - -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o + -finhibit-size-directive -fno-inline-functions \ + -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \ - -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o + -finhibit-size-directive -fno-inline-functions \ + -g0 -c $(srcdir)/crtstuff.c -o crtend.o # Compiling object files from source files. |