Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/117.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 试图学习iPhone调整开发,未知Theos错误在';制作';命令_Ios_Makefile_Cydia_Tweak_Theos - Fatal编程技术网

Ios 试图学习iPhone调整开发,未知Theos错误在';制作';命令

Ios 试图学习iPhone调整开发,未知Theos错误在';制作';命令,ios,makefile,cydia,tweak,theos,Ios,Makefile,Cydia,Tweak,Theos,这就是终端出现的情况。有什么建议吗?我在这篇文章中给出了建议:但它没有帮助 Copying resource directories into the application wrapper... Compiling main.m... Compiling fooProjectApplication.mm... Compiling RootViewController.mm... Linking application fooProject... collect2: ld terminated

这就是终端出现的情况。有什么建议吗?我在这篇文章中给出了建议:但它没有帮助

Copying resource directories into the application wrapper...
Compiling main.m...
Compiling fooProjectApplication.mm...
Compiling RootViewController.mm...
Linking application fooProject...
collect2: ld terminated with signal 6 [Abort trap: 6]
ld(2090,0x7fff77045960) malloc: *** error for object 0x7fcaaa5009c0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
collect2: ld terminated with signal 6 [Abort trap: 6]
ld(2094,0x7fff77045960) malloc: *** error for object 0x7fbeeb6003d0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
lipo: can't open input file: /var/folders/nl/nffpk84n2vq1pg2lxcplx4mh0000gn/T//ccKO4deH.out (No such file or directory)
make[2]: *** [obj/fooProject.app/fooProject.ba964c90.unsigned] Error 1
make[1]: *** [internal-application-all_] Error 2
make: *** [fooProject.all.application.variables] Error 2

将其设置在makefile的顶部

export ARCHS = armv7
export TARGET = iphone:latest:4.3
export GO_EASY_ON_ME=1

我也遇到了同样的问题,所以这可能会帮助您修复它

您设备上的工具链有缺陷:具体来说,链接器有一个内存管理缺陷。你有什么样的工具链?我该怎么检查?抱歉,这还是个新概念。你不需要“检查”,你知道你安装了什么工具链。这很有效,但你介意解释一下如何/为什么吗?这是否将兼容的SDKVERSION设置为4.3?谢谢,实际上我自己也很困惑。我认为这与最新的Xcode库有关,因为它放弃了对armv6的支持。但是关于将目标设定为4.3,我真的不知道。