CentOS8 GCC (GNU Compiler Collection) をインストールする方法
環境
# cat /etc/redhat-release
CentOS Stream release 8
操作方法
1.開発ツールパッケージをインストールします。
# sudo dnf group install "Development Tools"
2.gccのマニュアルをインストールします
# sudo dnf install man-pages
3.バージョンを確認します。
# gcc --version gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-17) Copyright (C) 2018 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.
4.動作確認
# nano hello.c
以下のコードを記述します
#include <stdio.h> int main() { printf ("Hello World arkgame"); return 0; }
ファイルをコンパイルして実行します
# gcc hello.c -o hello # ./hello Hello World arkgame