環境:centos 5.10 安裝系統時,沒有選擇軟件依賴包,不少軟件都沒有安裝。c++
如今須要安裝軟件,安裝軟件時報錯:centos
make: *** 沒有指明目標而且找不到 makefile。 中止。ide
緣由是由於沒有執行./configureui
接下來執行 ./configure 報錯:this
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 for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables
See `config.log' for more details..net
緣由是缺乏c++編譯器,也能夠查看日誌獲得一些信息,日誌
安裝c++編譯器,blog
yum install gcc-c++ 注意(有些是yum install g++ 可是5.10 的系統版本必定要用gcc-c++)get
這裏要注意,安裝過程當中有一個Is this ok [y/N]: 這裏必定要輸入一個y 不然會出錯:編譯器
Is this ok [y/N]: Exiting on user Command
Complete! 雖然完成了,可是尚未安裝成功,再執行 ./configure 仍是報錯。
安裝完後,就能夠了。
參考連接
:http://blog.163.com/haizhifeng6@126/blog/static/45615427201182712221960/