Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alexrp@xamarin.com>2013-05-18 02:03:08 +0400
committerAlex Rønne Petersen <alexrp@xamarin.com>2013-05-18 02:04:34 +0400
commitf956a83b65670179cd3d344abb6bdceac29e22fe (patch)
tree91f7c76cfce2ac2c96d1cb050577130301668505 /configure.in
parent0b372c83389e9fd5d8802869933033129fe2c4b5 (diff)
Always define __ARM_EABI__ when compiling for ARM.
We don't actually support any non-AAPCS ABI.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 70ed2846caa..83d8fdafaed 100644
--- a/configure.in
+++ b/configure.in
@@ -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)