编译使用THEOS进行调整时出错

时间:2014-02-01 19:19:08

标签: cydia tweak theos

这是我的Tweak.xm:

%hook Blockhead

-(float)health {
return 1;
}

%end

但是当我尝试编译它时总是会出现这个错误:

make: xcode-select: Command not found
/var/mobile/myTweak/theos/makefiles/targets/Darwin/iphone.mk.21:
*** first argument to `word' function must be greater than 0. Stop.

任何帮助将不胜感激

2 个答案:

答案 0 :(得分:0)

我按原样编译了这部分代码,编译时没有任何警告。 看起来像include.substrate.h中的一个问题是这意味着是include / substrate.h?

如果要添加基材标题,在我的版本中不需要这样,因为它是自动添加的,请不要尝试。

答案 1 :(得分:0)

必须是:

%hook Blockhead

-(float)health {
return 1.0f;
}

%end

<强>:d FuroowHD