arm: automatically disable thumb
authornotaz <notasas@gmail.com>
Mon, 23 Jul 2012 23:51:43 +0000 (02:51 +0300)
committernotaz <notasas@gmail.com>
Mon, 23 Jul 2012 23:51:47 +0000 (02:51 +0300)
recompiler can't handle it

configure

index 4cbcc80..00511bd 100755 (executable)
--- a/configure
+++ b/configure
@@ -170,6 +170,11 @@ if [ "$ARCH" = "arm" ]; then
     echo "$ASFLAGS" | grep -q -- '-mfloat-abi=' || ASFLAGS="$ASFLAGS -mfloat-abi=softfp"
   fi
 
     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
   if [ "$have_armv7" = "yes" ]; then
     ASFLAGS="$ASFLAGS --defsym HAVE_ARMV7=1"
   else