gpt4 book ai didi

ios - Theos 无法在我的 iPad 3 上运行

转载 作者:行者123 更新时间:2023-11-29 02:55:40 25 4
gpt4 key购买 nike

我在运行 ios 6.1.2 的 ipad 3 上成功安装了 theos(安装了 perl、Gnu-c-compiler、ios 工具链等),现在当我尝试进行调整时,“Make package install”显示错误。又开始了我的谷歌搜索之旅,终于来到了这里。这是名为 Respring Notifier 的调整代码 -->

我的 Tweak.xm-->

 #import <SpringBoard/SpringBoard.h>

%hook SpringBoard

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

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"RespringNotifier"

message:@"Respring Complete! Welcome Back!"

delegate:nil

cancelButtonTitle:@"Dismiss"

otherButtonTitles:nil];

[alert show];

[alert release];
}

%end

我相信代码没有任何问题。

这是我的 makefile-->

include theos/makefiles/common.mk

TWEAK_NAME = RespringNotifier

RespringNotifier_FILES = Tweak.xm

RespringNotifier_FRAMEWORKS = UIKIT

include $(THEOS_MAKE_PATH)/Tweak.mk

我几个小时前在 makefile 的顶部“include theos/makefiles/common.mk”之前插入了这些行-->

export ARCHS =armv7 armv7s arm64

export TARGET = iphone:clang:6.1.:6.1

  • 我附上了一张图片,其中显示了创建调整时的错误数量。

这是链接--> http://imgur.com/hbiQ4oV

请帮助。

谢谢。

最佳答案

使用iOS设备作为构建机时,编译时最好不要使用root用户;仅使用 root 权限来安装您的软件包。

要提供更详细的错误消息,请使用“make messages=yes”。这将提供更多的上下文来查找问题所在。

关于ios - Theos 无法在我的 iPad 3 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23936341/

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