gpt4 book ai didi

ios - 特立独行者和 iOS 7 的 Theos 错误

转载 作者:行者123 更新时间:2023-11-28 18:33:33 25 4
gpt4 key购买 nike

我设置了 theos 并进行了越狱调整。我在网上看到 rpetrich 的 header 只与他的 theos 分支兼容。所以我从 github 克隆了他的 theos 分支并将他的 header 转储到 /include 文件夹..

然后我必须将 ldid 和 libsubstrate.dylib 添加到 theos 文件夹中,我按照 iPhoneDevWiki 中的说明进行了操作

然后我关注了this进行简单调整的教程

信息:我正在尝试使用 iOS7 SDK 在特立独行者上运行它

问题:我完美地遵循了教程!但出于某种原因我得到这个错误:

Sahils-MacBook-Pro:welcomewagon Sahil$ make
/Users/Sahil/Documents/tweaks/welcomewagon/theos/makefiles/targets/Darwin/iphone.mk:48: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak WelcomeWagon...
make[2]: Nothing to be done for `internal-library-compile'.

这甚至意味着什么 > “internal-library-compile”无需执行任何操作。

我的代码是:

调整.xm:

#import <SpringBoard/SpringBoard.h>

%hook SpringBoard

-(void)applicationDidFinishLaunching:(id)application {
%orig;

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Welcome"
message:@"Welcome to your iPhone Brandon!"
delegate:nil
cancelButtonTitle:@"Thanks"
otherButtonTitles:nil];
[alert show];
[alert release];
}

%end

生成文件:

include theos/makefiles/common.mk

ARCHS = armv7

TWEAK_NAME = WelcomeWagon
WelcomeWagon_FILES = Tweak.xm
WelcomeWagon_FRAMEWORKS = UIKit


include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 SpringBoard"

最佳答案

Nothing to be done for 'internal-library-compile'. 不是错误。这意味着库编译步骤无需执行任何操作。

这是 GNU make 告诉你的方式,你的调整已经编译,自上次编译以来没有任何改变。“没有什么可做的”。

关于ios - 特立独行者和 iOS 7 的 Theos 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23448034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com