diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2017-05-05 15:35:20 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-05-05 21:26:34 +0200 |
commit | ec4c7b140cf59928d82a3e462a9924bdc8743d96 (patch) | |
tree | b410c04699f3348fce2d37239861191a5ef8ffe4 | |
parent | e8e20c8022fe11efe1831df5d6fdd2542f271991 (diff) | |
download | buildroot-ec4c7b140cf59928d82a3e462a9924bdc8743d96.tar.gz buildroot-ec4c7b140cf59928d82a3e462a9924bdc8743d96.zip |
gmp: Enable ASM for ARC again
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>
-rw-r--r-- | package/gmp/gmp.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gmp/gmp.mk b/package/gmp/gmp.mk index 5ea79ae754..7236e37bb4 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_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 |