在编译安装PHP的时候,进行 make 时出现了编译错误:
In file included from /home/data/php-7.1.8/ext/zip/lib/zip_add.c:36:0: /home/data/php-7.1.8/ext/zip/lib/zipint.h:126:2: error: #error unsupported size of off_t #error unsupported size of off_t ^ make: *** [ext/zip/lib/zip_add.lo] Error 1
参考:https://bugs.php.net/bug.php?id=68302
执行命令:
export CFLAGS="-L/opt/xml2/lib"
然后清除上一次编译的错误:
make clean
重新 configure 和 make 。