[runtime] Re-enable the gc pump by default for debug simulator/mac builds. (#50)

This commit is contained in:
Rolf Bjarne Kvinge 2016-05-13 15:49:08 +02:00 коммит произвёл Sebastien Pouliot
Родитель 0d376c521a
Коммит d9677714ad
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -35,7 +35,11 @@ bool xamarin_detect_unified_build = true;
bool xamarin_detect_unified_build = false;
#endif
bool xamarin_use_new_assemblies = false;
#if DEBUG && (defined (__i386__) || defined (__x86_64__))
bool xamarin_gc_pump = true;
#else
bool xamarin_gc_pump = false;
#endif
#if MONOMAC
// FIXME: implement release mode for monomac.
bool xamarin_debug_mode = true;