This commit was manufactured by cvs2svn to create branch

'gcc-3_1-branch'.

From-SVN: r54354
This commit is contained in:
No Author 2002-06-07 23:35:32 +00:00
parent 85b1541a37
commit b6f12a23e7
1 changed files with 20 additions and 0 deletions

20
gcc/config/mips/t-netbsd Normal file
View File

@ -0,0 +1,20 @@
# 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
dp-bit.c: $(srcdir)/config/fp-bit.c
echo '#ifdef __MIPSEL__' > dp-bit.c
echo '#define FLOAT_BIT_ORDER_MISMATCH' >> dp-bit.c
echo '#endif' >> dp-bit.c
echo '#undef US_SOFTWARE_GOFAST' >> dp-bit.c
echo '#undef FLOAT' >> dp-bit.c
cat $(srcdir)/config/fp-bit.c >> dp-bit.c
fp-bit.c: $(srcdir)/config/fp-bit.c
echo '#ifdef __MIPSEL__' > fp-bit.c
echo '#define FLOAT_BIT_ORDER_MISMATCH' >> fp-bit.c
echo '#endif' >> fp-bit.c
echo '#undef US_SOFTWARE_GOFAST' >> fp-bit.c
echo '#define FLOAT' >> fp-bit.c
cat $(srcdir)/config/fp-bit.c >> fp-bit.c