mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Merge r195030 from project/mips into head by hand:
r195030 | gonzo | 2009-06-25 19:27:31 -0600 (Thu, 25 Jun 2009) | 4 lines
- Switch to libc softfloat from libgcc implementation. The problem
with latter is that it is not complete, fpsetXXX/fpgetXXX
functions are missing.
This commit is contained in:
parent
7eb498c3b5
commit
e1694bc9a6
1 changed files with 5 additions and 1 deletions
|
|
@ -115,6 +115,10 @@ LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
|
|||
# _fixsfsi _fixunssfsi _floatdidf _floatdisf
|
||||
.endif
|
||||
|
||||
.if ${TARGET_ARCH} == "mips"
|
||||
LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
|
||||
.endif
|
||||
|
||||
.if ${TARGET_ARCH} == "ia64"
|
||||
# from config/ia64/t-ia64
|
||||
LIB1ASMSRC = lib1funcs.asm
|
||||
|
|
@ -179,7 +183,7 @@ OBJ_GRPS = STD DIV
|
|||
#
|
||||
# Floating point emulation functions
|
||||
#
|
||||
.if ${TARGET_ARCH} == "armNOT_YET" || ${TARGET_ARCH} == "mips" || \
|
||||
.if ${TARGET_ARCH} == "armNOT_YET" || \
|
||||
${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "sparc64"
|
||||
|
||||
FPBIT_CFLAGS = -DFINE_GRAINED_LIBRARIES -DFLOAT
|
||||
|
|
|
|||
Loading…
Reference in a new issue