特定于平台的库的运行时或编译时?

发布于 2024-09-27 15:59:44 字数 146 浏览 3 评论 0原文

我正在用 C++ 创建一个库。它链接 Windows 上的 Windows 库和 Linux 上的 Linux 库。它是抽象的,一切都很好。

但是,动态检测、加载和使用库(并复制头文件以供使用)是否可行,以便在 LLVM JIT 下运行时可以在任何平台上使用它?

I'm creating a library in C++. It links against Windows libraries on Windows and Linux libraries on Linux. It's abstracted, all is well.

However, is it feasible to dynamically detect, load and use libraries (and copying header files for use) so it could be used on any platform if it was running under LLVM JIT?

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

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

发布评论

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

评论(1

若水般的淡然安静女子 2024-10-04 15:59:44

不幸的是,位码文件中的 LLVM 中间表示并不是完全与机器无关的。例如,您可能可以使用 x86 Linux 和 Windows,但相同的位代码可能无法在 x86_64 系统上运行。

Unfortunately, the LLVM intermediate representation in the bitcode files is not machine completely machine independent. You could probably get away with x86 Linux and Windows, but that same bitcode would probably not run on x86_64 systems, for example.

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