使用eclipse进行C语言编程

发布于 2024-12-29 03:28:39 字数 236 浏览 1 评论 0原文

我是在 Ubuntu 中使用 eclipse 进行 C 编程的新手。 当我运行 ac 程序时,即使在安装 g++ 后,它也会显示 Launch failed binary not find

我使用以下命令

sudo apt-get install g++

安装了 g++第二个问题是如何创建 makefile 以及它有什么用?

I am new to eclipse using for C programming in Ubuntu.
When I run a c program it is displaying Launch failed binary not found even after installing g++.

I installed g++ using following command

sudo apt-get install g++

second question is how to create makefile and how it is useful ?

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

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

发布评论

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

评论(2

本王不退位尔等都是臣 2025-01-05 03:28:39

请记住首先构建您的项目。我第一次使用 Eclipse+CDT 时遇到了同样的错误:我试图在不构建项目的情况下运行该项目。

Remember to build your project first. The first time I used Eclipse+CDT I got the same error: I was trying to run the project without building it.

稳稳的幸福 2025-01-05 03:28:39
  1. 安装 build-essentialeclipse-cdt。 (您可能需要 gcc,而不是 g++
  2. Makefile 是声明构建顺序的文件。它在大型程序中非常有用。 (如果只有一个 .c 文件,请不要使用 make)
  1. install build-essential and eclipse-cdt. (you probably need gcc, not g++)
  2. A Makefile is a file that declares the order of building. it's very useful in large programs. (if you have just one .c file, don't use make)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文