gmp: Enable ASM for ARC again
authorAlexey Brodkin <Alexey.Brodkin@synopsys.com>
Fri, 5 May 2017 12:35:20 +0000 (15:35 +0300)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 5 May 2017 19:26:34 +0000 (21:26 +0200)
This commit reverts cdf63517de25 "gmp: disable assembly for arc"
as in GMP v6.1.2 there's already a proper fix for ASM constraints, see
https://gmplib.org/repo/gmp/rev/58879634af3ci

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/gmp/gmp.mk

index 5ea79ae75410b9c720bb7c0cfb6ab2dbee05716b..7236e37bb4bc0ea4e13b000355f3cda39cc4760f 100644 (file)
@@ -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_CPU_MIPS32R6)$(BR2_MIPS_CPU_MIPS64R6)$(BR2_ARM_CPU_ARMV7M)$(BR2_arc),y)
+ifeq ($(BR2_m68k_cf)$(BR2_MIPS_CPU_MIPS32R6)$(BR2_MIPS_CPU_MIPS64R6)$(BR2_ARM_CPU_ARMV7M),y)
 GMP_CONF_OPTS += --disable-assembly
 endif