Eclipse C++构建问题

发布于 2024-10-05 20:17:34 字数 155 浏览 7 评论 0原文

我刚刚在 Ubuntu 上的 Eclipse 中用 C++ 编写了一个简单的程序。但是,当我按 Ctrl+B 或选择构建全部按钮时,不会构建任何二进制文件,因此当我尝试运行该项目时,我收到错误消息:启动失败。未找到二进制文件。

我应该怎么办?

谢谢!


I've just written a simple program in C++ in Eclipse on Ubuntu. But when I press Ctrl+B or select the build all button no binary file is build, and so when I try to run the project I receive the error message: Launch failed. binary not found.

what should I do?

thanx!

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

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

发布评论

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

评论(3

山有枢 2024-10-12 20:17:34

您可以在终端中编译并运行程序

使用 cd 命令进入终端中的特定目录并输入

g++ <filename>.cpp -o <filename> # This compiles the code
./<filename> # Runs the program in the terminal

You can compile and run the program in the terminal

Go to the specific directory in the terminal using the cd command and type

g++ <filename>.cpp -o <filename> # This compiles the code
./<filename> # Runs the program in the terminal
国产ˉ祖宗 2024-10-12 20:17:34

您必须手动配置用于运行程序的“运行配置”才能找到要执行的二进制文件。如果没有编译错误,它应该在某个地方创建了一个可执行文件。

You'll have to manually configure the 'run configuration' you use to run the program to find the binary to execute. If there are no compilation errors, it should have created an executable somewhere.

起风了 2024-10-12 20:17:34

我的二进制文件在默认包下找到,而不是预期的“调试”包。我必须手动修改运行配置(如 ascanio 提到的)。我不得不更改应用程序的路径,仅此而已。

My Binaries were found under Default package instead of the expected "Debug" package. I had to manually modify run configuration (as mentioned by ascanio). I had to change the path of the application that's all.

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