"? I have a .lib file, just wondering what compiler it starts from: does it start with "! "? thank...">

Which .lib file starts with "! <Arch>"?

I have a .lib file, just wondering what compiler it starts from: does it start with "! <arch>"?

thank

+3
source share
2 answers

!<arch>sounds like ar archive .

+4
source

A .lib file is usually created using the Visual C ++ Compiler. In the linux environment, gcc generates .a and .so files, but there is no .lib file.

0
source

Source: https://habr.com/ru/post/1742393/


All Articles