diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-21 22:26:57 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-06 23:43:55 +0100 |
commit | 461f08072f0ae06c98ae5e72ef2dbb266a2672f9 (patch) | |
tree | f8adec53e35cc57a42c5e328d646cdbf494ef642 | |
parent | a5ca78d84225c2dde1dd0ed5a43a0e270a335a0a (diff) | |
download | buildroot-461f08072f0ae06c98ae5e72ef2dbb266a2672f9.tar.gz buildroot-461f08072f0ae06c98ae5e72ef2dbb266a2672f9.zip |
nettle: use the BR2_ARM_CPU_ARM* options
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>
-rw-r--r-- | package/nettle/nettle.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/nettle/nettle.mk b/package/nettle/nettle.mk index e73a718318..a25bb24322 100644 --- a/package/nettle/nettle.mk +++ b/package/nettle/nettle.mk @@ -15,7 +15,7 @@ NETTLE_LICENSE_FILES = COPYING.LIB NETTLE_CONF_OPTS = --disable-openssl # ARM assembly requires v6+ ISA -ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_arm926t)$(BR2_fa526)$(BR2_strongarm)$(BR2_xscale)$(BR2_iwmmxt),y) +ifeq ($(BR2_ARM_CPU_ARMV4)$(BR2_ARM_CPU_ARMV5),y) NETTLE_CONF_OPTS += --disable-assembler endif |