(crtbegin.o, crtend.o): Specify -fno-inline-functions.

From-SVN: r5807
This commit is contained in:
Richard Stallman 1993-10-19 14:37:24 +00:00
parent de2ffa70ea
commit 7a69d725bf
1 changed files with 4 additions and 2 deletions

View File

@ -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.