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:
authorWade Berrier <wade@mono-cvs.ximian.com>2006-08-31 21:03:17 +0400
committerWade Berrier <wade@mono-cvs.ximian.com>2006-08-31 21:03:17 +0400
commita23e065b1c13790bbdbbd8b037e75325af2424a0 (patch)
tree92ceea38bc7539cda24733ac9c752ba2d72fa8b0
parent6c81eb310db04a064f7ee86a22dddb8a795d1c03 (diff)
Merge 64520 from trunk to 1.1.17 branch
* configure.in: Add required CFLAGS for s390[x] (-mbackchain) svn path=/branches/mono-1-1-17/mono/; revision=64638
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f21a7064096..4f2bb7bbc06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-29 Wade Berrier <wberrier@novell.com>
+
+ * configure.in: Add required CFLAGS for s390[x] (-mbackchain)
+
2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* configure.in: check for mkstemp.
diff --git a/configure.in b/configure.in
index 3a8054733fd..0c03ad79007 100644
--- a/configure.in
+++ b/configure.in
@@ -1609,6 +1609,8 @@ case "$host" in
ACCESS_UNALIGNED="no"
JIT_SUPPORTED=yes
jit_wanted=true
+ # Required CFLAGS for s390[x]. USE_STRING_INLINES is automatic with gcc 4.1
+ CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
;;
s390x-*-linux*)
TARGET=S390x;
@@ -1617,6 +1619,7 @@ case "$host" in
ACCESS_UNALIGNED="no"
JIT_SUPPORTED=yes
jit_wanted=true
+ CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
;;
esac