使用eclipse进行C语言编程
我是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住首先构建您的项目。我第一次使用 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.
build-essential
和eclipse-cdt
。 (您可能需要gcc
,而不是g++
)Makefile
是声明构建顺序的文件。它在大型程序中非常有用。 (如果只有一个 .c 文件,请不要使用 make)build-essential
andeclipse-cdt
. (you probably needgcc
, notg++
)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)