2002-02-01 18:16:02 +00:00
|
|
|
#
|
|
|
|
# This file was based on t-sol2 - x68 Solaris implementation. Actually,
|
|
|
|
# the source code to create crti.o anf crtn.o are exactly the same
|
|
|
|
# as the ones for Solaris. Later, we might want to have a RTEMS's
|
|
|
|
# version of these files.
|
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2002-05-09 20:02:13 +00:00
|
|
|
# We want fine grained libraries, so use the new code to build the
|
|
|
|
# floating point emulation libraries.
|
|
|
|
FPBIT = fp-bit.c
|
|
|
|
DPBIT = dp-bit.c
|
|
|
|
|
|
|
|
LIB2FUNCS_EXTRA = xp-bit.c
|
|
|
|
|
|
|
|
dp-bit.c: $(srcdir)/config/fp-bit.c
|
|
|
|
echo '#ifdef __LITTLE_ENDIAN__' > dp-bit.c
|
|
|
|
echo '#define FLOAT_BIT_ORDER_MISMATCH' >>dp-bit.c
|
|
|
|
echo '#endif' >> dp-bit.c
|
|
|
|
cat $(srcdir)/config/fp-bit.c >> dp-bit.c
|
|
|
|
|
|
|
|
fp-bit.c: $(srcdir)/config/fp-bit.c
|
|
|
|
echo '#define FLOAT' > fp-bit.c
|
|
|
|
echo '#ifdef __LITTLE_ENDIAN__' >> fp-bit.c
|
|
|
|
echo '#define FLOAT_BIT_ORDER_MISMATCH' >>fp-bit.c
|
|
|
|
echo '#endif' >> fp-bit.c
|
|
|
|
cat $(srcdir)/config/fp-bit.c >> fp-bit.c
|
|
|
|
|
|
|
|
xp-bit.c: $(srcdir)/config/fp-bit.c
|
|
|
|
echo '#define EXTENDED_FLOAT_STUBS' > xp-bit.c
|
|
|
|
cat $(srcdir)/config/fp-bit.c >> xp-bit.c
|
|
|
|
|
2005-06-03 03:28:44 +00:00
|
|
|
MULTILIB_OPTIONS = mtune=i486/mtune=pentium/mtune=pentiumpro/mtune=k6/mtune=athlon \
|
2002-05-09 20:02:13 +00:00
|
|
|
msoft-float mno-fp-ret-in-387
|
|
|
|
MULTILIB_DIRNAMES= m486 mpentium mpentiumpro k6 athlon soft-float nofp
|
|
|
|
MULTILIB_MATCHES = msoft-float=mno-m80387
|
|
|
|
MULTILIB_EXCEPTIONS = \
|
|
|
|
mno-fp-ret-in-387 \
|
2005-06-03 03:28:44 +00:00
|
|
|
mtune=i486/*mno-fp-ret-in-387* \
|
|
|
|
mtune=pentium/*msoft-float* mtune=pentium/*mno-fp-ret-in-387* \
|
|
|
|
mtune=pentiumpro/*msoft-float* mtune=pentiumpro/*mno-fp-ret-in-387* \
|
|
|
|
mtune=k6/*msoft-float* mtune=k6/*mno-fp-ret-in-387* \
|
|
|
|
mtune=athlon/*msoft-float* mtune=athlon/*mno-fp-ret-in-387*
|
2002-05-09 20:02:13 +00:00
|
|
|
|
|
|
|
EXTRA_MULTILIB_PARTS = crtbegin.o crtend.o
|
|
|
|
|
|
|
|
LIBGCC = stmp-multilib
|
|
|
|
INSTALL_LIBGCC = install-multilib
|