一、问题描述
Kylin-Desktop-V10-SP1-HWE-Release-2303-X86_64系统,,gcc编译c程序报错:fatal error: stdio.h: 没有那个文件或目录,如下:
ms@ms-pc:~/work/program/test$ gcc test.c
test.c:1:10: fatal error: stdio.h: 没有那个文件或目录1 | #include <stdio.h>| ^~~~~~~~~
compilation terminated.
ms@ms-pc:~/work/program/test$
二、问题分析
缺少标准的头文件,需安装build-essential。
三、解决方案
安装build-essential
sudo apt-get install build-essential -y