哪里可以下载 GNU C++编译器
谁能建议我在哪里下载 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
在 Debian/Ubuntu 上获取您需要的一切非常简单:
Getting everything you need on Debian/Ubuntu is very easy:
使用 GCC 怎么样?
引用它的主页:
它肯定可以在 Ubuntu 上运行;它甚至是通过包系统提供的(抱歉,我的系统是法语):(
翻译为描述:GNU C++编译器。这是GNU C++编译器,一个相当可移植的优化编译器对于 C++。 英文)
有关 Windows 支持的信息,您可以查看:http://gcc.gnu.org/install/specific.html#windows
类似于 MinGW 或 Cygwin 可能会做:-)
引用 MinGW 的主页:
对于 netbeans,我不能说:我不使用它——至少对于 C++ 不使用它......
What about using GCC ?
Quoting it's homepage :
It will definitly work on Ubuntu ; it's even provided through the package system (sorry, my system is in french) :
(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 :
For netbeans, I can't tell : I don't use it -- not for C++, at least...
对于 Windows,您需要 cygwin。
For windows, you will want cygwin.
在 Ubuntu 上使用 sudo apt-get install g++ 。
Use
sudo apt-get install g++
on Ubuntu.如果您使用任何 Linux/Unix/Solaris 操作系统,则可以使用它,除非您明确未安装。也就是说,如果您仍然希望安装 GNU C++ 编译器,请使用此命令
,如果您希望在 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
and if you wish to download it on your windows, steps are here on Minimalist GNU for Windows
尝试 http://gcc.gnu.org/ 和 http://packages.ubuntu.com/hardy/gcc
Try http://gcc.gnu.org/ and http://packages.ubuntu.com/hardy/gcc
要安装 gcc 和 g++ 编译器,您将需要 build-essential 包。这也将安装 GNU make。
build-essential 包含构建 Ubuntu 软件包所必需的软件包列表,包括 gcc 编译器、make 和其他必需的工具。
现在,您应该能够使用 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.
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