illegal text reloc to non_lazy_ptr error while building in xcode 4 with libav* libraries

后端 未结 1 800
太阳男子
太阳男子 2021-01-14 05:56

I\'m trying to build a simple application that uses ffmpeg\'s libav* libraries in xcode 4 and getting the following error:

ld: illegal text reloc to non_lazy_ptr fro

相关标签:
1条回答
  • 2021-01-14 06:06

    I have the same error. Finally, I got the solution at http://lists.apple.com/archives/unix-porting/2008/Jan/msg00027.html

    just add other link flag:

    -read_only_relocs suppress
    

    * EXPLANATION * The two assembly commands load the absolutes address of _trail into R15. Doing so is fine if _trail is ultimately in the same linkage unit. _trail is in libmodule.dylib. For this to work, at runtime the dynamic loader (dyld) would have to rewrite the two instructions. Normally dyld only updates data pointers. One work around is to make libdyalog an archive (e.g. libdyalog.a) and link that with pere.s. Then all the code would be in the same linkage unit, so there would be no need for runtime text relocs. The runtime (dyld) does support text relocs (updating instructions) for i386, but you need to link with -read_only_relocs suppress.

    0 讨论(0)
提交回复
热议问题