[PATCH v2 08/10] math: Provided copysignf128 for static libm on alpha, s390, and sparcv9

Adhemerval Zanella adhemerval.zanella@linaro.org
Wed Mar 27 19:40:22 GMT 2024


Checked with a static build for the affected ABIs.
---
 math/Makefile                             | 1 +
 sysdeps/ieee754/ldbl-64-128/s_copysignl.c | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/math/Makefile b/math/Makefile
index 516fa72a26..61736159d1 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -371,6 +371,7 @@ libm-test-funcs-auto-static = \
   exp10 \
   # libm-test-funcs-auto-static
 libm-test-funcs-noauto-static = \
+  copysign \
   fmod \
   isnan \
   # libm-test-funcs-noauto-static
diff --git a/sysdeps/ieee754/ldbl-64-128/s_copysignl.c b/sysdeps/ieee754/ldbl-64-128/s_copysignl.c
index 11b42d04ba..80137847d3 100644
--- a/sysdeps/ieee754/ldbl-64-128/s_copysignl.c
+++ b/sysdeps/ieee754/ldbl-64-128/s_copysignl.c
@@ -1,10 +1,10 @@
 #include <math_ldbl_opt.h>
 #include <libm-alias-ldouble.h>
-#if IS_IN (libc)
+#if IS_IN (libc) && defined SHARED
 # undef libm_alias_ldouble
 # define libm_alias_ldouble(from, to)
 #endif
 #include <sysdeps/ieee754/ldbl-128/s_copysignl.c>
-#if IS_IN (libc)
+#if IS_IN (libc) && defined SHARED
 long_double_symbol (libc, __copysignl, copysignl);
 #endif
-- 
2.34.1



More information about the Libc-alpha mailing list