2013-03-07 83 views
0

我將開始開發越獄調整。我開始與這個教程: http://brandontreb.com/beginning-jailbroken-ios-development-building-and-deployment/Theos make:*** [internal-install] Error 1

我碰到下面的錯誤與此命令

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

把THEOS_DEVICE_IP行放到makefile中。

+1

請在你的回答中展開 – 2013-03-10 21:32:56

+0

你可以把它放在makefile上,但它不是必需的。 – 2013-03-12 19:04:40

+0

不能解決問題。 ssh連接到我的iphone的作品。 – Alex 2013-03-19 07:27:04

1

make命令使用此命令

export SDKVERSION=6.0 

,其中6.0是您的iOS SDK版本

3

你剛纔應該把

THEOS_DEVICE_IP = 192.168.2.4 

第一線的製作文件。