diff options
| author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 00:36:18 +0000 |
|---|---|---|
| committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 00:36:18 +0000 |
| commit | 50b29379bc15d4db4402b1249dc9ae2cea04e59d (patch) | |
| tree | 0a0ecb964d30f25da719104d4788e3d67a18857e /gcc | |
| parent | 715aa07af87675ffe65d37e9572dc593f3f5def3 (diff) | |
| download | ppe42-gcc-50b29379bc15d4db4402b1249dc9ae2cea04e59d.tar.gz ppe42-gcc-50b29379bc15d4db4402b1249dc9ae2cea04e59d.zip | |
2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com>
* config/mips/t-iris6 (FPBIT): New. Added so that __unorddf2 is
included in libgcc.a.
(DPBIT): Likewise.
(dp-bit.c): Likewise.
(fp-bit.c): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37306 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 8 | ||||
| -rw-r--r-- | gcc/config/mips/t-iris6 | 15 |
2 files changed, 23 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ccb6c5c466d..d33c3c40d61 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com> + + * config/mips/t-iris6 (FPBIT): New. Added so that __unorddf2 is + included in libgcc.a. + (DPBIT): Likewise. + (dp-bit.c): Likewise. + (fp-bit.c): Likewise. + 2000-11-07 Nick Clifton <nickc@redhat.com> * config/m88k/m88k.h (GLOBAL_ASM_OP): Add missing tab. diff --git a/gcc/config/mips/t-iris6 b/gcc/config/mips/t-iris6 index 879c841eef1..01129b833eb 100644 --- a/gcc/config/mips/t-iris6 +++ b/gcc/config/mips/t-iris6 @@ -30,3 +30,18 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \ # -Wl,-exports_file,@shlib_map_file@ SHLIB_MKMAP = $(srcdir)/mkmap-flat.awk SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver + +# 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 '#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 '#define FLOAT' > fp-bit.c + echo '#undef US_SOFTWARE_GOFAST' >> fp-bit.c + cat $(srcdir)/config/fp-bit.c >> fp-bit.c |

