summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZakharov Vlad <Vladislav.Zakharov@synopsys.com>2016-08-15 17:41:47 +0300
committerPeter Korsgaard <peter@korsgaard.com>2016-08-16 07:53:41 +0200
commitcdf63517de2514a99d6fd55d109018f69a55aa9d (patch)
tree25ec4aace5b87e6b214c5f81b4db1c4c6d3ccf25
parent9c7b093d80f4b709494d3976e43d547893605ded (diff)
downloadbuildroot-cdf63517de2514a99d6fd55d109018f69a55aa9d.tar.gz
buildroot-cdf63517de2514a99d6fd55d109018f69a55aa9d.zip
gmp: disable assembly for arc
It has different inline assembly constraints that are not supported after update to gcc-6. Fixes: http://autobuild.buildroot.net/results/c91/c9143eec0834017d57d5352d6fc95b5fae38da00// and a lot of other failures of gmp-6.1.1 for ARC. Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/gmp/gmp.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gmp/gmp.mk b/package/gmp/gmp.mk
index 485bf7c0f3..420fd2f3fd 100644
--- a/package/gmp/gmp.mk
+++ b/package/gmp/gmp.mk
@@ -15,7 +15,7 @@ HOST_GMP_DEPENDENCIES = host-m4
# GMP doesn't support assembly for coldfire or mips r6 ISA yet
# Disable for ARM v7m since it has different asm constraints
-ifeq ($(BR2_m68k_cf)$(BR2_mips_32r6)$(BR2_mips_64r6)$(BR2_ARM_CPU_ARMV7M),y)
+ifeq ($(BR2_m68k_cf)$(BR2_mips_32r6)$(BR2_mips_64r6)$(BR2_ARM_CPU_ARMV7M)$(BR2_arc),y)
GMP_CONF_OPTS += --disable-assembly
endif
OpenPOWER on IntegriCloud