Linux 链接器标志 -lXi 编译 Lazarus 代码时未找到 lib
在解决了我的第一个问题之后,我又遇到了另一个问题。 看起来我缺少某种库,导致链接器抱怨 -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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当链接到“-lXi”时,编译器会查找名称以“libXi.so”开头(后跟某个版本号)的文件。 该命令
在我的 Fedora 10 系统上给出
,因此您可能缺少 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
gives
on my Fedora 10 system, so you are probably missing the libXi-devel package.