I have done it before, but now i have a new issue: i followed these steps to install libboost
Code: Select all
sudo apt remove --purge --auto-remove libboost-dev libboost-thread-dev libboost-system-dev libboost-atomic-dev libboost-regex-dev libboost-chrono-dev
mkdir boost
cd boost
wget https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.gz
tar xfz boost_1_72_0.tar.gz
cd boost_1_72_0/
./bootstrap.sh
./b2 stage threading=multi link=static --with-thread --with-system
sudo ./b2 install threading=multi link=static --with-thread --with-system
cd ../../
sudo rm -Rf boost/
but when tried to compile domoticz using these steps
Code: Select all
git clone https://github.com/domoticz/domoticz.git dev-domoticz
cd dev-domoticz
git pull
cmake -DCMAKE_BUILD_TYPE=Release CMakeLists.txt
make
Code: Select all
-- ###########################
-- Compiling Revision #11944
-- ###########################
-- Using builtin Mosquitto library
-- Python3 includes found at: /usr/include/python3.7m
-- Building with I2C support
-- Building with SPI support
-- OPENSSL_LIBRARIES: /usr/lib/arm-linux-gnueabihf/libssl.a;-lpthread;dl;/usr/lib/arm-linux-gnueabihf/libcrypto.a
-- Linking against boost static libraries
CMake Error at CMakeLists.txt:589 (message):
Found libBoost version 1.71.0, 106000 or newer required
-- Configuring incomplete, errors occurred!
See also "/c/prive/dev_domoticz/CMakeFiles/CMakeOutput.log".
See also "/c/prive/dev_domoticz/CMakeFiles/CMakeError.log".