使用 GDB 调试 iPhone
我有一部 iPhone(iOS 4.2.1)。我想使用 gdb 调试其上的应用程序。我知道,作为一名注册开发人员,使用 XCode 很容易(?)。我不是注册开发者,我也不想成为一名注册开发者。 更具体地说,我希望能够使用 gdb 连接到 safari 并以任何方式调试它(越狱是可以的)。
I've an IPhone (iOS 4.2.1). I'd like to debug apps on it, with gdb. I understand that's easy (?) with XCode, when being a registered developer. I'm not a registered dev., and I don't want to be one.
To be more specific, I want to be able to attach to safari with gdb and debug it, by any means (jailbreak is ok).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经安装了 apt 软件包,您可以使用 Cydia 在越狱的 iPhone 上安装 gdb,或者通过 shell 中的 apt-get install gdb 来安装 gdb。
然后在设备上运行 gdb,通过 ssh 从 shell...附加/启动进程...gdb 经典使用。
我想可以从计算机远程运行 gdb,但从未在 Xcode 之外尝试过。
顺便说一句,当远程连接您的设备时,为了获得最佳使用效果,请通过 USB 而不是 WiFi 进行。
您可以使用 usbmuxd 在 linux/OSX 上执行此操作。在 PC 上我猜是 iTunnel 或者类似的东西。
作为第二个旁注,几年前,我在没有成为“注册开发人员”的情况下进行开发,使用越狱的 iPhone,“绕过”Apple 验证并直接从 Xcode 进行调试并不困难......
You can install gdb on a jailbroken iPhone using Cydia or via
apt-get install gdb
from shell if you already have apt packages installed.Then run gdb on device, from shell by ssh... attach / start process... gdb classic use.
I guess it is possible to run remotely gdb from a computer, but never tried outside Xcode.
As a side note, when remoting you device, for best use, do it through USB and not wifi.
You can do this on linux/OSX using usbmuxd. On PC i guess iTunnel or something like.
And as a second side note, Years ago I was developing without being "a registered developer", with a jailbroken iPhone it is not hard to "bypass" Apple validations and to Debug directly from Xcode...