ubuntu 21.10にgccをインストールする
OSバージョンを確認
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=21.10 DISTRIB_CODENAME=impish DISTRIB_DESCRIPTION="Ubuntu 21.10"
1.開発パッケージをインストール
# sudo apt install build-essential
2.gccのバージョンを確認
# gcc --version gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0 Copyright (C) 2021 Free Software Foundation, Inc.
3.動作確認
# vi test.c #include <stdio.h> int main() { printf("study c language"); return 0; }
ファイルをコンパイル
# gcc -o test test.c
# ./test
study c language