문제

I'm working with a development platform (monotouch) that does not allow me to link 3rd party libraries that are compiled for Thumb due to a bug in the apple linker. How can I determine if a library was compiled for thumb or not?

Thanks!

도움이 되었습니까?

해결책

Run otool -tv <LIBRARY> on it and look for 2 byte instructions.

Here is an example showing thumb code: http://pastebin.com/4Kq52f9D Here is an example showing NON-thumb code: http://pastebin.com/137GJDR1

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top