尝试使用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中缺少目标,但它不起作用。感谢您的任何建议。
发布于 2014-01-29 18:19:05
尝试包含$(THEOS_MAKE_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)https://stackoverflow.com/questions/21083099
复制相似问题