You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I've enabled malloc stack logging in the scheme editor for my current target (Simulator x86_64), and when I take an ObjC object address and pass to msl, I'm not getting any output.
Is there something I might be missing, or otherwise how can I provide more information here for effective debugging?
I am using the latest version of this repo, as of this morning.
(lldb) p inObject
(ClassNameRedactedHere *) $5 = 0x00007f8beaab8e40
(lldb) msl 0x00007f8beaab8e40
The text was updated successfully, but these errors were encountered:
Previous no output was with only Live Allocation tracking. For tracking all allocations, I see this:
(lldb) msl 0x00007fecd0575df0
Traceback (most recent call last):
File "/Users/dbeard/bin/LLDB/lldb_commands/msl.py", line 55, in handle_command
retString = processStackTraceStringFromAddresses(addresses, target, options)
File "/Users/dbeard/bin/LLDB/lldb_commands/msl.py", line 66, in processStackTraceStringFromAddresses
prevAddr = target.ResolveLoadAddress(frameAddr - 1)
File "/Applications/Xcode12.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python3/lldb/__init__.py", line 11127, in ResolveLoadAddress
return _lldb.SBTarget_ResolveLoadAddress(self, vm_addr)
OverflowError: in method 'SBTarget_ResolveLoadAddress', argument 2 of type 'lldb::addr_t'
(lldb)
Hi, I've enabled malloc stack logging in the scheme editor for my current target (Simulator x86_64), and when I take an ObjC object address and pass to
msl
, I'm not getting any output.Is there something I might be missing, or otherwise how can I provide more information here for effective debugging?
I am using the latest version of this repo, as of this morning.
The text was updated successfully, but these errors were encountered: