facebook / hiphop-php
- Source
- Commits
- Network (72)
- Issues (69)
- Wiki (11)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Jun 15 17:45:20 -0700 2010 | |
| |
CMake/ | Sun Aug 08 19:25:57 -0700 2010 | |
| |
CMakeLists.txt | Thu Aug 05 12:16:52 -0700 2010 | |
| |
LICENSE.PHP | Fri Feb 19 18:02:34 -0800 2010 | |
| |
LICENSE.ZEND | Fri Feb 19 18:02:34 -0800 2010 | |
| |
Makefile | Sat May 22 12:02:24 -0700 2010 | |
| |
README.md | Mon Jun 28 14:24:31 -0700 2010 | |
| |
bin/ | Sun Aug 22 02:31:46 -0700 2010 | |
| |
configure | Mon Aug 02 22:31:23 -0700 2010 | |
| |
doc/ | Thu Sep 02 08:21:12 -0700 2010 | |
| |
local/ | Wed Feb 03 11:28:34 -0800 2010 | |
| |
phpt/ | Wed Feb 03 11:28:34 -0800 2010 | |
| |
src/ | Thu Sep 02 08:21:45 -0700 2010 |
HipHop for PHP
HipHop is a source code transformer which transforms PHP source code into highly optimized C++ and then compiles it using g++.
Required Packages
The latest information is available on the wiki
- cmake 2.6 is the minimum version
- g++/gcc 4.1 is the minimum version
- Boost 1.37 is the minimum version
- flex
- bison
- re2c
- libmysql
- libxml2
- libmcrypt
- libicu 4.2 is the minimum version
- openssl
- binutils
- libcap
- gd
- zlib
- tbb Intel's Thread Building Blocks
- Oniguruma
- libpcre
- libexpat
- libmemcached
The following packages have had slight modifications added to them. Patches are provided and should be made against the current source copies.
- libcurl
- src/third_party/libcurl.fb-changes.diff
- libevent 1.4
- src/third_party/libevent-1.4.13.fb-changes.diff OR src/third_party/libevent-1.4.14.fb-changes.diff
Installation
You may need to point CMake to the location of your custom libcurl and libevent, or to any other libraries which needed to be installed. The CMAKE_PREFIX_PATH variable is used to hint to the location.
export CMAKE_PREFIX_PATH=/home/user
To build HipHop, use the following:
cd /home/user/dev
git clone git://github.com/facebook/hiphop-php.git
cd hiphop-php
git submodule init
git submodule update
export HPHP_HOME=`pwd`
export HPHP_LIB=`pwd`/bin
cmake .
Once this is done you can generate the build file. This will return you to the shell. Finally, to build, run make. If any errors occur, it may be required to remove the CMakeCache.txt directory in the checkout.
make
Running HipHop
Please see the wiki page