• 締切済み

MySQLのコンパイル

MySQL-5.0.16をインストールし、下記のようにconfigureを実行したところ、「C compiler が見つからない」旨のメッセージが出て先へ進めません。 yum で gcc や cc のインストールを試みてもうまくいきません。 どなたか、良いアドバイスをお願いします。 OSはFedoraCore4の英語バージョンです。 [root@Linux mysql-5.0.16]# ./configure --prefix=/usr/local/mysql --with-charset=ujis --with-extra-charset=all ------------------------------------------------- checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking "character sets"... default: ujis, collation: ujis_japanese_ci; compiled in: ujis latin1 utf8 checking whether to compile national Unicode collations... yes checking whether build environment is sane... yes checking whether make sets $(MAKE)... (cached) yes checking for gawk... (cached) gawk checking for gcc... no checking for cc... no checking for cc... no checking for cl... no configure: error: no acceptable C compiler found in $PATH See `config.log' for more details. ----------------------------------------------------

みんなの回答

noname#39970
noname#39970
回答No.2

>続いてパスの設定の方法を その前に gcc がどこに入っているのかを確認しないとならないと思う 多分 /usr/bin か /usr/local/bin だと思うけど find /usr | grep gcc とやってgccがどこにあるか確認してみたらどうだろう。 実際にはgccという文字が含まれるファイルが色々出てくるとは思うけど。 パスの設定は 自分で探してね http://www.google.co.jp/search?q=FedoraCore%20path%20%E8%A8%AD%E5%AE%9A&hl=ja&lr=lang_ja

noname#39970
noname#39970
回答No.1

gcc --version で何も出ないならパスが設定されてないと思う。

kataken001
質問者

補足

SAYKAさん 早速のご解答有難うございます。 実行結果は下記の通りです。 続いてパスの設定の方法をお教えいただければ幸いです。 [root@linux /]#gcc --version -bash:gcc:command not found