Ubuntu 21.10にgccをインストールする
環境
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=21.10 DISTRIB_CODENAME=impish DISTRIB_DESCRIPTION="Ubuntu 21.10"
1.build-essentialのインストール
build-essentialは、パッケージを作成するために必要なパッケージです。
# sudo apt install -y build-essential
2.gccバージョンを確認します
# gcc --version gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0 Copyright (C) 2021 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.
3.動作確認
test.cpp
#include <iostream> using namespace std; int main() { cout << "Hello world.12345" << endl; return 0; }
コンパイルを行います
# g++ -o testopp test.cpp
ファイルを実行
# ./testopp
Hello world.12345