Reputation: 3424
I have old libraries in my project which do not support 64 bit architecture.I dont have source of those libraries.I have just .a files of those libraries.Is there any way that I can convert these libraries to 64 bit supportive libraries?
Upvotes: 1
Views: 999
Reputation: 12914
You need to recompile the project on 64 bit architecture. Since you don't have the source code, unfortunately it's NOT possible to convert the library to support 64 bit architecture.
Probably the only thing you can do is searching the web for other versions of this library. If you find anything, you can use this terminal command to check what architectures it is supporting:
lipo -info LIB_NAME.a
Upvotes: 1