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
LLDB command to print the project path (parse source info)
LLDB command to take a project relative path to a directory containing .lldb files. Create alias <file> command source <file>.lldb for every file in that directory.
Write documentation
Create a breakpoint anywhere in your code
Swift:
a symbolic breakpoint in @objc <module>.<AppDelegate>.init (@objc LLDO.AppDelegate.init)
ObjC
In your main function: Symbol main in your module (LLDO)
In any implemented AppDelegate method
execute debugger command create_actions <path>. Depending on where you set your breakpoint, path might need be be adjusted (give or take a ..)
The text was updated successfully, but these errors were encountered:
source info
).lldb
files. Createalias <file> command source <file>.lldb
for every file in that directory.@objc <module>.<AppDelegate>.init
(@objc LLDO.AppDelegate.init)main
function: Symbolmain
in your module (LLDO
)create_actions <path>
. Depending on where you set your breakpoint,path
might need be be adjusted (give or take a..
)The text was updated successfully, but these errors were encountered: