I have a static library (.a) generated by the GNU tools for ARM on Linux enviromnent and want to use this library in Windows environment (Visual Studio 2008) using the Microsoft tools for ARM architecture. Is there any way to use .a static library with Microsoft tools?
I don't have the source code that's why I cannot cross compile the source code for MS compiler.
Thanks!
objcopy
instead, which can convert between different objectfile formats. Note that the*.a
files are "ar" archives, so you might have to unpack them first to process the contents. In any case, you need luck in order to get this to work, as Devolous explained below. – Ulrich Eckhardt Jun 9 '13 at 17:59