Stop libficl from using floating point registers - this was cauing

dictDelete() to fault early on the Alpha and was the original cause of
the Alpha ficl failures.
This commit is contained in:
Peter Wemm 2000-05-12 21:51:20 +00:00
parent 72c520e887
commit 4887dfcfd4

View file

@ -4,6 +4,9 @@
BASE_SRCS= dict.c ficl.c math64.c stack.c vm.c words.c
SRCS= ${BASE_SRCS} sysdep.c softcore.c
CLEANFILES= softcore.c testmain testmain.o
.if ${MACHINE_ARCH} == "alpha"
CFLAGS+= -mno-fp-regs
.endif
.ifmake testmain
CFLAGS+= -DTESTMAIN -D_TESTMAIN
SRCS+= testmain.c