mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
math: Fix isnanf128 static build (BZ 31774)
Some static implementation of float128 routines might call __isnanf128, which is not provided by the static object. Checked on x86_64-linux-gnu. Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
This commit is contained in:
parent
ce6cdb94d0
commit
5d4999e519
@ -11,7 +11,11 @@
|
||||
#include "../ldbl-128/s_isnanl.c"
|
||||
#if !IS_IN (libm)
|
||||
#include <float128-abi.h>
|
||||
#ifdef SHARED
|
||||
hidden_ver (__isnanf128_impl, __isnanf128)
|
||||
#else
|
||||
strong_alias (__isnanf128_impl, __isnanf128)
|
||||
#endif
|
||||
_weak_alias (__isnanf128_impl, isnanl)
|
||||
versioned_symbol (libc, __isnanf128_impl, __isnanf128, GLIBC_2_34);
|
||||
#if (SHLIB_COMPAT (libc, FLOAT128_VERSION_M, GLIBC_2_34))
|
||||
|
Loading…
Reference in New Issue
Block a user