From: Szabolcs Nagy Date: Mon, 23 Oct 2017 14:31:37 +0000 (+0100) Subject: aarch64: Add missing math Makefile for recent commit X-Git-Tag: glibc-2.27~623 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be080b6c143901d998c91f28ef7b2fe4a25c0237;p=thirdparty%2Fglibc.git aarch64: Add missing math Makefile for recent commit Without -fno-math-errno, the builtins just do a call instead of inlining a single instruction. --- diff --git a/ChangeLog b/ChangeLog index 4a011b136b6..1316b401ae4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -55,7 +55,8 @@ with __builtin_trunc. * sysdeps/aarch64/fpu/s_truncf.c (__truncf): Replace asm statements with __builtin_truncf. - * sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno. + * sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno, + and s_l[l]round[f].c too. 2017-10-23 Alan Modra diff --git a/sysdeps/aarch64/fpu/Makefile b/sysdeps/aarch64/fpu/Makefile new file mode 100644 index 00000000000..bf38f2c589e --- /dev/null +++ b/sysdeps/aarch64/fpu/Makefile @@ -0,0 +1,8 @@ +ifeq ($(subdir),math) +CFLAGS-e_sqrtf.c += -fno-math-errno +CFLAGS-e_sqrt.c += -fno-math-errno +CFLAGS-s_lroundf.c += -fno-math-errno +CFLAGS-s_lround.c += -fno-math-errno +CFLAGS-s_llroundf.c += -fno-math-errno +CFLAGS-s_llround.c += -fno-math-errno +endif