From 1e83c59823a676cbac1dc0d8c5ed02317a4456a6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 13 Jul 2013 15:03:35 +0200 Subject: [PATCH] (ARM NEON) Define -marm for --enable-neon --- qb/config.libs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 1af4a1f5cb..e19ac3b923 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -34,8 +34,8 @@ if [ "$HAVE_VIDEOCORE" = 'yes' ]; then fi if [ "$HAVE_NEON" = "yes" ]; then - CFLAGS="$CFLAGS -mfpu=neon" - CXXFLAGS="$CXXFLAGS -mfpu=neon" + CFLAGS="$CFLAGS -mfpu=neon -marm" + CXXFLAGS="$CXXFLAGS -mfpu=neon -marm" ASFLAGS="$ASFLAGS -mfpu=neon" fi