[Buildroot] [git commit] botan: fix build on arm without neon

Thomas Petazzoni thomas.petazzoni at bootlin.com
Sat Sep 8 12:47:59 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=4aa2399cd6a7bb2a5fe599a9ba2cba2f6d961a97
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

configure.py only supports --disable-neon

Fixes:
 - http://autobuild.buildroot.org/results/26eec7e20795068613616a7312681853232ec764

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 package/botan/botan.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/botan/botan.mk b/package/botan/botan.mk
index 39a2c4c72b..e352fab6c9 100644
--- a/package/botan/botan.mk
+++ b/package/botan/botan.mk
@@ -74,6 +74,10 @@ ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),)
 BOTAN_CONF_OPTS += --disable-altivec
 endif
 
+ifeq ($(BR2_ARM_CPU_HAS_NEON),)
+BOTAN_CONF_OPTS += --disable-neon
+endif
+
 define BOTAN_CONFIGURE_CMDS
 	(cd $(@D); $(TARGET_MAKE_ENV) ./configure.py $(BOTAN_CONF_OPTS))
 endef


More information about the buildroot mailing list