From db047c23a6b751e9681e1d2210e093bbf3c9d068 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 2 Oct 2016 17:29:17 -0500 Subject: Pass correct options to FFTS ARM builds --- lib/ffts/debian/rules | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/ffts/debian/rules b/lib/ffts/debian/rules index fe423d8..070c5fd 100755 --- a/lib/ffts/debian/rules +++ b/lib/ffts/debian/rules @@ -21,7 +21,11 @@ DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ ifneq (,$(findstring x86_64-,$(DEB_BUILD_GNU_TYPE))) cdbs_configure_flags := --enable-single --enable-sse --enable-shared --disable-rpath else ifneq (,$(findstring arm-,$(DEB_BUILD_GNU_TYPE))) - cdbs_configure_flags := --enable-single --enable-neon --enable-shared --disable-rpath + ifneq(,$(findstring armhf,$(DEB_HOST_ARCH))) + cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath + else +else ifneq (,$(findstring aarch64-,$(DEB_BUILD_GNU_TYPE))) + cdbs_configure_flags := --enable-single --enable-neon --float_abi=hard --enable-shared --disable-rpath else cdbs_configure_flags := --enable-single --enable-shared --disable-rpath endif -- cgit v1.2.1