diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/math/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/math/Makefile b/test/math/Makefile index 7ad92b10b..9e200269f 100644 --- a/test/math/Makefile +++ b/test/math/Makefile @@ -10,6 +10,11 @@ include ../Test.mak DODIFF_rint := 1 +# NOTE: For basic-test we must disable the floating point optimization. +# Only for sh architecture because in the other architecture are disabled. +ifeq ($(TARGET_ARCH),sh) +CFLAGS_basic-test := -mieee +endif EXTRA_CFLAGS := -DNO_LONG_DOUBLE -fno-builtin EXTRA_LDFLAGS := -lm |