Unable to find GDB in Trigger Toolkit

I try to launch the iPhone application in the Trigger Toolkit, but I continue to get “Unable to find GDB” in the console, a few seconds after “Connecting to the remote debug server”. I updated xcode, installed gdb separately through homebrew and can run it (gdb) through the command line.

Thanks in advance for any relevant advice!

+6
source share
1 answer

I assume that you are using the pre-v2.0.1 platform version here and what have you upgraded to Xcode 5?

I was able to reproduce this error in this configuration. Xcode 5 does not support GDB , which we previously used to communicate with the application running on your device.

If upgrading to use later versions is not an option for you, you can use an older Xcode installation (you may have several versions installed as siblings) and use xcode-select to point us to it, for example:

 sudo xcode-select --switch /Applications/Xcode4.6/Xcode.app 
+2
source

Source: https://habr.com/ru/post/955536/


All Articles