From: Zoltan Varga Date: Thu, 12 Jul 2012 04:02:06 +0000 (+0200) Subject: Make the 'Attempting to JIT compile method' message reference http://docs.xamarin... X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=d3c58787adb4aa199040c7e35047c5c0ce18249c;p=mono.git Make the 'Attempting to JIT compile method' message reference docs.xamarin.com/ios/about/limitations. --- diff --git a/mono/mini/mini.c b/mono/mini/mini.c index 583babf3d81..c4c57d3c4fa 100644 --- a/mono/mini/mini.c +++ b/mono/mini/mini.c @@ -5292,7 +5292,7 @@ mono_jit_compile_method_inner (MonoMethod *method, MonoDomain *target_domain, in if (mono_aot_only) { char *fullname = mono_method_full_name (method, TRUE); - char *msg = g_strdup_printf ("Attempting to JIT compile method '%s' while running with --aot-only.\n", fullname); + char *msg = g_strdup_printf ("Attempting to JIT compile method '%s' while running with --aot-only. See http://docs.xamarin.com/ios/about/limitations for more information.\n", fullname); *jit_ex = mono_get_exception_execution_engine (msg); g_free (fullname);