Linux 模块依赖
我们有一个由第三方开发的 Linux 模块,现在该模块在 Fedora 系统上可以正确运行,但在 Ubuntu 上同样会失败。当我们对二进制文件执行 ldd 时,会收到以下输出
linux-gate.so.1 => (0xffffe000)
libdl.so.2 => /lib32/libdl.so.2 (0xf76f5000)
libc.so.6 => /lib32/libc.so.6 (0xf759b000)
/lib/ld-linux.so.2 (0xf7705000)
libutf16.so => not found
,我无法找到 ubuntu 的库 libutf16,我在哪里可以找到这个库,或者它是更大库的一部分。
We have a linux module developed by a 3rd party, now the module runs correctly on a Fedora system but on Ubuntu the same fails. When we do an ldd for the binary the following output is received
linux-gate.so.1 => (0xffffe000)
libdl.so.2 => /lib32/libdl.so.2 (0xf76f5000)
libc.so.6 => /lib32/libc.so.6 (0xf759b000)
/lib/ld-linux.so.2 (0xf7705000)
libutf16.so => not found
I am unable to find the library libutf16 for ubuntu, where can i find this library or is it part of a bigger library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有 没有文件Ubuntu 10.04 中任何软件包的名称中都包含
libutf16
。There is no file that contains
libutf16
in its name in any package in Ubuntu 10.04.