Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AVR32 studio 2.6 尝试编译一个 c++ 项目,但是每次我尝试运行它时,它都会说启动失败,因为找不到二进制文件。这个错误代码有解决办法吗?
我从未使用过 AVR32,但这是一个非常常见的 C++ 错误。这本质上意味着它找不到运行程序的可执行文件。这要么意味着您没有正确构建项目,要么您的 makefile 有错误。
确保首先正确构建您的项目,如果这不是问题,请查看如何为您正在使用的编译器创建 makefile。