diff options
author | Stan Shebs <stanshebs@google.com> | 2018-01-22 13:04:00 -0800 |
---|---|---|
committer | Stan Shebs <stanshebs@google.com> | 2019-04-29 20:05:48 -0700 |
commit | e5da52d6813f54358e76c9ce3c5b97b7a6065ffb (patch) | |
tree | 38e56229eb87659b1841cf53ae827f9a8571b9c9 | |
parent | 60c5087acb124f57b6535fe19655229e66d669c3 (diff) | |
download | glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.zip glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.tar.gz glibc-e5da52d6813f54358e76c9ce3c5b97b7a6065ffb.tar.bz2 |
Suppress tgmath3 tests if clang
-rw-r--r-- | math/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index 76e8eda..01950d4 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),\ |