From 7a69d725bf6f24c25f7d7e74a650a799ecb5b0fc Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 19 Oct 1993 14:37:24 +0000 Subject: [PATCH] (crtbegin.o, crtend.o): Specify -fno-inline-functions. From-SVN: r5807 --- gcc/Makefile.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 60b2dc769fd..0a0b78313d2 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. -- 2.30.2