From 427953c5f84933d1c90da921b28b5597f4d2b4cb Mon Sep 17 00:00:00 2001 From: Peter Slattery Date: Mon, 22 Apr 2024 15:29:37 -0700 Subject: [PATCH] Formatting for how_to_debug_in_xcode.md --- macos_development/how_to_debug_in_xcode.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/macos_development/how_to_debug_in_xcode.md b/macos_development/how_to_debug_in_xcode.md index f375fa5..2edb5a5 100644 --- a/macos_development/how_to_debug_in_xcode.md +++ b/macos_development/how_to_debug_in_xcode.md @@ -19,13 +19,16 @@ Debugging this way, you can have Xcode run an executable in a .app or just from _I can't get these to be set via the Xcode Debugger at the moment. I'm not sure why. As an alternative, you can set them via the lldb command line interface in Xcode, and then navigate the stack with the UI just fine._ **To set on a particular file/line** + `b --file --line ` **To set at the entry to a particular function** + `b ` _Note: this doesn't work if function_name is "main" - it adds a baker's dozen of breakpoints at different places_ **To remove all breakpoints** + `breakpoint delete` ## Graphics