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:
authorAlexis Christoforides <alexis@thenull.net>2014-04-23 22:56:39 +0400
committerAlexis Christoforides <alexis@thenull.net>2014-04-23 22:56:39 +0400
commit8f09dad4353bb75afebf96ad58d08f7e7f3bf56d (patch)
treeaac648ce25bd1806cfe8fa44ac792a70a89cfd57 /configure.in
parent9dd632fb9e7197d278bd99152c1c67c6ab51a207 (diff)
Revert "Merge branch 'master' of https://github.com/mono/mono"
This reverts commit 9dd632fb9e7197d278bd99152c1c67c6ab51a207, reversing changes made to 164f9cbec4f79cc013c7b1cf674e70e4573f4b36.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in30
1 files changed, 2 insertions, 28 deletions
diff --git a/configure.in b/configure.in
index 21f0273a66b..efa860b17ef 100644
--- a/configure.in
+++ b/configure.in
@@ -237,12 +237,6 @@ case "$host" in
# available during cross-compilation
mono_cv_uscore=no
fi
- case "$host" in
- aarch64-*)
- support_boehm=no
- with_gc=sgen
- ;;
- esac
;;
*-*-nacl*)
host_win32=no
@@ -2513,7 +2507,6 @@ sizeof_register="SIZEOF_VOID_P"
jit_wanted=true
interp_wanted=false
sgen_supported=false
-boehm_supported=true
case "$host" in
mips*)
TARGET=MIPS;
@@ -2690,14 +2683,6 @@ case "$host" in
# sgen_supported=true
# AOT_SUPPORTED="no"
# ;;
- aarch64-*)
- # https://lkml.org/lkml/2012/7/15/133
- TARGET=ARM64
- arch_target=arm64
- JIT_SUPPORTED=yes
- sgen_supported=true
- boehm_supported=false
- ;;
s390x-*-linux*)
TARGET=S390X;
arch_target=s390x;
@@ -2803,11 +2788,6 @@ if test "x$host" != "x$target"; then
;;
esac
;;
- aarch64-*)
- TARGET=ARM64
- JIT_SUPPORTED=yes
- jit_wanted=true
- ;;
*)
AC_MSG_ERROR([Cross compiling is not supported for target $target])
esac
@@ -2823,9 +2803,6 @@ AMD64)
ARM)
AC_DEFINE(TARGET_ARM, 1, [...])
;;
-ARM64)
- AC_DEFINE(TARGET_ARM64, 1, [...])
- ;;
POWERPC)
AC_DEFINE(TARGET_POWERPC, 1, [...])
;;
@@ -2853,14 +2830,14 @@ esac
dnl Use GCC atomic ops if they work on the target.
if test x$GCC = "xyes"; then
case $TARGET in
- X86 | AMD64 | ARM | ARM64 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64)
+ X86 | AMD64 | ARM | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64)
AC_DEFINE(USE_GCC_ATOMIC_OPS, 1, [...])
;;
esac
fi
if test "x$target_mach" = "xyes"; then
- if test "x$TARGET" = "xARM" -o "x$TARGET" = "xARM64"; then
+ if test "x$TARGET" = "xARM"; then
AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
@@ -3327,12 +3304,10 @@ AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
AM_CONDITIONAL(POWERPC64, test x$TARGET = xPOWERPC64)
AM_CONDITIONAL(ARM, test x$TARGET = xARM)
-AM_CONDITIONAL(ARM64, test x$TARGET = xARM64)
AM_CONDITIONAL(S390X, test x$TARGET = xS390X)
AM_CONDITIONAL(HOST_X86, test x$HOST = xX86)
AM_CONDITIONAL(HOST_AMD64, test x$HOST = xAMD64)
AM_CONDITIONAL(HOST_ARM, test x$HOST = xARM)
-AM_CONDITIONAL(HOST_ARM64, test x$HOST = xARM64)
AM_CONDITIONAL(CROSS_COMPILE, test "x$host" != "x$target")
AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
@@ -3551,7 +3526,6 @@ mono/arch/ppc/Makefile
mono/arch/sparc/Makefile
mono/arch/s390x/Makefile
mono/arch/arm/Makefile
-mono/arch/arm64/Makefile
mono/arch/ia64/Makefile
mono/arch/mips/Makefile
mono/interpreter/Makefile