Module Name:    src
Committed By:   riastradh
Date:           Sun May  5 14:53:22 UTC 2024

Modified Files:
        src/lib/libm: Makefile

Log Message:
libm: No s_rintl.c on mips32.

This is only for machines where long double is not double.

Not 100% sure this is the right criterion, but there's a good chance
it is.


To generate a diff of this commit:
cvs rdiff -u -r1.229 -r1.230 src/lib/libm/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libm/Makefile
diff -u src/lib/libm/Makefile:1.229 src/lib/libm/Makefile:1.230
--- src/lib/libm/Makefile:1.229	Sun May  5 11:07:49 2024
+++ src/lib/libm/Makefile	Sun May  5 14:53:22 2024
@@ -1,4 +1,4 @@
-#  $NetBSD: Makefile,v 1.229 2024/05/05 11:07:49 riastradh Exp $
+#  $NetBSD: Makefile,v 1.230 2024/05/05 14:53:22 riastradh Exp $
 #
 #  @(#)Makefile 5.1beta 93/09/24
 #
@@ -206,9 +206,9 @@ ARCH_SRCS += s_fma.S s_fmaf.S
 .if ${MKSOFTFLOAT} == "no"
 COMMON_SRCS += fenv.c
 .endif
-COMMON_SRCS+= s_rintl.c
 .if ${MACHINE_MIPS64} && (!defined(CPUFLAGS) || empty(CPUFLAGS:M-mabi=32))
 COMMON_SRCS+= s_nexttoward.c
+COMMON_SRCS+= s_rintl.c
 .endif
 COMMON_SRCS+= s_fma.c s_fmaf.c s_fmal.c
 

Reply via email to