What is a file with extension .a?

前端 未结 2 1971
抹茶落季
抹茶落季 2020-12-04 14:03

I downloaded this: https://github.com/mongodb/mongo-c-driver

And now I\'m trying to use it inside my C program, but I don\'t know what to do with the generated .a fi

相关标签:
2条回答
  • 2020-12-04 14:35

    .a files are static libraries typically generated by the archive tool. You usually include the header files associated with that static library and then link to the library when you are compiling.

    0 讨论(0)
  • 2020-12-04 14:42

    .a files are created with the ar utility, and they are libraries. To use it with gcc, collect all .a files in a lib/ folder and then link with -L lib/ and -l<name of specific library>.

    Collection of all .a files into lib/ is optional. Doing so makes for better looking directories with nice separation of code and libraries, IMHO.

    0 讨论(0)
提交回复
热议问题