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-04 08:58:32 +0400
committerAlex Rønne Petersen <alexrp@xamarin.com>2013-05-04 08:58:32 +0400
commit89c3c44dbc85bd02a4a9b65bfac5893ceb154527 (patch)
tree0010030df919c4575969f3173c627cb9fb90d470 /configure.in
parent3ac08cbb1b8ff76b64f97318040e07df6478ee3d (diff)
configure.in: Remove all explicit ARM_FPU_* definitions.
We now properly detect this via the toolchain, so these explicit definitions are now pointless.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index 48eb22d6af0..5709ea5da49 100644
--- a/configure.in
+++ b/configure.in
@@ -2572,7 +2572,7 @@ case "$host" in
arch_target=arm;
ACCESS_UNALIGNED="no"
JIT_SUPPORTED=yes
- CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1 -D__ARM_EABI__ -DHAVE_ARMV6=1"
+ CPPFLAGS="$CPPFLAGS -D__ARM_EABI__ -DHAVE_ARMV6=1"
# libgc's gc_locks.h depends on this
NESTED_LIBGC_FLAGS="$NESTED_LIBGC_FLAGS -DHAVE_ARMV6"
sgen_supported=true
@@ -2586,7 +2586,7 @@ case "$host" in
AOT_SUPPORTED="yes"
if test "x$cross_compiling" != "xno"; then
# Provide sane defaults when cross-compiling
- CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1 -D__ARM_EABI__ -DHAVE_ARMV6=1"
+ CPPFLAGS="$CPPFLAGS -D__ARM_EABI__ -DHAVE_ARMV6=1"
NESTED_LIBGC_FLAGS="$NESTED_LIBGC_FLAGS -DHAVE_ARMV6"
fi
;;
@@ -2620,7 +2620,7 @@ if test "x$host" != "x$target"; then
arch_target=arm;
ACCESS_UNALIGNED="no"
JIT_SUPPORTED=yes
- CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1 -D__ARM_EABI__ -DHAVE_ARMV6=1"
+ CPPFLAGS="$CPPFLAGS -D__ARM_EABI__ -DHAVE_ARMV6=1"
jit_wanted=true
# Can't use tls, since it depends on the runtime detection of tls offsets
# in mono-compiler.h
@@ -2663,10 +2663,9 @@ if test "x$host" != "x$target"; then
# JIT_SUPPORTED=yes
# sizeof_register=4
# CPPFLAGS="$CPPFLAGS \
-# -DARM_FPU_VFP=1 -D__ARM_EABI__ \
+# -D__ARM_EABI__ \
# -D__arm__ \
# -D__portable_native_client__ \
-# -DARM_FPU_VFP=1 \
# -Dtimezone=_timezone \
# -DDISABLE_SOCKETS \
# -DDISABLE_ATTACH \
@@ -2697,11 +2696,11 @@ if test "x$host" != "x$target"; then
case "$target" in
armv7l-unknown-linux-gnueabi*)
# TEGRA
- CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1"
+ CPPFLAGS="$CPPFLAGS"
;;
armv5-*-linux-androideabi*)
AC_DEFINE(TARGET_ANDROID, 1, [...])
- CPPFLAGS="$CPPFLAGS -DARM_FPU_NONE"
+ CPPFLAGS="$CPPFLAGS"
;;
esac
;;