当用VS Code(Ubuntu)编写C代码时,无法将此奇怪的消息从我的终端中删除

tjjdgumg  于 11个月前  发布在  其他
关注(0)|答案(1)|浏览(119)

我试图在Ubuntu上使用VS Code用C编写代码。我下载了C/C++扩展和CodeRunner,但我得到了以下错误:

gcc: fatal error: stdio.h: No such file or directory

字符串
然后我运行了这个命令:

sudo apt-get install libc6-dev


代码现在看起来运行得很好,但我每次仍然会收到这个奇怪的消息:

[1] + Done                       "/usr/bin/gdb" --interpreter=mi --tty=${DbgTerm} 0<"/tmp/Microsoft-MIEngine-In-ufmjt3ry.1qc" 1>"/tmp/Microsoft-MIEngine-Out-occoya1a.mmu"


有人知道我错过了什么吗?

798qvoo8

798qvoo81#

您可以尝试重新安装build-essential软件包(如果有一些丢失的文件):
第一个月
或者尝试重新安装GCC:
sudo apt install --reinstall gcc

相关问题