加载共享库时出错:意外的重新定位类型 0x7e
我使用 mips glibc 编译器构建嵌入式 linux 2.6.32。 很多应用程序无法运行。它们都显示此错误消息。 我找不到字符串“加载共享库时出错”并且 Linux 源代码中的“意外的 reloc 类型”。他们从哪里来?
是内核问题还是库问题还是应用程序问题?
I build embedded linux 2.6.32 with mips glibc compiler.
A lot of application can not run. They all display this error message.
I can not find the string "error while loading shared libraries" and
"unexpected reloc type" in the linux source code. Where do they come from?
Is it the kernel problem or the library problem or the application problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能与用于构建应用程序的工具链(编译器、链接器)之间的不兼容有关。在实践中,MIPS 并没有多大意义:有不同的 MIPS 架构具有不同的指令集。
It could be related to incompatibility between the toolchains (compilers, linkers) used to build the applications. And in practice, MIPS don't mean much: there are different MIPS architectures with different instruction sets.
该错误消息特别来自动态链接器
/lib/ld-linux.so.2
。但我不知道是什么导致了错误消息。That error message in particular comes from
/lib/ld-linux.so.2
, the dynamic linker. I have no clue what's causing the error message, though.