Post
Topic
Board Announcements (Altcoins)
Merits 1 from 1 user
Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC)
by
matrix-pool
on 14/12/2019, 08:14:59 UTC
⭐ Merited by YentenCommunity (1)
How to compile IOTS on ubuntu 16.04

clone IOTS from git
Code:
git clone https://github.com/iotscoin/iots.git
enter in iots folder

dependency installation
Code:
sudo apt-get install curl build-essential libtool autotools-dev automake pkg-config python3 bsdmainutils cmake
sudo apt-get install libgmp3-dev
sudo apt-get install libzmq3-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev

-----------------------------

if error - ./bls/bls.h:14:27: fatal error: chiabls/bls.hpp: No such file or directory
Download: https://github.com/codablock/bls-signatures/archive/v20181101.zip
Code:
wget https://github.com/codablock/bls-signatures/archive/v20181101.zip
unzip v20181101.zip
cd bls-signatures-20181101

unzip and ...
Code:
git submodule update --init --recursive
mkdir build
cd build
cmake ../
cmake --build . -- -j 4
sudo make install


in IOTS folder
Code:
./autogen.sh
CXXFLAGS=-O3 ./configure --without-gui --disable-tests
make -j 4


conf file (iots.conf)
Code:
server=1
daemon=1
gen=0
rpcuser=user
rpcpassword=your_password
rpcallowip=your_network/your_mask
rpcallowip=127.0.0.1