目的
目的是在Ubuntu 18.04 Bionic Beaver上安装G ++ C++编译器
操作系统和软件版本
- 操作系统:-Ubuntu 18.04仿生海狸
要求
以root或通过特权访问Ubuntu系统sudo
命令是必需的。
约定
本教程的其他版本
使用说明
安装GCC
下列linux命令将会安装gcc
在Ubuntu 18.04 Bionic Beaver上进行编译。打开终端并输入:
$ sudo apt install g++
安装build-essential
另一种安装方式g++
编译器将其安装为build-essential
包。另外build-essential
软件包还将安装其他库以及gcc
编译器。在大多数情况下,或者如果不确定,这正是您所需要的:
$ sudo apt install build-essential
(adsbygoogle = window.adsbygoogle || [])。push({});
检查G ++版本
通过检查GCC版本来确认安装:
$ g++ --version
g++ (Ubuntu 7.2.0-18ubuntu2) 7.2.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
C Hello World
编译一个简单的C++ “Hello World”代码:
#include <iostream>
using namespace std;
int main()
{
cout
将以上代码保存在hello.cc
文件,编译并执行:
$ g++ -o hello hello.cc
$ ./hello
Hello, World!