BeagleBoard Narcissus 工具链存在 OpenCv 问题
我正在使用 Eclipse 和 Narcissus 交叉编译器工具链在我的 BeagleBoard-XM 上编译 OpenCV 项目。 我按照这些链接来执行此操作: http://www.lvr.com/eclipse1.htm http://groups.google.com/group/beagleboard/browse_thread/thread/1ec0c6585a2141c8?pli=1
当我尝试编译该项目时,出现错误:
Description Resource Path Location Type
make: *** [hello_world.o] Error 1 hello_world C/C++ Problem
我认为问题出在工具链本身,有什么想法吗?
I'm using Eclipse with Narcissus Cross-Compiler Toolchain to compile OpenCV project on my BeagleBoard-XM.
I followed those links to do this:
http://www.lvr.com/eclipse1.htm
http://groups.google.com/group/beagleboard/browse_thread/thread/1ec0c6585a2141c8?pli=1
When i try to compile the project i get an Error:
Description Resource Path Location Type
make: *** [hello_world.o] Error 1 hello_world C/C++ Problem
I think the problem is with the Toolchain itself, Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CDT 框架在后台运行 GNU Make 来执行实际构建(除非您使用内部构建器,这不是默认的)。您看到的错误是因为托管项目的自动生成的 makefile 的 makefile 目标之一未能成功运行。
问题视图的输出信息不足以回答您的问题。只有构建的控制台视图输出包含足够的信息来诊断问题。请发布控制台视图的CDT构建控制台的完整输出。
此时,我们唯一可以猜测的是构建过程中的某些内容以退出代码 1 退出。
The CDT framework runs GNU Make under the hood to do the actual build (unless you are using the internal builder, which isn't the default). The error you see is because one of the makefile targets, of the managed project's auto-generated makefile, has failed to run successfully.
The output of the Problem view is insufficient information to answer your question. Only the Console view output for the build contains sufficient information to diagnose the problem. Please post the entire output of the CDT Build Console for the Console view.
At this point the only guess we can make is that something in the build process exited with exit code 1.