mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
72c520e887
commit
4887dfcfd4
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue