cdf63517de
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>
24 lines
747 B
Makefile
24 lines
747 B
Makefile
################################################################################
|
|
#
|
|
# gmp
|
|
#
|
|
################################################################################
|
|
|
|
GMP_VERSION = 6.1.1
|
|
GMP_SITE = $(BR2_GNU_MIRROR)/gmp
|
|
GMP_SOURCE = gmp-$(GMP_VERSION).tar.xz
|
|
GMP_INSTALL_STAGING = YES
|
|
GMP_LICENSE = LGPLv3+ or GPLv2+
|
|
GMP_LICENSE_FILES = COPYING.LESSERv3 COPYINGv2
|
|
GMP_DEPENDENCIES = host-m4
|
|
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)$(BR2_arc),y)
|
|
GMP_CONF_OPTS += --disable-assembly
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|