Linux 链接器标志 -lXi 编译 Lazarus 代码时未找到 lib

发布于 2024-07-16 04:12:19 字数 182 浏览 7 评论 0原文

在解决了我的第一个问题之后,我又遇到了另一个问题。 看起来我缺少某种库,导致链接器抱怨 -lXi 不起作用。

我已经包含了大部分 Xorg 开发包,我还需要什么?

After I solved my first problem I got into another one.
Looks like I'm missing some kind of library, making the linker complain that the -lXi is not working.

I've included most of the Xorg devel packages, what more do I need?

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

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

发布评论

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

评论(1

白鸥掠海 2024-07-23 04:12:19

当链接到“-lXi”时,编译器会查找名称以“libXi.so”开头(后跟某个版本号)的文件。 该命令

locate libXi.so | xargs rpm -qf | sort -u

在我的 Fedora 10 系统上给出

libXi-1.1.3-4.fc9.i386
libXi-1.1.3-4.fc9.x86_64
libXi-debuginfo-1.1.3-4.fc9.x86_64
libXi-devel-1.1.3-4.fc9.x86_64

,因此您可能缺少 libXi-devel 软件包。

When linking to "-lXi" the compiler looks for a file with name starting with "libXi.so" (followed by some version number). The command

locate libXi.so | xargs rpm -qf | sort -u

gives

libXi-1.1.3-4.fc9.i386
libXi-1.1.3-4.fc9.x86_64
libXi-debuginfo-1.1.3-4.fc9.x86_64
libXi-devel-1.1.3-4.fc9.x86_64

on my Fedora 10 system, so you are probably missing the libXi-devel package.

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