bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
20 lines
509 B
Plaintext
20 lines
509 B
Plaintext
# CRX Target Makefile
|
|
|
|
# Mingw specific compilation fixes
|
|
USE_COLLECT2 =
|
|
STMP_FIXINC =
|
|
|
|
# Software emulation for integer div and mod
|
|
LIB2FUNCS_EXTRA = $(srcdir)/config/udivmodsi4.c $(srcdir)/config/udivmod.c $(srcdir)/config/divmod.c
|
|
|
|
# Build the floating point emulation libraries.
|
|
FPBIT = fp-bit.c
|
|
DPBIT = 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
|
|
|
|
dp-bit.c: $(srcdir)/config/fp-bit.c
|
|
cat $(srcdir)/config/fp-bit.c > dp-bit.c
|