Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Unable to locate GDB" in Trigger Toolkit

I'm attempting to run an iPhone app in the Trigger Toolkit, but I keep getting "Unable to locate GDB" in the console, several seconds after "Connecting to remote debug server" . I've updated xcode, installed gdb separately through homebrew, and am able to run it (gdb) through the command line.

Thanks in advance for any relevant advice!

like image 979
Michael Marsh Avatar asked Oct 08 '13 21:10

Michael Marsh


1 Answers

I'm guessing you're using a pre-v2.0.1 platform version here, and that you've updated to Xcode 5?

I was able to reproduce this error in that configuration. Xcode 5 doesn't support GDB, which we were previously using to communicate with the app running on your device.

If updating to use newer platform versions isn't an option for you, you could use an older installation of Xcode (you can have several versions installed as siblings), and use xcode-select to point us at it, e.g.:

sudo xcode-select --switch /Applications/Xcode4.6/Xcode.app
like image 63
James Brady Avatar answered Oct 21 '22 00:10

James Brady