哪里可以下载 GNU C++编译器

发布于 2024-08-02 06:09:10 字数 87 浏览 8 评论 0原文

谁能建议我在哪里下载 GNU c++ 编译器,我可以在 Ubuntu 中使用它,也可以在 Windows 上使用 Netbeans IDE 以及 GNU 工具。

Can anyone suggest me where to download a GNU c++ compiler, which I can use in Ubuntu and also on Windows with Netbeans IDE, and also GNU tools.

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

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

发布评论

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

评论(7

殊姿 2024-08-09 06:09:10

在 Debian/Ubuntu 上获取您需要的一切非常简单:

sudo apt-get install build-essential 

Getting everything you need on Debian/Ubuntu is very easy:

sudo apt-get install build-essential 
花桑 2024-08-09 06:09:10

使用 GCC 怎么样?

引用它的主页:

GNU 编译器集合包括
C、C++、Objective-C 的前端,
Fortran、Java 和 Ada,以及
这些语言的库
(libstdc++、libgcj、...)。

它肯定可以在 Ubuntu 上运行;它甚至是通过包系统提供的(抱歉,我的系统是法语):(

$ apt-cache show g++
Package: g++
...
Description-fr: Compilateur C++ du projet GNU
 Le compilateur C++ du projet GNU. Un compilateur C++ relativement portable
 et capable de bonnes optimisations.

翻译为描述:GNU C++编译器。这是GNU C++编译器,一个相当可移植的优化编译器对于 C++。 英文)

有关 Windows 支持的信息,您可以查看:http://gcc.gnu.org/install/specific.html#windows

类似于 MinGW Cygwin 可能会做:-)

引用 MinGW 的主页:

MinGW,“Minimalist”的缩写
GNU for Windows”,是 GNU 的一个端口
编译器集合 (GCC) 和 GNU
Binutils,用于开发
原生 Microsoft Windows
应用程序。

对于 netbeans,我不能说:我不使用它——至少对于 C++ 不使用它......

What about using GCC ?

Quoting it's homepage :

The GNU Compiler Collection includes
front ends for C, C++, Objective-C,
Fortran, Java, and Ada, as well as
libraries for these languages
(libstdc++, libgcj,...).

It will definitly work on Ubuntu ; it's even provided through the package system (sorry, my system is in french) :

$ apt-cache show g++
Package: g++
...
Description-fr: Compilateur C++ du projet GNU
 Le compilateur C++ du projet GNU. Un compilateur C++ relativement portable
 et capable de bonnes optimisations.

(which translates to Description: The GNU C++ compiler. This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. in English)

For informations about Windows support, you can have a look at : http://gcc.gnu.org/install/specific.html#windows

Something like MinGW or Cygwin will probably do :-)

Quoting MinGW's homepage :

MinGW, a contraction of "Minimalist
GNU for Windows", is a port of the GNU
Compiler Collection (GCC), and GNU
Binutils, for use in the development
of native Microsoft Windows
applications.

For netbeans, I can't tell : I don't use it -- not for C++, at least...

思念绕指尖 2024-08-09 06:09:10

对于 Windows,您需要 cygwin

For windows, you will want cygwin.

用心笑 2024-08-09 06:09:10

在 Ubuntu 上使用 sudo apt-get install g++ 。

Use sudo apt-get install g++ on Ubuntu.

沒落の蓅哖 2024-08-09 06:09:10

如果您使用任何 Linux/Unix/Solaris 操作系统,则可以使用它,除非您明确未安装。也就是说,如果您仍然希望安装 GNU C++ 编译器,请使用此命令

sudo aptitude install build-essential 

,如果您希望在 Windows 上下载它,步骤为 这里关于 Windows 的 Minimalist GNU

If you are using any Linux/Unix/Solaris OS it is available unless you have explicitly not installed. That said, if you still wish to install GNU C++ compiler, use this command

sudo aptitude install build-essential 

and if you wish to download it on your windows, steps are here on Minimalist GNU for Windows

静谧幽蓝 2024-08-09 06:09:10

要安装 gcc 和 g++ 编译器,您将需要 build-essential 包。这也将安装 GNU make。

build-essential 包含构建 Ubuntu 软件包所必需的软件包列表,包括 gcc 编译器、make 和其他必需的工具。

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install build-essential
$ gcc -v
$ make -v

现在,您应该能够使用 C / C++ 编译器来编译软件。

要安装 c 和 c++ 开发的联机帮助页,请安装 manpages-dev 包。

https://help.ubuntu.com/community/InstallingCompilers

To install the gcc and g++ compilers, you will need the build-essential package. This will also install GNU make.

build-essential contains a list of packages which are essential for building Ubuntu packages including gcc compiler, make and other required tools.

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install build-essential
$ gcc -v
$ make -v

Now, you should able to compile software using C / C++ compilers.

To install the manpages for c and c++ development, install the manpages-dev package.

https://help.ubuntu.com/community/InstallingCompilers

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