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
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.