diff options
author | Doug Evans <dje@gnu.org> | 1994-12-05 21:59:27 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-12-05 21:59:27 +0000 |
commit | c0a39485139bc6991dabea1287178fa654c78285 (patch) | |
tree | 0c20ca2d67246b8784ae659eec2972a20188393b | |
parent | 4ac75a4ea0b47ca6476d70c377196f978b5b6469 (diff) | |
download | gcc-c0a39485139bc6991dabea1287178fa654c78285.zip gcc-c0a39485139bc6991dabea1287178fa654c78285.tar.gz gcc-c0a39485139bc6991dabea1287178fa654c78285.tar.bz2 |
(LIB2FUNCS_EXTRA): Compile fp-bit.c
From-SVN: r8610
-rw-r--r-- | gcc/config/sparc/t-sparcbare | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/config/sparc/t-sparcbare b/gcc/config/sparc/t-sparcbare index 5cda064..a1bea24 100644 --- a/gcc/config/sparc/t-sparcbare +++ b/gcc/config/sparc/t-sparcbare @@ -4,6 +4,18 @@ CROSS_LIBGCC1 = libgcc1-asm.a LIB1ASMSRC = sparc/lb1spc.asm LIB1ASMFUNCS = _mulsi3 _divsi3 _modsi3 +# These are really part of libgcc1, but this will cause them to be +# built correctly, so... + +LIB2FUNCS_EXTRA = fp-bit.c dp-bit.c + +dp-bit.c: $(srcdir)/config/fp-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 + cat $(srcdir)/config/fp-bit.c >> fp-bit.c + # MULTILIB_OPTIONS should have msparclite too, but we'd have to make # gas build... MULTILIB_OPTIONS=msoft-float mv8 |