@sumbrilliance wrote:
有点摸不着头脑,谁能指点一下吗?
编译过程无报错,完成后obj文件加下只有一个debug文件夹,debug文件夹是空的,没有书上说的dylib。有遇到过的吗?
这是编译过程信息: ~/reios/Code/firstiosre/ make > Making all for tweak FirstIOSRe… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… ==> Linking tweak FirstIOSRe (armv7)… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (arm64)… ==> Linking tweak FirstIOSRe (arm64)… ==> Merging tweak FirstIOSRe… ==> Signing FirstIOSRe… ~/reios/Code/firstiosre/
这是我的MakeFile文件:
ARCHS = armv7 arm64 TARGET = iphone:latest:8.0 include $(THEOS)/makefiles/common.mk TWEAK_NAME = FirstIOSRe FirstIOSRe_FILES = Tweak.xm FirstIOSRe_FRAMEWORKS = UIKit # FirstIOSRe_PRIVATE_FRAMEWORKS = BaseBoard (这个地方是因为有报错说找不到BaseBoard,所以我注释掉了。) FirstIOSRe_LDFLAGS = -lz -lsqlite3.0 include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard"
Posts: 6
Participants: 4