zlib 和 mingw32
当将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同样在 Linux 上,通常的方法是
链接到 DLL,而不是 .so; 记住,生成的可执行文件也是 Windows 可执行文件。
请参阅我最近的帖子:发现注册的 COM 组件,它在 Linux 和 Windows 上编译相同的二进制文件
Also on linux the usual recipe is
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