LinuxにCコンパイラをインストールする方法は?

LinuxにCコンパイラをインストールする方法は?

Linuxにコンパイラをインストールする必要があります。まず、いくつかのシステム情報:

-bash-3.2$ uname -a
Linux axentraserver.xxxxxxxx.xxxxxxxxxxxxx.com 2.6.31.8 #97 Thu Sep 12 10:38:00 EDT 2013 armv5tel armv5tel armv5tel GNU/Linux

このLinuxバージョンはNASでホストされています。

問題は、パッケージマネージャがインストールされていないことです。

bash-3.2# ./configure --prefix=/usr
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking whether make supports nested variables... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/administrator/Test/m4-1.4.17':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details

次のパッケージに必要なGNU m4をインストールしようとしています。何もyumapt-getも。

それでは、Cコンパイラを手動でインストールする方法は?

ベストアンサー1

Medionルーターですか、それともNASですか?

私の考えの最善の方法は(誰も直接解凍+使用するためにC / C ++コンパイラをパッケージしていない場合)、Linuxシステム全体でプログラムをクロスコンパイルし、結果のバイナリをシステムにコピーすることです。

たぶん、crossgcとcrosstool-ngを使ってプログラムをコンパイルすることができます。

おすすめ記事