g++和海湾合作委员会的区别

发布于 2024-12-11 07:32:14 字数 132 浏览 0 评论 0原文

我正在尝试在 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 技术交流群。

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

发布评论

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

评论(3

来日方长 2024-12-18 07:32:14

g++ 用于编译 C++,gcc 用于编译 C。两种不同语言的两种不同编译器!

g++ is for compiling C++, gcc is for compiling C. Two different compilers for two different languages!

决绝 2024-12-18 07:32:14

我对 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.

梦醒时光 2024-12-18 07:32:14

g++gcc 程序都来自同一个自由软件项目 GCC 。但是,在 Ubuntu 上,您有多个不同的软件包,因此请使用 gcc-4.6安装 g++-4.6g++ 软件包>gcc 一。 (如果您不安装两者,您将无法同时编译 C 和 C++)。

这两个程序都可以编译 C 和 C++ 文件,假设 C 文件以 .c 为后缀,C++ 文件以 .cc.cpp 为后缀( ETC..)。

但它们不会做完全相同的事情,特别是它们不会链接相同的默认库。

要了解它们的作用,您可以运行

gcc -v -Wall -g myprog.cc -o myprog

g++ -v -Wall -g myprog.cc -o myprog

然后您就会看到差异。 -v 标志通常表示“详细”。

Both g++ and gcc programs are from the same free software project, GCC. However, on Ubuntu you have several different packages for them, so install the g++-4.6 or the g++ package with gcc-4.6 or gcc 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

gcc -v -Wall -g myprog.cc -o myprog

and

g++ -v -Wall -g myprog.cc -o myprog

and you'll see the differences. The -v flag often means "verbose".

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