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:
authorlateralusX <lateralusx.github@gmail.com>2017-11-10 17:50:59 +0300
committerMarek Safar <marek.safar@gmail.com>2017-11-13 16:27:39 +0300
commit2503f874ca6232fbde874d11365e76a10c0998ee (patch)
treeb8894f4d2a6ca6e5b6204a720308b119fad88137 /msvc/mono.props
parentf23ce4f37e5f2edbdc5ef41d25b7cc1a8cd9852e (diff)
Enable concurrent GC as default mode for Windows MSVC mono sgen builds.
Diffstat (limited to 'msvc/mono.props')
-rw-r--r--msvc/mono.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/msvc/mono.props b/msvc/mono.props
index 67880f7beb3..c9bd97e59e9 100644
--- a/msvc/mono.props
+++ b/msvc/mono.props
@@ -39,7 +39,7 @@
<MONO_C_RUNTIME Condition="'$(Configuration)'!='Debug'">MultiThreadedDLL</MONO_C_RUNTIME>
</PropertyGroup>
<PropertyGroup Label="MonoSGEN" Condition="$(MONO_TARGET_GC)=='sgen' Or $(MONO_TARGET_GC)!='boehm'">
- <SGEN_DEFINES>HAVE_SGEN_GC;HAVE_MOVING_COLLECTOR;HAVE_WRITE_BARRIERS</SGEN_DEFINES>
+ <SGEN_DEFINES>HAVE_SGEN_GC;HAVE_MOVING_COLLECTOR;HAVE_WRITE_BARRIERS;HAVE_CONC_GC_AS_DEFAULT</SGEN_DEFINES>
<GC_DEFINES>$(SGEN_DEFINES)</GC_DEFINES>
<GC_LIB>libgcmonosgen.lib</GC_LIB>
<MONO_TARGET_SUFFIX Condition="'$(MONO_USE_TARGET_SUFFIX)'=='true'">-sgen</MONO_TARGET_SUFFIX>