IT_man 發表於 2015-10-31 15:25:28

use yum to install C compiler C++ compiler

本帖最後由 IT_man 於 2015-10-31 15:49 編輯

假如使用 源碼安裝套件時需用到 ./configure 組套,but 一開始便出現以下錯誤而跳出:
checking for C compiler ... not found
./configure: error: C compiler gcc is not foundconfigure: error: You need a C++ compiler for C++ support.
原因是系統未安裝 C compiler && C++ compiler
Solution:
yum install gcc    (C compiler)
yum install gcc-c++    (C++ compiler)


搞定
頁: [1]
查看完整版本: use yum to install C compiler C++ compiler