AlmaLinux9.0にgcc(GNU Compiler Collection) をインストールする手順
環境
OSバージョンの確認
# cat /etc/redhat-release
AlmaLinux release 9.0 (Emerald Puma)
gccのインストール手順
1.開発ツールパッケージをインストールします
# sudo dnf group install "Development Tools"
2.バージョンを確認します
# gcc --version gcc (GCC) 11.2.1 20220127 (Red Hat 11.2.1-9) 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.動作確認
# nano test.c
以下の内容を編集します
#include <stdio.h> int main() { printf ("Hello World study skill"); return 0; }
ファイルをコンパイルします
# gcc test.c -o test
コンパイルしたプログラムを実行します
./test
出力結果
Hello World study skill