error “ld terminated with signal 6” for theos project after upgrade to Xcode 4.5

限于喜欢 提交于 2020-01-02 07:09:50

问题


I'm using https://github.com/DHowett/theos to implement a tweak for jailbroken iphone. I followed http://brandontreb.com/beginning-jailbroken-ios-development-getting-the-tools/ and everything worked fine. Then I upgrade my Xcode to 4.5. Then when compiling any tweak projects, even a hello world project, it failed with following error:

    Making all for tweak PreferenceLoader...
    Preprocessing Tweak.xm...
    Compiling Tweak.xm...
    Linking tweak PreferenceLoader...
    collect2: ld terminated with signal 6 [Abort trap: 6]
    ld(8724,0x7fff78fd2960) malloc: *** error for object 0x7f89b35003f0: pointer being freed was not allocated
    *** set a breakpoint in mallocerror_break to debug
    make[2]: *** [obj/PreferenceLoader.dylib] Error 1
    make[1]: *** [internal-library-all] Error 2
    make: *** [PreferenceLoader.all.tweak.variables] Error 2

I found this http://iphonesdkdev.blogspot.jp/2012/06/how-to-install-thoes-under-xcode-44.html, followed all steps, but still no luck.

Any ideas on the linking tool's crash?


回答1:


got feedback from https://github.com/DHowett/theos/issues/39

Xcode 4.5 ships with two different versions of the same linker. The one used by gcc (which is deprecated) crashes on armv6 output, and the one used by clang can not generate armv6 output. There is currently no way to use the 6.0 SDK while targeting iOS versions less than 4.3, or any armv6 platforms. If you're willing to accept this, please add the following to the top of your Makefile:

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

(note from theiostream) Alternatively, it is possible to use older SDKs and build for both architectures and older deployment targets (up from 3.0). Just force them (if they exist on your Xcode Developer directory), as:

export ARCHS = armv6 armv7 export TARGET=iphone::



来源:https://stackoverflow.com/questions/12632831/error-ld-terminated-with-signal-6-for-theos-project-after-upgrade-to-xcode-4-5

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!