1

我将开始开发越狱调整。我从本教程开始:http: //brandontreb.com/beginning-jailbroken-ios-development-building-and-deployment/

我使用此命令收到以下错误

sudo make package install

/Users/.../fooproject/theos/makefiles/targets/Darwin/iphone.mk:41:
Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for application fooProject...
Copying resource directories into the application wrapper...
make[2]: Nothing to be done for `internal-application-compile'.
Making stage for application fooProject...
dpkg-deb: Baue Paket »com.alex.fooproject« in »./com.alex.fooproject_0.0.1-12_iphoneos-  arm.deb«.
make install requires that you set THEOS_DEVICE_IP in your environment. It is also      recommended that you have public-key authentication set up for root over SSH, or you'll be entering your password a lot.
make: *** [internal-install] Error 1

好的,变量 THEOS_DEVICE_IP 已设置。我用这个命令做到了:

export THEOS_DEVICE_IP=192.168.178.39
4

3 回答 3

8

你应该把

THEOS_DEVICE_IP = 192.168.2.4

在 Make 文件的第一行。

于 2014-04-15T07:47:34.890 回答
5

将 THEOS_DEVICE_IP = 192.0.0.0 放在 makefile 的第一行。

于 2013-03-10T21:12:10.263 回答
1

make命令之前使用此命令

export SDKVERSION=6.0

其中 6.0 是您的 ios sdk 版本

于 2013-04-27T09:20:52.807 回答