1. 程式人生 > >【親測】<g++/gcc>CentOS下g++: command not found問題的解決(c++環境安裝)

【親測】<g++/gcc>CentOS下g++: command not found問題的解決(c++環境安裝)

fin define time version csdn cannot result clas 代碼

CentOS下g++: command not found問題的解決

2017年02月27日 18:09:06 閱讀數:5174 標簽: centosgcc 個人分類: 問題分析 版權聲明:本文章是作者辛勤書寫的成果,如需轉載,請與作者聯系,並保留作者信息以及原文鏈接,謝謝~~ https://blog.csdn.net/blueheart20/article/details/58173190

1. 問題的提出

在安裝extundelete的過程中,發現在configure過程中,出錯了,具體的錯誤信息如下:

  1. configure:2865: g++ --version >&5
  2. ./configure: line 2867: g++: command not found
  3. configure:2876: $? = 127
  4. configure:2865: g++ -v >&5
  5. ./configure: line 2867: g++: command not found
  6. configure:2876: $? = 127
  7. configure:2865: g++ -V >&5
  8. ./configure: line 2867: g++: command not found
  9. configure:2876: $? = 127
  10. configure:2865: g++ -qversion >&5
  11. ./configure: line 2867: g++: command not found
  12. configure:2876: $? = 127
  13. configure:2896: checking whether the C++ compiler works
  14. configure:2918: g++ conftest.cpp >&5
  15. ./configure: line 2920: g++: command not found
  16. configure:2922: $? = 127
  17. configure:2960: result: no
  18. configure: failed program was:
  19. | /* confdefs.h */
  20. | #define PACKAGE_NAME "extundelete"
  21. | #define PACKAGE_TARNAME "extundelete"
  22. | #define PACKAGE_VERSION "0.2.4"
  23. | #define PACKAGE_STRING "extundelete 0.2.4"
  24. | #define PACKAGE_BUGREPORT "extundelete.sourceforge.net"
  25. | #define PACKAGE_URL ""
  26. | #define PACKAGE "extundelete"
  27. | #define VERSION "0.2.4"
  28. | /* end confdefs.h. */
  29. |
  30. | int
  31. | main ()
  32. | {
  33. |
  34. | ;
  35. | return 0;
  36. | }
  37. configure:2965: error: in `/root/extundelete-0.2.4‘:
  38. configure:2967: error: C++ compiler cannot create executables
  39. See `config.log‘ for more details

經過分析,發現其中的關鍵錯誤信息是:

 g++: command not found
g++馬上就腦補為gc++的編譯器是不是沒有安裝呀? 估計是的,按圖索驥,安裝看看。

2. 安裝以及解決

由於本人使用的OS環境為centos, 其默認的包管理工具為yum, 故按照依賴包:

  1. yum -y update gcc
  2. yum -y install gcc+ gcc-c++
執行上述命令之後,可以返現gcc相關命令都按照成功了,故問題解決。

3. 總結分析

默認情況下,centos並未按照gcc相關的編譯命令,如果在安裝軟件之時,有時候需要從源代碼編譯開始,進行安裝;此時就需要gcc的命令支持。

【親測】<g++/gcc>CentOS下g++: command not found問題的解決(c++環境安裝)