我将开始开发越狱调整。我从这个教程开始: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发布于 2013-03-11 05:12:10
将THEOS_DEVICE_IP = 192.0.0.0放在makefile的第一行。
发布于 2014-04-15 15:47:35
你只需要把
THEOS_DEVICE_IP = 192.168.2.4在Make文件的第一个行。
发布于 2013-04-27 17:20:53
在执行make命令之前,请使用以下命令
export SDKVERSION=6.0其中6.0是您的ios sdk版本
https://stackoverflow.com/questions/15282395
复制相似问题