zlib 和 mingw32

发布于 2024-11-19 12:13:35 字数 125 浏览 4 评论 0原文

当将 zlib 与 mingw32 一起使用时,我应该链接到 zlib1.dll 文件,还是某个 zlib.so 文件?我认为是后者,但找不到任何解释如何获取和/或使用此类文件的资源。

When using zlib with mingw32, should I be linking to the zlib1.dll file, or to some zlib.so file? I would think the latter, but cannot find any resources explaining how to get and/or use such a file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

却一份温柔 2024-11-26 12:13:36

同样在 Linux 上,通常的方法是

mingw-g++ ...... -lole32

链接到 DLL,而不是 .so; 记住,生成的可执行文件也是 Windows 可执行文件。

请参阅我最近的帖子:发现注册的 COM 组件,它在 Linux 和 Windows 上编译相同的二进制文件

Also on linux the usual recipe is

mingw-g++ ...... -lole32

which links to a DLL, not an .so; The executable produced is also a Windows executable, remember.

See e.g. my recent post here: Discovering registered COM components which compiles the same binary on both linux and windows

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文