当前位置: 技术问答>linux和unix
Linux 下的关于 Mysql 的编程问题?
来源: 互联网 发布时间:2015-11-10
本文导语: 我得系统是debian(该机做服务器有一年多了,mysql早就装好了) 在系统下编译一个很小的程序例如:test.c #include int main() { printf("123456n"); return 1; } ~/src$ gcc -o test test.c 出现如下错误(说mysql/mysql.h找不到) test....
我得系统是debian(该机做服务器有一年多了,mysql早就装好了)
在系统下编译一个很小的程序例如:test.c
#include
int main()
{
printf("123456n");
return 1;
}
~/src$ gcc -o test test.c
出现如下错误(说mysql/mysql.h找不到)
test.c:1:25: error: mysql/mysql.h: No such file or directory
test.c: In function 'main':
test.c:6: warning: incompatible implicit declaration of built-in function 'printf'
test.c:8:2: warning: no newline at end of file
请问该如何解决?
在系统下编译一个很小的程序例如:test.c
#include
int main()
{
printf("123456n");
return 1;
}
~/src$ gcc -o test test.c
出现如下错误(说mysql/mysql.h找不到)
test.c:1:25: error: mysql/mysql.h: No such file or directory
test.c: In function 'main':
test.c:6: warning: incompatible implicit declaration of built-in function 'printf'
test.c:8:2: warning: no newline at end of file
请问该如何解决?
|
检查一下是否安装了mysql的开发包。
|
$ gcc -o test test.c -I xxx(mysql_path)