From: Marcos Henrich Date: Wed, 13 Jul 2016 10:17:36 +0000 (+0100) Subject: [runtime] Added gen-seq-points-file= deprecated option X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=01600bef501f9828f70e2478f41e08a45ba36970;p=mono.git [runtime] Added gen-seq-points-file= deprecated option Added gen-seq-points-file= back with deprecated message to avoid crashes in application still using it. --- diff --git a/mono/mini/aot-compiler.c b/mono/mini/aot-compiler.c index 9b4c7b6d2a4..fab09c647c1 100644 --- a/mono/mini/aot-compiler.c +++ b/mono/mini/aot-compiler.c @@ -7050,6 +7050,8 @@ mono_aot_parse_options (const char *aot_options, MonoAotOptions *opts) opts->ld_flags = g_strdup (arg + strlen ("ld-flags=")); } else if (str_begins_with (arg, "soft-debug")) { opts->soft_debug = TRUE; + } else if (str_begins_with (arg, "gen-seq-points-file=")) { + fprintf (stderr, "Mono Warning: aot option gen-seq-points-file= is deprecated.\n"); } else if (str_begins_with (arg, "msym-dir=")) { debug_options.no_seq_points_compact_data = FALSE; opts->gen_msym_dir = TRUE;