Skip to content

Instantly share code, notes, and snippets.

@sushat4692
Created May 15, 2014 11:52
Show Gist options
  • Save sushat4692/257d918d40ce8973f7c2 to your computer and use it in GitHub Desktop.
Save sushat4692/257d918d40ce8973f7c2 to your computer and use it in GitHub Desktop.
Install HHVM to CentOS
$ wget http://www.hop5.in/yum/el6/hop5.repo
$ yum install hhvm
// libwarf が無いよって怒られる
$ yum install libdwarf --enablerepo=epel
$ yum install hhvm
$ hhvm
// liblcms2.so.2が無いよって怒られる
$ wget http://pkgrepo.linuxtech.net/el6/release/x86_64/liblcms2-2.4-1.el6.x86_64.rpm
$ yum install liblcms2-2.4-1.el6.x86_64.rpm
$ hhvm
// -> OK(メモリー不足エラーが出る)
@integrii
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment