On Sat, Oct 22, 2016 at 6:57 AM, Hiep Pham <hieppso194(a)gmail.com> wrote:
Hi sir
I try installing HyperScan in ubuntu14.04 but i encountered with this
problem:
Boost 1.57.0 or later not found. Either install system packages if
available, extract Boost headers to /home/hieppso194/hyperscan/include, or
set the CMake BOOST_ROOT variable.
Can you hep me to fix it?. I note that i install successfully hyperscan on
ubuntu 16.04 but can't in 14.04
Best regrads,
Hiep
Hyperscan needs boost 1.57 or later. Ubuntu 16 satisfies this
requirement, but Ubuntu 14 does not, because it's boost version is
older. To use Hyperscan on systems with older boost you should put
boost headers from new boost to include/ subdirectory of hyperscan/
directory.
I do it with the following commands (run from hyperscan source directory):
wget
'http://downloads.sourceforge.net/project/boost/boost/1.60.0/boost_1_60_0.tar.bz2'
echo '686affff989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b
boost_1_60_0.tar.bz2' | sha256sum -c -
tar -xf boost_1_60_0.tar.bz2
ln -s ../boost_1_60_0/boost include/
After I have the following file: hyperscan/include/boost/config.hpp
--
Best regards,
Boris Nagaev