使用 cc 会导致错误

  • 本文关键字:错误 cc 使用 gcc cc
  • 更新时间 :
  • 英文 :


我一直在使用命令cc来编译我编写的C程序。最近,我安装了 drush 并再次将其删除(现在,我正在使用站点本地 drush(。之后,当我尝试使用 cc 编译 C 程序时,我得到这个:

The program 'drush' is currently not installed. You can install it by typing:
sudo apt install drush

我试过了:

update-alternatives --config

但它说:

There is only one alternative in link group cc (providing /usr/bin/cc): /usr/bin/gcc
Nothing to configure.

这里有什么问题?

drush已将cc更新为alias cc='drush cache-clear'.我们需要映射cc以反映我们期望的价值。

Ubuntu 框显示cc/usr/bin/cc,这是指向/usr/bin/gcc的象征性链接,尽管/etc/alternatives/cc。因此,它应该是安全的别名cc来解决您的问题

alias cc=`which gcc`

相关内容

  • 没有找到相关文章

最新更新