1ec9588a65
It's still not supported/implemented, fixes: http://autobuild.buildroot.net/results/d06/d0686b3e7b8884f93034d4ea4b79fa8590ffa221/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
573 B
Makefile
22 lines
573 B
Makefile
################################################################################
|
|
#
|
|
# gmp
|
|
#
|
|
################################################################################
|
|
|
|
GMP_VERSION = 6.0.0a
|
|
GMP_SITE = $(BR2_GNU_MIRROR)/gmp
|
|
GMP_SOURCE = gmp-$(GMP_VERSION).tar.xz
|
|
GMP_INSTALL_STAGING = YES
|
|
GMP_LICENSE = LGPLv3+
|
|
GMP_LICENSE_FILES = COPYING.LESSERv3
|
|
GMP_DEPENDENCIES = host-m4
|
|
|
|
# GMP doesn't support assembly for r6 ISA yet
|
|
ifeq ($(BR2_mips_32r6)$(BR2_mips_64r6),y)
|
|
GMP_CONF_OPTS += --disable-assembly
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|