g++和海湾合作委员会的区别
我正在尝试在 Ubuntu 机器上编译 CPP 代码。我在某处读到 g++ 包含在 gcc 中。所以在 CodeBlocks 中我包含了 GNU GCC 编译器。 Codeblocks 返回错误,指出未找到 g++。 g++ 是另一个单独的编译器吗?
I am trying to compile CPP code on an Ubuntu machine. I read somewhere that g++ is included in gcc. so in CodeBlocks I included the GNU GCC compiler. Codeblocks returned an error saying that g++ was not found. Is g++ another seperate compiler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
g++ 用于编译 C++,gcc 用于编译 C。两种不同语言的两种不同编译器!
g++ is for compiling C++, gcc is for compiling C. Two different compilers for two different languages!
我对 g++ 不太熟悉,但 g++ 是一个 C++ 编译器,而 C++ 是 C 语言的扩展,因此所有 C 代码都可以用 C++ 编译器编译。所以你可以说 g++ 包含一个 C 编译器,但我认为说 g++ 包含 gcc 是不正确的。
I'm not very familiar with g++ but g++ is a C++ compiler and C++ is an extension of the C language so all C code can be compiled with a C++ compiler. So you could say that g++ contains a C compiler but saying that g++ contains gcc isn't correct I think.
g++
和gcc
程序都来自同一个自由软件项目 GCC 。但是,在 Ubuntu 上,您有多个不同的软件包,因此请使用gcc-4.6
或安装
一。 (如果您不安装两者,您将无法同时编译 C 和 C++)。g++-4.6
或g++
软件包>gcc这两个程序都可以编译 C 和 C++ 文件,假设 C 文件以
.c
为后缀,C++ 文件以.cc
或.cpp
为后缀( ETC..)。但它们不会做完全相同的事情,特别是它们不会链接相同的默认库。
要了解它们的作用,您可以运行
,
然后您就会看到差异。
-v
标志通常表示“详细”。Both
g++
andgcc
programs are from the same free software project, GCC. However, on Ubuntu you have several different packages for them, so install theg++-4.6
or theg++
package withgcc-4.6
orgcc
one. (if you don't install both, you won't be able to compile both C & C++).Both programs can compile C and C++ files, assuming the C files are suffixed with
.c
and the C++ ones with.cc
or.cpp
(etc..).But they won't do exactly the same things, in particular, they won't link the same default libraries.
To understand what they do, you can run
and
and you'll see the differences. The
-v
flag often means "verbose".