ubuntu安装了mysql 但是编译报错 mysql.h: No such file or directory

Posted 林泽归来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu安装了mysql 但是编译报错 mysql.h: No such file or directory相关的知识,希望对你有一定的参考价值。

在Ubuntu体系中,已经安装了mysql,即应用sudo apt-get install mysql-server mysql-client

但是用C编译mysql数据库时,报错
fatal error: mysql.h: No such file or directory
出现这个错误是因为体系没有安装mysql开发库 

执行下面指令安装
sudo apt-get install libmysql++-dev
编译时须要加连接-lmysqlclient.

编译源法度的时辰,如下号令:

gcc -I/usr/include/mysql *.c -L/usr/lib/mysql -lmysqlclient -o *











以上是关于ubuntu安装了mysql 但是编译报错 mysql.h: No such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

PHP编译安装报错:configure: error: mcrypt.h not found. Please reinstall libmcrypt

ubuntu下python2.7链接mysql

PHP在ubuntu中编译安装

centos 6.0安装php-5.2.17报错: 前提是mysql已经安装,已经成功启动OK

Ubuntu20 WSL 安装Redis 报错Connection refused

长久不用的mysql报错ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mys