diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-11-13 18:56:50 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-11-23 19:39:02 +0100 |
commit | 082ae9d1289fe20f8e96c30cfe05650c3e72eb02 (patch) | |
tree | b2b2f3012bace200ec53cd8330c103e24b226ac6 /test/math/Makefile.in | |
parent | 70c47188ecf16d626893b6f06c5843830c98fa35 (diff) |
mips: remove ISA choice
We don't add cpu specific CFLAGS to the build, so the
ISA config symbols for MIPS are noops.
Simple remove them.
Reported-By: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'test/math/Makefile.in')
-rw-r--r-- | test/math/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/math/Makefile.in b/test/math/Makefile.in index 147d579f4..9fbd58ab8 100644 --- a/test/math/Makefile.in +++ b/test/math/Makefile.in @@ -35,7 +35,7 @@ $(MDEPS): libm-test.c ULP_SUFFIX := ifeq ($(TARGET_ARCH),mips) -ULP_SUFFIX:=$(if $(CONFIG_MIPS_ISA_MIPS64R1)$(CONFIG_MIPS_ISA_MIPS64R2),64,32) +ULP_SUFFIX:=$(if $(CONFIG_MIPS_N64_ABI),64,32) endif TARGET_ULP := $(if $(wildcard libm-test-ulps-$(TARGET_ARCH)$(ULP_SUFFIX)),$(TARGET_ARCH)$(ULP_SUFFIX),generic) |