gcc 编译 c++ 程序时出错

gcc 编译 c++ 程序时出错

当我尝试用编译 C++ 程序时gcc,它出现以下错误:

gcc: error trying to exec 'cc1plus': execvp: No such file or directory
error: command 'gcc' failed with exit status 1

答案1

您的机器上缺少g++软件包。通过以下方式安装:

sudo apt-get install g++

参考

相关内容