我一直在使用命令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`