Linux下使用Windows MinGW.a库

发布于 2024-12-03 17:09:51 字数 158 浏览 1 评论 0原文

我有一个在 Windows 下使用 MinGW 创建的库。 .a 库包含一些 .o 文件。现在我想在Linux下使用这个库。如果我尝试将库链接到我的程序,我会得到一些对该库中函数的未定义引用。不过windwos下就没有任何问题了。是否可以将 Windows MinGW .a 库“转换”到 Linux?

I have a library which has been created under Windows with MinGW. The .a library contains some .o files. Now I want to use this library under Linux. If I try to link the library to my program I get some undefined references to functions in this library. Under windwos however there aren't any problems. Is it possible to "convert" a windows MinGW .a library to Linux?

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

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

发布评论

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

评论(2

绾颜 2024-12-10 17:09:51

它将被编译为使用 Windows 操作系统功能,因此无法在其他平台上运行。

您可以尝试将其与 WINE(适用于 Linux 的 Windows API 适配器)链接,但最简单的解决方案是如果您有权访问源代码,则只需在目标平台上重新编译该库即可。

It will have been compiled to use Windows OS functions, so will not work on other platforms.

You could try linking it with WINE (a Windows API adaptor for Linux) but the simplest solution is to just recompile the library on your target platform if you have access to the source code.

旧人哭 2024-12-10 17:09:51

MinGW 旨在用于 Windows 平台。如果你想在 Linux 上运行,请使用 gcc 等 gnome 编译器编译代码

MinGW is meant to be for windows platform. If you want to run for linux, compile the code with gnome compilers like gcc

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