Ios Theos没有指定目标错误

Ios Theos没有指定目标错误,ios,makefile,jailbreak,theos,Ios,Makefile,Jailbreak,Theos,尝试使用theos构建一个调整,并出现此错误 /var/theos/makefiles/common.mk:103: *** You did not specify a target, and the "i phone" platform does not define a default target. Stop. 我的Makefile如图所示 ARCHS = armv7 armv7s SDKVERSION = 7.0 TARGET = iphone:7.0 inclu

尝试使用theos构建一个调整,并出现此错误

/var/theos/makefiles/common.mk:103: *** You did not specify a target, and the "i          phone" platform does not define a default target.  Stop.
我的Makefile如图所示

ARCHS = armv7 armv7s
SDKVERSION = 7.0
TARGET = iphone:7.0

include /var/theos/makefiles/common.mk

BUNDLE_NAME = sometweak
bustiming_FILES = Toggle.xm
bustiming_INSTALL_PATH = /Library/Application Support/CCToggles/Toggles

include $(THEOS_MAKE_PATH)/bundle.mk
不确定我遗漏了什么,我搜索了多个网站,他们说这是因为Makefile中缺少目标,但它不起作用。任何建议都将不胜感激。

请尝试 包括$(THEOS\u MAKE\u PATH)/而不是/var/THEOS/

还可以尝试将您的目标列为Target=iphone:latest:7.0

最后,在使用build之前,请确保已设置环境变量:-

export THEOS=/opt/theos
export THEOS_DEVICE_IP=192.168.0.2  (your phone ip)
export SKDVERVSION=7.0  (or whatever you are building for)

我想你是Make的初学者吧。这些文件是谁写的?我从中得到的,看起来你应该用一个目标名称参数调用Make,比如“makeiphone”或“maketweak”。无论如何,你应该看一下theos文档,因为我们无法从中猜出目标名称。但是我读了文档,它说默认的目标名称是iphone。无论如何,谢谢你的帮助。你可以试试“制作iphone”,但看起来这个构建系统并没有默认的目标。