How to specify which GDB I can use in XCode on MacOS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:56:48Z http://stackoverflow.com/feeds/question/668069 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/668069/how-to-specify-which-gdb-i-can-use-in-xcode-on-macos 0 How to specify which GDB I can use in XCode on MacOS yinglcs 2009-03-20T21:27:58Z 2009-11-20T07:00:06Z <p>Hi,</p> <p>How to specify which GDB (with the full path) I can use in XCode on MacOS? Thank you.</p> http://stackoverflow.com/questions/668069/how-to-specify-which-gdb-i-can-use-in-xcode-on-macos/1062560#1062560 1 Answer by Joey Hagedorn for How to specify which GDB I can use in XCode on MacOS Joey Hagedorn 2009-06-30T08:57:14Z 2009-06-30T08:57:14Z <p>You can set the <em>PBXGDBPath</em> user default for Xcode to specify a different version of GDB for Xcode to use.</p> <pre><code>defaults write com.apple.Xcode PBXGDBPath &lt;path/to/your/gdb&gt; </code></pre> <p><a href="http://developer.apple.com/documentation/DeveloperTools/Reference/XcodeUserDefaultRef/100-Xcode%5FUser%5FDefaults/UserDefaultRef.html#//apple%5Fref/doc/uid/TP40005535-CH3-SW54" rel="nofollow">http://developer.apple.com/documentation/DeveloperTools/Reference/XcodeUserDefaultRef/100-Xcode_User_Defaults/UserDefaultRef.html#//apple_ref/doc/uid/TP40005535-CH3-SW54</a></p>