ios - How can I check if a 3rd party static library for the iPhone SDK is compiled for Thumb? -
i'm working development platform (monotouch) not allow me link 3rd party libraries compiled thumb due bug in apple linker. how can determine if library compiled thumb or not?
thanks!
run otool -tv <library>
on , 2 byte instructions.
here example showing thumb code: http://pastebin.com/4kq52f9d here example showing non-thumb code: http://pastebin.com/137gjdr1
Comments
Post a Comment