Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tips or resources for learning advanced debugging techniques GDB in xcode

Tags:

xcode

gdb

Can someone recommend some good tips or resources to learn how to learn intermediate to advanced debugging tips and tricks using GDB in Xcode.

like image 351
Bruce McLeod Avatar asked Jul 20 '09 05:07

Bruce McLeod


1 Answers

The GDB in XCode is essentially normal GDB with some GUI wrappers for common operations (next, skip, finish etc.), so any general GDB information will still be applicable.

Debugging with GDB is a pretty comprehensive book which is available online, and is pretty much the main reference document.

like image 168
DaveR Avatar answered Nov 15 '22 08:11

DaveR