Make the 'Attempting to JIT compile method' message reference http://docs.xamarin...
authorZoltan Varga <vargaz@gmail.com>
Thu, 12 Jul 2012 04:02:06 +0000 (06:02 +0200)
committerRodrigo Kumpera <kumpera@gmail.com>
Thu, 15 Nov 2012 21:58:45 +0000 (16:58 -0500)
mono/mini/mini.c

index 583babf3d81e1d70c1059aa10383463ce5b5cadf..c4c57d3c4fafb12b05c9ee2017d965fa6a6806e2 100644 (file)
@@ -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);