From d9677714ad6744b9e10ab9e7a38da1716db74e23 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 13 May 2016 15:49:08 +0200 Subject: [PATCH] [runtime] Re-enable the gc pump by default for debug simulator/mac builds. (#50) --- runtime/runtime.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/runtime.m b/runtime/runtime.m index 73e8c6c4ed09..dc6da5322b1d 100644 --- a/runtime/runtime.m +++ b/runtime/runtime.m @@ -35,7 +35,11 @@ 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;