OMAP:构建和安装 ltrace

发布于 2024-10-10 00:49:58 字数 327 浏览 4 评论 0 原文

有人知道我在哪里可以找到针对 OMAP 处理器交叉编译 ltrace 的说明吗?我从 ltrace_0.5.3.orig.tar.gz >here,并尝试通过将适当的参数传递给配置脚本来进行交叉编译,但我似乎不支持除普通的旧 gcc 之外的任何内容。

根据文档它支持ARM。也许我需要从其他地方提取包裹?

Anyone know where I can find instructions for cross compiling ltrace for the OMAP processor? I downloaded ltrace_0.5.3.orig.tar.gz from here, and tried cross compiling by passing the approriate parameters to the configure script, but I does not appear to support anything but plain old gcc.

According to the documentation it supports ARM. Maybe I need to pull the package from somewhere else?

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

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

发布评论

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

评论(1

夏九 2024-10-17 00:49:58

ltrace_0.5.3 configure 不是由 autoconf 生成的脚本,因此标准 --build 选项不会执行任何操作。
要指定使用哪个编译器,您需要提供 CC 选项,例如:
./configure CC=arm-linux-gnueabi-gcc

另请注意:
- CPPFLAGS 设置为“-I /usr/include/libelf”
- ltrace 需要 libelf
- 检查配置是用 gcc 进行的

ltrace_0.5.3 configure is not a script generated by autoconf, so standard --build option doesn't do anything.
To specify which compiler to use you need to do give CC option, e.g:
./configure CC=arm-linux-gnueabi-gcc

Also take care that:
- CPPFLAGS is set to ' -I /usr/include/libelf'
- ltrace requires libelf
- check in configure are made with gcc

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