about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-23 15:31:37 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-23 15:34:36 +0100
commitbe080b6c143901d998c91f28ef7b2fe4a25c0237 (patch)
treed60dae8294c1315611d68c21c8677219667062f7 /sysdeps/aarch64/fpu
parent5062680c602c27c9128ae2e38d199df22a8c2d38 (diff)
downloadglibc-be080b6c143901d998c91f28ef7b2fe4a25c0237.tar.gz
glibc-be080b6c143901d998c91f28ef7b2fe4a25c0237.tar.xz
glibc-be080b6c143901d998c91f28ef7b2fe4a25c0237.zip
aarch64: Add missing math Makefile for recent commit
Without -fno-math-errno, the builtins just do a call instead of
inlining a single instruction.
Diffstat (limited to 'sysdeps/aarch64/fpu')
-rw-r--r--sysdeps/aarch64/fpu/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/aarch64/fpu/Makefile b/sysdeps/aarch64/fpu/Makefile
new file mode 100644
index 0000000000..bf38f2c589
--- /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