Always define __ARM_EABI__ when compiling for ARM.
authorAlex Rønne Petersen <alexrp@xamarin.com>
Fri, 17 May 2013 22:03:08 +0000 (00:03 +0200)
committerAlex Rønne Petersen <alexrp@xamarin.com>
Fri, 17 May 2013 22:04:34 +0000 (00:04 +0200)
We don't actually support any non-AAPCS ABI.

configure.in

index 70ed2846caaf4f50fa606a95f46507b8533b96e4..83d8fdafaed76edf5f2381f19baa8110afde8476 100644 (file)
@@ -2584,11 +2584,7 @@ case "$host" in
                JIT_SUPPORTED=yes
                sgen_supported=true
                AOT_SUPPORTED="yes"
-               if test "x$cross_compiling" != "xno"; then
-                  # Provide sane defaults when cross-compiling
-                  CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
-                  NESTED_LIBGC_FLAGS="$NESTED_LIBGC_FLAGS"
-               fi
+               CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
                ;;
 # TODO: make proper support for NaCl host.
 #        arm*-*nacl)