diff options
author | dfr <dfr@FreeBSD.org> | 1998-12-23 11:50:52 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-12-23 11:50:52 +0000 |
commit | 0d57a81a8be9e9b63084d2b57eaadc0e1d57f2b7 (patch) | |
tree | 1138e6074d535cddfb8dae7e5fd33e3a8508ef1b /lib/msun | |
parent | cb8b246a394601b9e5228fd27edfb6682da216ab (diff) | |
download | FreeBSD-src-0d57a81a8be9e9b63084d2b57eaadc0e1d57f2b7.zip FreeBSD-src-0d57a81a8be9e9b63084d2b57eaadc0e1d57f2b7.tar.gz |
Implement fpsetmask() and other fp*() functions. Programs should use
#include <ieeefp.h>
to access these functions instead of the i386 specific
#include <machine/floatingpoint.h>
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index a0ca740..c62ee87 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.1beta 93/09/24 -# $Id: Makefile,v 1.19 1997/04/15 14:05:28 bde Exp $ +# $Id: Makefile,v 1.20 1998/02/20 07:44:29 jb Exp $ # # ==================================================== # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -48,6 +48,7 @@ ARCH_SRCS = s_copysign.S s_copysignf.S # XXX Comment from NetBSD/Alpha: # XXX LINT SIGFPEs in e_exp.c's strtod(). FP underflow/denorm software # handling is broken (doesn't exist!) on the Alpha port. +CFLAGS += -mtrap-precision=i -mfp-trap-mode=su .elif ${MACHINE_ARCH} == "i386" ARCH= i387 ARCH_PREFIX= ${ARCH}_ |