由于找不到二进制文件而启动失败
我正在使用 AVR32 studio 2.6 尝试编译 c++ 项目,但每次我尝试运行它时,它都会说启动失败,因为找不到二进制文件。这个错误代码有修复方法吗?
I am using AVR32 studio 2.6 to try to compile a c++ project, but everytime i try to run it, it says launch failure as no binaries could be found. Is there a fix for this error code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未使用过 AVR32,但这是一个非常常见的 C++ 错误。这本质上意味着它找不到运行该程序的可执行文件。这要么意味着您没有正确构建项目,要么您的 makefile 有错误。
首先确保您的项目已正确构建,如果这不是问题,请查找如何为您正在使用的编译器创建 makefile。
I have never used AVR32, but this is a very common C++ error. It essentially means that it can't find the executable to run the program from. Which either means you have not built the project properly, or your makefile has errors.
Make sure your project is properly built first, and if that isn't the problem, look up how to create makefiles for the compiler you are using.