What's a “.dll.a” file?

前端 未结 1 2026
刺人心
刺人心 2021-02-05 02:48

I\'m trying to use a open source library from a Windows application, and the only pre-built version I can find comes as a file called \"lib.dll.a\"

What format is this,

1条回答
  •  逝去的感伤
    2021-02-05 03:11

    Naming the output file libjvm.dll.a will allow gcc to recognize it as a library named jvm. The .dll.a suffix indicates (by convention) that it is an import library, rather than a static library (which would simply be named libjvm.a, again by convention).

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