Created
February 9, 2014 11:54
-
-
Save amacgregor/8898050 to your computer and use it in GitHub Desktop.
HVVM Installation Instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir dev | |
cd dev | |
export CMAKE_PREFIX_PATH=`pwd` | |
git clone git://github.com/facebook/hhvm.git | |
cd hhvm | |
git submodule init | |
cd ../ | |
## Required for builtin web-server support | |
git clone git://github.com/libevent/libevent.git | |
cd libevent | |
git checkout release-1.4.14b-stable | |
cat ../hhvm/hphp/third_party/libevent-1.4.14.fb-changes.diff | patch -p1 | |
./autogen.sh | |
./configure --prefix=$CMAKE_PREFIX_PATH | |
make | |
make install | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment