]> gcc.gnu.org Git - gcc.git/commitdiff
Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of crtstuff.c.
authorJeffrey A Law <law@cygnus.com>
Fri, 7 Jan 2000 08:56:40 +0000 (08:56 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 7 Jan 2000 08:56:40 +0000 (01:56 -0700)
        * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
        crtstuff.c.
        (crtbegin.o, s-crtS): Likewise.

From-SVN: r31271

gcc/ChangeLog
gcc/Makefile.in

index 86e1dda9819a914745087ed69b5fdab5371823c0..90b18b79a74e7513b405d474ff0a509b237b50e8 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jan  7 01:55:34 2000  Jeffrey A Law  (law@cygnus.com)
+
+       * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
+       crtstuff.c.
+       (crtbegin.o, s-crtS): Likewise.
+
 2000-01-06  Richard Henderson  <rth@cygnus.com>
 
        * alpha.md (adddi_2+1): Limit offset such that it will be
index 220f905cfc129413cc4ab38fc8e6702d6de26bb9..4fc389238e095674ca5d92b3a9222124b6549514 100644 (file)
@@ -1265,13 +1265,15 @@ stmp-multilib-sub:
 $(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
   defaults.h frame.h gbl-ctors.h stmp-int-hdrs
        $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
-         -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS) \
+         -finhibit-size-directive -fno-inline-functions \
+         -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
          -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o $(T)crtbegin$(objext)
 
 $(T)crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
   defaults.h frame.h gbl-ctors.h stmp-int-hdrs
        $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
-         -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS) \
+         -finhibit-size-directive -fno-inline-functions \
+         -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
          -c $(srcdir)/crtstuff.c -DCRT_END -o $(T)crtend$(objext)
 
 # On some systems we also want to install versions of these files
@@ -1281,12 +1283,14 @@ crtbeginS.o crtendS.o: s-crtS ; @true
 s-crtS: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
   defaults.h frame.h gbl-ctors.h stmp-int-hdrs
        $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
-         -DCRT_BEGIN -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \
-         -fno-exceptions -g0 -c $(srcdir)/crtstuff.c
+         -DCRT_BEGIN -DCRTSTUFFS_O -finhibit-size-directive \
+         -fno-inline-functions -fno-exceptions @inhibit_libc@ -g0 \
+         -c $(srcdir)/crtstuff.c
        mv crtstuff$(objext) crtbeginS$(objext)
        $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
-         -DCRT_END -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \
-         -fno-exceptions -g0 -c $(srcdir)/crtstuff.c -o crtendS$(objext)
+         -DCRT_END -DCRTSTUFFS_O -finhibit-size-directive \
+         -fno-inline-functions -fno-exceptions @inhibit_libc@ -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
This page took 0.076773 seconds and 5 git commands to generate.