5b611f2dc6
GMP does not build if the host gcc is v4.9 due to the following error
gen-sieve.c: In function 'setmask':
gen-sieve.c:99:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (unsigned i = 0; i < 2 * a * b; ++i)
^
gen-sieve.c:99:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
The gen-sieve utility was added in GMP v6.3.0. It is built using
CC_FOR_BUILD (host compiler) during cross compilation as it generates
build files. Autoconf does not have a macro for add -std=c99 to
CC_FOR_BUILD, so it must be set manually. For the target, it is set
correctly thanks to the AC_PROG_CC_C99 macro.
Signed-off-by: Brandon Maier <brandon.maier@collins.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
(cherry picked from commit 9553dc9a55
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# gmp
|
|
#
|
|
################################################################################
|
|
|
|
GMP_VERSION = 6.3.0
|
|
GMP_SITE = $(BR2_GNU_MIRROR)/gmp
|
|
GMP_SOURCE = gmp-$(GMP_VERSION).tar.xz
|
|
GMP_INSTALL_STAGING = YES
|
|
GMP_LICENSE = LGPL-3.0+ or GPL-2.0+
|
|
GMP_LICENSE_FILES = COPYING.LESSERv3 COPYINGv2
|
|
GMP_CPE_ID_VENDOR = gmplib
|
|
GMP_DEPENDENCIES = host-m4
|
|
HOST_GMP_DEPENDENCIES = host-m4
|
|
|
|
GMP_CONF_ENV += CC_FOR_BUILD="$(HOSTCC) -std=c99"
|
|
|
|
# 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),y)
|
|
GMP_CONF_OPTS += --disable-assembly
|
|
endif
|
|
|
|
# GMP needs M extension for riscv assembly
|
|
ifeq ($(BR2_riscv):$(BR2_RISCV_ISA_RVM),y:)
|
|
GMP_CONF_OPTS += --disable-assembly
|
|
endif
|
|
|
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
|
GMP_CONF_OPTS += --enable-cxx
|
|
else
|
|
GMP_CONF_OPTS += --disable-cxx
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|