diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-06-04 08:30:32 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-06-04 08:30:32 +0000 |
commit | c6166d8f1b0f7b497a054c640ebf4cb2096f82b9 (patch) | |
tree | 47fad934e6a71fbfbe2e24ab1ee4c2ce336a6775 /contrib/gcc/config/i386/t-sol2 | |
parent | 14eaea6f7df0c47fa58497182ed29cfcb9a341d3 (diff) |
This commit was manufactured by cvs2svn to create tagvendor/gcc/cvs-20000603
'gcc-vendor-gcc_cvs_20000603'.
Notes
Notes:
svn path=/vendor/gcc/dist/; revision=61241
svn path=/vendor/gcc/cvs-20000603/; revision=61243; tag=vendor/gcc/cvs-20000603
Diffstat (limited to 'contrib/gcc/config/i386/t-sol2')
-rw-r--r-- | contrib/gcc/config/i386/t-sol2 | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/gcc/config/i386/t-sol2 b/contrib/gcc/config/i386/t-sol2 deleted file mode 100644 index 5dc59cc375ed..000000000000 --- a/contrib/gcc/config/i386/t-sol2 +++ /dev/null @@ -1,40 +0,0 @@ -# we need to supply our own assembly versions of libgcc1.c files, -# since the user may not have native 'cc' available - -LIBGCC1 = libgcc1.null -CROSS_LIBGCC1 = libgcc1.null - -# gmon build rule: -gmon.o: $(srcdir)/config/i386/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H) - $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \ - -c $(srcdir)/config/i386/gmon-sol2.c -o gmon.o - -# Assemble startup files. -# Apparently Sun believes that assembler files don't need comments, because no -# single ASCII character is valid (tried them all). So we manually strip out -# the comments with sed. This bug may only be in the Early Access releases. -gcrt1.o: $(srcdir)/config/i386/sol2-gc1.asm - sed -e '/^!/d' <$(srcdir)/config/i386/sol2-gc1.asm >gcrt1.s - $(AS) -o gcrt1.o gcrt1.s -crt1.o: $(srcdir)/config/i386/sol2-c1.asm $(GCC_PASSES) - sed -e '/^!/d' <$(srcdir)/config/i386/sol2-c1.asm >crt1.s - $(GCC_FOR_TARGET) -c -o crt1.o crt1.s -crti.o: $(srcdir)/config/i386/sol2-ci.asm $(GCC_PASSES) - sed -e '/^!/d' <$(srcdir)/config/i386/sol2-ci.asm >crti.s - $(GCC_FOR_TARGET) -c -o crti.o crti.s -crtn.o: $(srcdir)/config/i386/sol2-cn.asm $(GCC_PASSES) - sed -e '/^!/d' <$(srcdir)/config/i386/sol2-cn.asm >crtn.s - $(GCC_FOR_TARGET) -c -o crtn.o crtn.s - -# We need to use -fPIC when we are using gcc to compile the routines in -# crtstuff.c. This is only really needed when we are going to use gcc/g++ -# to produce a shared library, but since we don't know ahead of time when -# we will be doing that, we just always use -fPIC when compiling the -# routines in crtstuff.c. -# -# We must also enable optimization to avoid having any code appear after -# the call & alignment statement, but before we switch back to the -# .text section. - -CRTSTUFF_T_CFLAGS = -fPIC -O2 -TARGET_LIBGCC2_CFLAGS = -fPIC |