20 lines
513 B
Plaintext
20 lines
513 B
Plaintext
|
# 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
|
||
|
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
|
||
|
|
||
|
# Build the libraries for both hard and soft floating point
|
||
|
|
||
|
MULTILIB_OPTIONS = msoft-float
|
||
|
MULTILIB_DIRNAMES = soft-float
|
||
|
|
||
|
LIBGCC = stmp-multilib
|
||
|
INSTALL_LIBGCC = install-multilib
|