Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortherzok <marius.ungureanu@xamarin.com>2019-05-12 02:50:11 +0300
committertherzok <marius.ungureanu@xamarin.com>2019-05-23 20:06:20 +0300
commit1d510fdb03a8e71f6a6c6f9f3928c21554eabdab (patch)
treebdb145bbf2d27b5bde1dc2319ecac7a003ec1bc9 /main/build/MacOSX/monostub.mm
parent18d68dc196818d76096750747ec4f80557d428af (diff)
[Launcher] add header that says we could not launch app
Diffstat (limited to 'main/build/MacOSX/monostub.mm')
-rw-r--r--main/build/MacOSX/monostub.mm1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/build/MacOSX/monostub.mm b/main/build/MacOSX/monostub.mm
index 0f149fe472..2c3465b37e 100644
--- a/main/build/MacOSX/monostub.mm
+++ b/main/build/MacOSX/monostub.mm
@@ -40,6 +40,7 @@ EXTERNAL_API void XAMARIN_CREATE_CLASSES ();
static void
show_alert (NSString *msg, NSString *appName, NSString *mono_download_url)
{
+ fprintf(stderr, "Could not launch: %s\n", [appName UTF8String]);
fprintf(stderr, "%s\n", [msg UTF8String]);
fprintf(stderr, "%s\n", [mono_download_url UTF8String]);
}