我试图在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"
型
有人知道我错过了什么吗?
1条答案
按热度按时间798qvoo81#
您可以尝试重新安装build-essential软件包(如果有一些丢失的文件):
第一个月
或者尝试重新安装GCC:
sudo apt install --reinstall gcc
个