We are porting our linux development to windows.
To create a static library, we still use ar
under windows (Msys2) to create a libXXX.a
file. The windows way is actually to create a .lib
file using some windows tool. But the libXXX.a
file seems to work fine on our msys2 tool chain. But linking against this file is VERY slow. So what is the difference between a .a
and a .lib
file? Would creating a .lib
file speed up the linking?