-
Notifications
You must be signed in to change notification settings - Fork 1
CentOS Build
TheLemont edited this page Oct 31, 2018
·
1 revision
dependencies
sudo yum update
sudo yum install git gcc gcc-c++ make cmake libmicrohttpd-devel autoconf automake libtool libstdc++-static openssl-devel libcurl
install libuv
git clone https://github.com/libuv/libuv.git
cd libuv
./autogen.sh
./configure
make
sudo make install
install poprig
git clone https://github.com/PopchainOrg/poprig.git
cd poprig
mkdir build && cd build
cmake ..
make
Additional CMake options
- -DWITH_LIBCPUID=OFF Disable libcpuid. Auto configuration of CPU after this will be very limited.
- -DWITH_HTTPD=ON Build with built in http server and API.