真的需要帮助。当我尝试使用cc编译时,它会显示
-bash: /usr/bin/cc: No such file or directory
但是所有必需的文件cc,gcc,c ++都存在于/ usr / bin目录中。我试图安装gcc-multilib包,之后我收到了这个错误。
需要尽快修复它,因为它运行一些重要的程序。
我做的时候:update-alternatives --list cc
,显示/usr/bin/gcc
。然后我尝试了update-alternatives --set cc /usr/bin/gcc
,它给了
update-alternatives: warning: forcing reinstallation of alternative /usr/bin/gcc because link group cc is broken. update-alternatives: warning: not replacing /usr/bin/cc with a link.
答案 0 :(得分:2)
/ usr / bin / cc应该是Ubuntu上的符号链接。
使用update-alternatives --list cc
检查其目的地是否有效。
update-alternatives --set cc /usr/bin/gcc
(作为root,sudo应该可以)修复它。