为 optware 编译节点时出错 - libv8.a:无法读取符号:文件格式错误

发布于 2024-12-08 19:59:20 字数 372 浏览 0 评论 0原文

在 Ubuntu 11.10 上为 optware (slug) 交叉编译 node.js 时出现此错误。

/optware/cs05q1armel/builds/node/build/default/libv8.a(api.o):通用 ELF 中的重定位(EM:3) /optware/cs05q1armel/builds/node/build/default/libv8.a:无法读取符号:文件格式错误

使用标志 --without-snapshot --without-ssl --dest-cpu=arm for ./configure

arm -none-linux-gnueabi-g++ 被正确选择为编译器,尽管可能不适用于此库?

任何指示表示赞赏

Getting this error cross compiling node.js for optware (slug) on Ubuntu 11.10.

/optware/cs05q1armel/builds/node/build/default/libv8.a(api.o): Relocations in generic ELF (EM: 3)
/optware/cs05q1armel/builds/node/build/default/libv8.a: could not read symbols: File in wrong format

Using flags --without-snapshot --without-ssl --dest-cpu=arm for ./configure

arm-none-linux-gnueabi-g++ being correctly picked up as compiler, though maybe not for this lib?

Any pointers appreciated

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

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

发布评论

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

评论(1

删除→记忆 2024-12-15 19:59:20

此问题是由于在不同架构上编译 XXXX.o 造成的
机器。例如,Sun 工作站编译成 SPARC 机器代码,同时
我们的 LINUX 工作站编译成 Intel x86 代码。如果你编译一部分
在一种类型的架构上进行项目,然后尝试编译其余的
项目在另一种类型的建筑上,当你去制作最终作品时
可执行文件链接器/加载器将无法读取
项目 .o 文件来创建可执行文件,因此
“无法读取符号:文件格式错误”错误消息。
如果您更改机器架构,甚至操作系统版本,同时
做一个项目时,清理/删除所有现有的 .o 文件是合理的
并在您当前所在的计算机上重新创建整个项目。

来自 http://ugweb.cs.ualberta.ca/~rod/tutorials/ error_messagesC.html 部分“难以理解的错误”

This problem is due to compiling XXXX.o on a different architecture
machine. For instance, Sun workstations compile into SPARC machine code while
our LINUX workstations compile into Intel x86 code. If you compile part of a
project on one type of architecture and then try to compile the rest of the
project on another type of architecture, when you go to make the final
executable the linker/loader will NOT be able to read one of the parts of the
project .o files to create an executable, thus the
"could not read symbols: File in wrong format" error message.
If you change machine architectures, or even operating system versions, while
doing a project it is reasonable to clean/remove all the existing .o files
and re-create the whole project on the current machine you are sitting at.

from http://ugweb.cs.ualberta.ca/~rod/tutorials/error_messagesC.html in section "Errors That Elude Your Understanding"

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