Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. No Format
    cmake .
    make
    
    * If cmake fails, run the following to empty the cache before trying again:
    No Format
    rm CMakeCache.txt
    
  2. Test HipHop.
    1. From the shell:
      No Format
      cd ..
      echo "Hello, world." > test.php
      hiphop-php/src/hphp/hphp test.php --keep-tempdir=1 --log=3 --output-dir=$HIPHOP/test-build
      test-build/program -m server -p 8080
      
    2. From a browser or other HTTP client, visit http://localhost:8080/test.php
    3. Output should loan modification consist of "Hello, world."
    4. From the shell, press Ctrl-C.

...