-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Prebuilt Packages on Mint 16
mvriel edited this page Oct 4, 2014
·
9 revisions
To install prebuilt packages for Linux Mint 16 (amd64):
wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add -
echo deb http://dl.hhvm.com/mint petra main | sudo tee /etc/apt/sources.list.d/hhvm.list
sudo apt-get update
sudo apt-get install hhvm# If you are getting segfaults
sudo apt-get install hhvm-dbg
# Living on the edge (rebuilt everyday, unstable)
sudo apt-get install hhvm-nightly
# Segfaults in the nightly
sudo apt-get install hhvm-nightly-dbgIf this repo is slow for you, choose a different Mirror.
If you get the following error when trying to run hhvm:
hhvm: error while loading shared libraries: libboost_program_options.so.1.49.0: cannot open shared object file: No such file or directoryyou may be able to fix it by simply installing the required packages (hhvm package incorrectly installs libboost 1.53):
sudo apt-get install libboost-filesystem1.49.0 libboost-program-options1.49.0 libboost-regex1.49.0 libboost-thread1.49.0