Disable floating point on PowerPC for the ficl library.

This commit is contained in:
grehan 2003-12-10 09:10:54 +00:00
parent 47a0ac1bfe
commit a9f09ccdea

View File

@ -17,6 +17,9 @@ CFLAGS+= -mno-fp-regs
.if ${MACHINE_ARCH} == "i386"
CFLAGS+= -mpreferred-stack-boundary=2
.endif
.if ${MACHINE_ARCH} == "powerpc"
CFLAGS+= -msoft-float
.endif
.if ${MACHINE} == "pc98"
CFLAGS+= -DPC98
.endif