红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

Debian关于stdio.h: no such file or directory的处理

发布时间:2008-07-28 00:05:32来源:红联作者:Jeicoe
今天下午在Debian尝试编译一个helloworld的程序,之前在centos和FreeBsd都编译通过的,但无奈在Debian还是发生了stdio.h: no such file or directory错误.

我的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的工具真多。
文章评论

共有 0 条评论