Xamarin Studio + Xamarin.iOS: how do you set a breakpoint in C or C++ (not F# or C#)? -
running xamarin studio 4.1.9, xamarin.ios.
when you've linked native code application, how set breakpoints in native code?
the simplest way use native debugger (e.g. gdb or lldb) attach existing process, e.g. using --pid=xxxxx. can set breakpoints, break/continue execution, set watches... managed debugger.
this works if you're debugging managed side using managed debugger (inside xamarin.studio) have switch , forth debuggers (e.g. when breakpoint hit).
note: can use native debuggers as-is (command-line) or gui (e.g. xcode).
Comments
Post a Comment