我可以在 Linux 中使用 Windows 库,反之亦然吗?
据我所知,Windows 使用 .lib 和 .dll 扩展库,而 Linux 使用 .a 和 .so。我正在 ubuntu 中开发一个项目,用于处理 jpeg 图像文件。所以我想知道这些库是否可以在linux和windows中互换使用?例如,如果在 ubuntu 中创建了 example.so 库,现在我想在 Windows 中的某些编译器中使用它...
As per my knowledge, windows uses .lib and .dll extension for libraries and linux uses .a and .so. I am working on a project in ubuntu for manipulation with jpeg image files. so i want to know if these libraries can be used interchangeably in linux and windows? for example if have created example.so library in ubuntu and now i want to use it in some compiler in windows...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您计划在 Wine 下运行,那么可以。
不然机会很小。 Windows DLL 最有可能使用 Linux 上不可用的 Windows API。即使它们不是,DLL 也是为在 Windows 上运行的编译器使用而构建的。
为什么不使用 imagemagick 呢? http://www.imagemagick.org/script/index.php
If you're planning on running under Wine, then yes.
Otherwise the chances are small. Windows DLLs will most probably use Windows APIs not available on Linux. Even if they're not the DLLs are built for use with compilers running on Windows.
Why not use imagemagick? http://www.imagemagick.org/script/index.php