<div dir="ltr">Hi Jim,<div><br></div><div>break set -F does indeed work with trunk. Our mangling is a tiny bit awkward (for specific reasons...), so i guess it's not a big deal. We can get by by using the regex version for now.</div><div><br></div><div>Is there a C++ API equivalent to break set -F?</div><div><br></div><div>Thanks!</div><div>Mario</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 5, 2014 at 8:17 PM, Jim Ingham <span dir="ltr"><<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Mario,<br>
<br>
“-n” is trying to do things like<br>
<br>
(lldb) break set -n foo<br>
<br>
will break on bar::foo, etc…  So it tries to parse up the name, and weird names like this can trip it up.<br>
<br>
Greg recently fixed some bugs with the -n parsing for ObjC names which might have caused it to break on your names.<br>
<br>
Does breakpoint setting work when you use “break set -F <NAME>” for these sorts of names.  This option does an exact match against the symbol name and doesn’t try to be smart about it, it’s there as a fallback for odd names lldb fails to parse up correctly.<br>
<br>
Jim<br>
<div><div class="h5"><br>
> On Nov 5, 2014, at 1:06 AM, Mario Zechner <<a href="mailto:badlogicgames@gmail.com">badlogicgames@gmail.com</a>> wrote:<br>
><br>
> Hi,<br>
><br>
> we are using SBTarget::BreakpointCreateByName so set breakpoint on symbol names. This works as long as no special characters are in the symbol name. Our name mangling can produce symbols like:<br>
><br>
> [J]com.robovm.debug.server.apps.SleepLoop.startingUp()V<br>
><br>
> for which SBTarget::BreakpointCreateByName fails to resolve locations.<br>
><br>
> This happens with the latest trunk version of LLDB, it worked with a snapshot from the 29th of September.<br>
><br>
> We currently work around this issue by using SBTarget::BreakpointCreateByRegex.<br>
><br>
> Thanks,<br>
> Mario<br>
</div></div>> _______________________________________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div><br></div>