461f08072f
Adjust the nettle package to use the BR2_ARM_CPU_ARM* option to disable the usage of assembly code on ARMv4 and ARMv5. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# nettle
|
|
#
|
|
################################################################################
|
|
|
|
NETTLE_VERSION = 2.7.1
|
|
NETTLE_SITE = http://www.lysator.liu.se/~nisse/archive
|
|
NETTLE_DEPENDENCIES = gmp
|
|
NETTLE_INSTALL_STAGING = YES
|
|
NETTLE_LICENSE = LGPLv2.1+
|
|
NETTLE_LICENSE_FILES = COPYING.LIB
|
|
# don't include openssl support for (unused) examples as it has problems
|
|
# with static linking
|
|
NETTLE_CONF_OPTS = --disable-openssl
|
|
|
|
# ARM assembly requires v6+ ISA
|
|
ifeq ($(BR2_ARM_CPU_ARMV4)$(BR2_ARM_CPU_ARMV5),y)
|
|
NETTLE_CONF_OPTS += --disable-assembler
|
|
endif
|
|
|
|
# ARM NEON, requires binutils 2.21+
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON)$(BR2_TOOLCHAIN_BUILDROOT)$(BR2_BINUTILS_VERSION_2_20_1),yy)
|
|
NETTLE_CONF_OPTS += --enable-arm-neon
|
|
else
|
|
NETTLE_CONF_OPTS += --disable-arm-neon
|
|
endif
|
|
|
|
define NETTLE_DITCH_DEBUGGING_CFLAGS
|
|
$(SED) '/CFLAGS/ s/ -ggdb3//' $(@D)/configure
|
|
endef
|
|
|
|
NETTLE_POST_EXTRACT_HOOKS += NETTLE_DITCH_DEBUGGING_CFLAGS
|
|
|
|
$(eval $(autotools-package))
|