I created a Mac OS X app, and distribute it as a .dmg
file.
I must have source code line numbers in stack traces, so I added <DebugType>full</DebugType>
and <DebugSymbols>true</DebugSymbols>
to my .csproj
file (not a problem as I don't fear reverse engineering)
PROBLEM: Whenever a crash happen, apparently users are asked to install "XCode Command Line Developer Tools" to run "lldb" (debugger):
My program does not call this "lldb" thing in any way.
How can I prevent this message from getting displayed?
Users are office employees who have no idea what XCode is.
The app is open source C# compiled using Monodevelop.
Having good stack traces with source code line numbers is very important, not something I want to give up.