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
path: root/mcs/build
diff options
context:
space:
mode:
authorJay Krell <jay.krell@cornell.edu>2019-06-25 23:14:42 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-06-25 23:14:41 +0300
commit1c09e4de62b3bb69ed82af9d3ddbb941f7c0ed0f (patch)
tree38397fd81341b79f2bc1bf43a745b998aec6a2a7 /mcs/build
parent3e270ffe20bfd0fa056bfb2e3ba8ebf07c441ead (diff)
Fix tarball build and refresh monolite due to memory model change (#15370)
* Revise monolite due to memory model change. * Fix tarball builds wrt netcore/config.make. * Remove System.Private.CoreLib from mcs/class/Makefile, it was moved to netcore/ * Bump min_mono_version in basic-profile-check The new MONO_DEBUG=clr-memory-model runtime option isn't available in earlier Mono versions.
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/common/basic-profile-check.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/build/common/basic-profile-check.cs b/mcs/build/common/basic-profile-check.cs
index f4ac1302ddd..dd6e95efcb7 100644
--- a/mcs/build/common/basic-profile-check.cs
+++ b/mcs/build/common/basic-profile-check.cs
@@ -41,9 +41,9 @@ class X
Version min_mono_version;
#if __MonoCS__
- min_mono_version = new Version (6, 2);
+ min_mono_version = new Version (6, 5);
#else
- min_mono_version = new Version (6, 2);
+ min_mono_version = new Version (6, 5);
#endif
if (version < min_mono_version)