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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-08-09 04:03:50 +0300
committerGitHub <noreply@github.com>2017-08-09 04:03:50 +0300
commitee8c7c80b70ebc8141339c6df26bbf1774b47784 (patch)
treea56d9510cd092450ed60731ff3b05ab200ca7c83 /configure.ac
parent629948534ea91002210aef844a265121c5a1f5ef (diff)
Default powerpc to mcs instead of roslyn (#5326)
It is crashing still way more than it works and now that the mcs configuration works again we should default to that to make our CI more pleasant.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4933db5a934..0abf9ebb469 100644
--- a/configure.ac
+++ b/configure.ac
@@ -786,7 +786,10 @@ if test $csc_compiler = default; then
if test $endian = big; then
csc_compiler=mcs
elif test $endian = little; then
- csc_compiler=roslyn
+ case "$host" in
+ powerpc*) csc_compiler=mcs ;;
+ *) csc_compiler=roslyn ;;
+ esac
else
csc_compiler=mcs
fi