From ac6366df266305227933c11526e3c8a84127ff8e Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 1 Oct 2017 12:50:53 +0200 Subject: [PATCH] debian/rules: For armel builds set -DARM_FP_ABI=hard and -DWITH_NEON=off. Fixes FTBFS on Debian armel. --- debian/rules | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/debian/rules b/debian/rules index c0218dd..3aa71da 100755 --- a/debian/rules +++ b/debian/rules @@ -12,6 +12,11 @@ ARM_FLOAT_ABI = -DARM_FP_ABI=hard else ARM_FLOAT_ABI = endif +ifneq (,$(filter armel,$(DEB_HOST_ARCH))) +ARM_FLOAT_ABI = -DARM_FP_ABI=hard -DWITH_NEON=off +else +ARM_FLOAT_ABI = +endif NULL =