我在arm64上的theos遇到大问题。
首先是一些信息。
设备: iPad Air 2 ARM64
iOS: 8.1.2越狱
已安装: Theos,iPhoneOS8.1 SDK,BigBoss推荐工具,rpetrich的最新 header 。
调整
%hook SBApplicationIcon
-(void)launch{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"TEST"
message:@"message...." delegate:self cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
%orig;
}
%end
生成文件
export ARCHS = armv7 armv7s arm64
export TARGET = iphone:clang:8.1:8.1
export SDKVERSION=8.1
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = test
test_FILES = Tweak.xm
test_FRAMEWORKS = UIKit
include $(THEOS_MAKE_PATH)/tweak.mk
我输入“make”来制作一个.dylib。
Making all for tweak test...
Preprocessing Tweak.xm...
Compiling Tweak.xm...
*/bin/sh: **clang++: command not found**
make[2]: *** [obj/Tweak.xm.360b8e67.o] Error 127
make[1]: *** [internal-library-all_] Error 2
make: *** [test.all.tweak.variables] Error 2*
我整天都在为这个烦人的错误..
最佳答案
如果您拥有DHowett的Theos版本,它将不适用于arm64。据我所知,CoolStar具有支持arm64的最佳Theos fork。
如果遵循these steps,则应该拥有所有其他依赖项,例如clang,Darwin-CC工具等。然后,您可以删除Theos包,并将CoolStar的fork(上方)放入'/var/theos/'中。
要获得更多帮助,您可以在Saurik的IRC服务器irc.saurik.com的#Theos channel 上寻求帮助。
关于ios - 用于ARM64的Theos无法正常工作(Clang引发错误),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27724090/