diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-06-20 11:00:03 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-07-04 00:34:01 +0200 |
commit | bc99774b9f30459fd8be04daac5a743e6d890c4c (patch) | |
tree | c6c62e8a822492e194d0b14ac16688685b608fb1 | |
parent | 9b63a0a021b1f6adfd258391489d6f593977a468 (diff) | |
download | buildroot-bc99774b9f30459fd8be04daac5a743e6d890c4c.tar.gz buildroot-bc99774b9f30459fd8be04daac5a743e6d890c4c.zip |
gmp: dissable assembly for armv7m
It has different assembly constraints which can't be satisfied. Fixes:
http://autobuild.buildroot.net/results/ac6/ac65384a325912788790ceafa7db657cef9382fa/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gmp/gmp.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/gmp/gmp.mk b/package/gmp/gmp.mk index 45571900cd..cdde794395 100644 --- a/package/gmp/gmp.mk +++ b/package/gmp/gmp.mk @@ -14,7 +14,8 @@ GMP_DEPENDENCIES = host-m4 HOST_GMP_DEPENDENCIES = host-m4 # GMP doesn't support assembly for coldfire or mips r6 ISA yet -ifeq ($(BR2_m68k_cf)$(BR2_mips_32r6)$(BR2_mips_64r6),y) +# 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) GMP_CONF_OPTS += --disable-assembly endif |