mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Merge r195030 from project/mips to 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
87e925fb53
commit
52e0ea7a0d
2 changed files with 19 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ NOASM=
|
|||
.include "${.CURDIR}/rpc/Makefile.inc"
|
||||
.include "${.CURDIR}/uuid/Makefile.inc"
|
||||
.include "${.CURDIR}/xdr/Makefile.inc"
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "mips"
|
||||
.include "${.CURDIR}/softfloat/Makefile.inc"
|
||||
.endif
|
||||
.if ${MK_NIS} != "no"
|
||||
|
|
|
|||
|
|
@ -61,4 +61,22 @@ FBSDprivate_1.0 {
|
|||
minbrk;
|
||||
_brk;
|
||||
_sbrk;
|
||||
|
||||
/* softfloat */
|
||||
__addsf3;
|
||||
__adddf3;
|
||||
__subsf3;
|
||||
__subdf3;
|
||||
__mulsf3;
|
||||
__muldf3;
|
||||
__divsf3;
|
||||
__divdf3;
|
||||
__floatsisf;
|
||||
__floatsidf;
|
||||
__fixsfsi;
|
||||
__fixdfsi;
|
||||
__fixunssfsi;
|
||||
__fixunsdfsi;
|
||||
__extendsfdf2;
|
||||
__truncdfsf2;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue