在CentOS7下编译PHP7出现configure: error: off_t undefined; check your library configuration错误

解决办法:

1、打开ld.so.conf文件 。
# vi  /etc/ld.so.conf

2、在文件末尾添加以下内容:

/usr/local/lib64

/usr/local/lib

/usr/lib

/usr/lib64

3、保存文件。

4、执行命令,使文件更新生效。

# ldconfig -v

你可能感兴趣的:(在CentOS7下编译PHP7出现configure: error: off_t undefined; check your library configuration错误)