aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Shebs <stanshebs@google.com>2018-01-22 13:04:00 -0800
committerStan Shebs <stanshebs@google.com>2019-04-29 20:05:48 -0700
commite5da52d6813f54358e76c9ce3c5b97b7a6065ffb (patch)
tree38e56229eb87659b1841cf53ae827f9a8571b9c9
parent60c5087acb124f57b6535fe19655229e66d669c3 (diff)
downloadglibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.tar
glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.tar.gz
glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.tar.bz2
glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.zip
Suppress tgmath3 tests if clang
-rw-r--r--math/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile
index 76e8edac19..01950d4997 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -361,9 +361,11 @@ tgmath3-macros = atan2 cbrt ceil copysign erf erfc exp2 expm1 fdim floor \
fromfp fromfpx ufromfp ufromfpx totalorder totalordermag \
scalb
tgmath3-macro-tests = $(addprefix test-tgmath3-,$(tgmath3-macros))
+# Suppress these tests with clang for now, multiple issues
+ifneq ($(with-clang),yes)
tests += $(tgmath3-macro-tests)
generated += $(addsuffix .c,$(tgmath3-macro-tests))
-
+endif
$(tgmath3-macro-tests:%=$(objpfx)%.o): CFLAGS += -fno-builtin
$(foreach m,$(tgmath3-macros),\