Bump buidlroot version to 2018.02.6
This commit is contained in:
39
bsp/buildroot/package/mpir/mpir.mk
Normal file
39
bsp/buildroot/package/mpir/mpir.mk
Normal file
@@ -0,0 +1,39 @@
|
||||
################################################################################
|
||||
#
|
||||
# mpir
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MPIR_VERSION = 3.0.0
|
||||
MPIR_SITE = http://www.mpir.org
|
||||
MPIR_SOURCE = mpir-$(MPIR_VERSION).tar.bz2
|
||||
MPIR_LICENSE = LGPL-3.0+
|
||||
MPIR_LICENSE_FILES = COPYING.LIB
|
||||
MPIR_INSTALL_STAGING = YES
|
||||
MPIR_DEPENDENCIES = gmp host-yasm
|
||||
|
||||
ifeq ($(BR2_MIPS_NABI32),y)
|
||||
MPIR_CONF_OPTS += ABI=n32
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_MIPS_NABI64),y)
|
||||
MPIR_CONF_OPTS += ABI=64
|
||||
endif
|
||||
|
||||
# The optimized ARM assembly code uses ARM-only (i.e not Thumb1/2
|
||||
# compatible) instructions.
|
||||
ifeq ($(BR2_arm)$(BR2_armeb):$(BR2_ARM_CPU_HAS_ARM),y:)
|
||||
MPIR_CONF_ENV += MPN_PATH="generic"
|
||||
endif
|
||||
|
||||
# Optimized mips32/mips64 code not suitable for mips32r6/mips64r6
|
||||
ifeq ($(BR2_MIPS_CPU_MIPS32R6)$(BR2_MIPS_CPU_MIPS64R6),y)
|
||||
MPIR_CONF_ENV += MPN_PATH="generic"
|
||||
endif
|
||||
|
||||
# Optimized powerpc64 code is not suitable for powerpc64le
|
||||
ifeq ($(BR2_powerpc64le),y)
|
||||
MPIR_CONF_ENV += MPN_PATH="generic"
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user