码迷,mamicode.com
首页 > 数据库 > 详细

在安装mysqli的时候,出现error: ext/mysqlnd/mysql_float_to_double.h: No such file or directory

时间:2018-04-04 18:11:03      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:api   log   文件的   direct   directory   block   dir   gpo   float   

/application/php5.5.28/include/php/main/../main/php_config.h:2113:1: warning: this is the location of the previous definition/home/neo/tools/php-5.5.28/ext/mysqli/mysqli_api.c:36:47: error: ext/mysqlnd/mysql_float_to_double.h: No such file or directorymake: *** [mysqli_api.lo] Error 1
我的解决方法:
直接修改源码,把找不到的那个头文件的路径修改为绝对路径,编译通过了,也能正常使用

# pwd
/home/neo/tools/php-5.5.28/ext/mysqli
# vim mysqli_api.c

把第36行的

#include “ext/mysqlnd/mysql_float_to_double.h”
修改为
#include “/home/neo/tools/php-5.5.28/ext/mysqlnd/mysql_float_to_double.h”

在安装mysqli的时候,出现error: ext/mysqlnd/mysql_float_to_double.h: No such file or directory

标签:api   log   文件的   direct   directory   block   dir   gpo   float   

原文地址:https://www.cnblogs.com/linuxde/p/8718181.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!