Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Created February 9, 2014 11:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amacgregor/8898050 to your computer and use it in GitHub Desktop.
Save amacgregor/8898050 to your computer and use it in GitHub Desktop.
HVVM Installation Instructions
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