php 7 make时报错:make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

在安装php 7 时, make 哪一步出现如下报错;

virtual memory exhausted: Cannot allocate memory
make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1

这是因为系统的内存不足1G造成的,然后需要加上 --disable-fileinfo,然重新编译即可;

 ./configure --prefix=/usr/local/php-fpm --with-config-file-path=/usr/local/php-fpm/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --with-pear --with-curl --with-openssl  --disable-fileinfo

 

转载于:https://my.oschina.net/yuanhaohao/blog/3008503

你可能感兴趣的:(php 7 make时报错:make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1)