c++ - HHVM - Installation error on Centos 7 -
i need install hhvm on linux server enable hacklang working. got error message during installation
c++: internal compiler error: killed (program cc1plus) please submit full bug report, preprocessed source if appropriate. see <http://bugzilla.redhat.com/bugzilla> instructions. make[2]: *** [third-party/proxygen/cmakefiles/hphp_proxygen.dir/lib/services/requestworker.cpp.o] error 4 make[2]: *** waiting unfinished jobs.... make[1]: *** [third-party/proxygen/cmakefiles/hphp_proxygen.dir/all] error 2 make: *** [all] error 2
please advice. thank you.
this error may due lack of memory, check how memory server have running command
free -h
if have not free space try add swap-space in server process adding swap space using swap file
sudo dd if=/dev/zero of=/swapfile bs=64m count=16 sudo mkswap /swapfile sudo swapon /swapfile
now start compile software
after compilation complete can delete swap file
sudo swapoff /swapfile sudo rm /swapfile
Comments
Post a Comment