aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 4cbcc80..00511bd 100755
--- a/configure
+++ b/configure
@@ -170,6 +170,11 @@ if [ "$ARCH" = "arm" ]; then
echo "$ASFLAGS" | grep -q -- '-mfloat-abi=' || ASFLAGS="$ASFLAGS -mfloat-abi=softfp"
fi
+ # must disable -mthumb as recompiler can't handle it
+ if check_define __thumb__; then
+ CFLAGS="$CFLAGS -mno-thumb"
+ fi
+
if [ "$have_armv7" = "yes" ]; then
ASFLAGS="$ASFLAGS --defsym HAVE_ARMV7=1"
else