我的helloword程序:
引用:#include
#include
int main(void)
{
printf(”helloword\n”);
return 0;
}
经查询后, 原来没有安装 libc6-dev 这个package, 这里面才包含了开发文件在,顺便检查了看看有没有mysql.h, 果然还是没有,继续google, 还是要安装libmysqlclient15-dev才会有mysql.h.
操作过程:
apt-get install libc6-dev
apt-get install libmysqlclient15-dev
另外原来可以查找文件在那个包里的,不过先安装apt-file.
apt-get install apt-file
apt-file update
apt-file search filename
发觉debian的工具真多。