diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2000-04-07 16:57:58 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2000-04-07 16:57:58 +0200 |
commit | a9e6777fb2b223619cac9bd838b924dad53498c2 (patch) | |
tree | 059328300598c5c58404c5a9afb88bd4754201fc /gcc/config | |
parent | 000ca3735db480acadfa250f51271907951790d6 (diff) | |
download | gcc-a9e6777fb2b223619cac9bd838b924dad53498c2.zip gcc-a9e6777fb2b223619cac9bd838b924dad53498c2.tar.gz gcc-a9e6777fb2b223619cac9bd838b924dad53498c2.tar.bz2 |
t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
* config/sparc/t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
* Makefile.in: Build crtbeginS and crtendS like crtbegin and
crtend so they can be multilibbed.
(STAGESTUFF): Remove s-crt and s-crtS.
From-SVN: r33003
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/sparc/t-linux64 | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/config/sparc/t-linux64 b/gcc/config/sparc/t-linux64 index bf81219..2a3ec4b 100644 --- a/gcc/config/sparc/t-linux64 +++ b/gcc/config/sparc/t-linux64 @@ -8,16 +8,3 @@ LIBGCC = stmp-multilib INSTALL_LIBGCC = install-multilib EXTRA_MULTILIB_PARTS=crtbegin.o crtend.o crtbeginS.o crtendS.o - -tcrtbeginS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \ - defaults.h frame.h gbl-ctors.h - $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \ - -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) \ - -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o tcrtbeginS$(objext) - -tcrtendS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \ - defaults.h frame.h gbl-ctors.h - $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \ - -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) \ - -c $(srcdir)/crtstuff.c -DCRT_END -o tcrtendS$(objext) - |