forked from xmrig/xmrig
-
Notifications
You must be signed in to change notification settings - Fork 4
FreeBSD Build
Daniel Dabek edited this page Nov 28, 2019
·
7 revisions
There are 2 different ways of installing safex-rig on FreeBSD 11.
Thanks z3dm4n for these instructions.
cd /usr/ports/net-p2p/safex-rig && make install clean
or
cd /usr/ports/ports-mgmt/portmaster && make install clean
portmaster net-p2p/safex-rig
Using Clang:
pkg install git clang38 cmake libuv libmicrohttpd
git clone https://github.com/safex/safex-rig.git
cd safex-rig
mkdir build
cd build
cmake ..
make
or
Using GCC:
pkg install git gcc7 cmake libuv libmicrohttpd
git clone https://github.com/safex/safex-rig.git
cd safex-rig
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=gcc7 -DCMAKE_CXX_COMPILER=g++7 ..
make
-
-DUV_LIBRARY=/usr/local/lib/libuv.a
Use static libuv version. -
-DMHD_LIBRARY=/usr/local/lib/libmicrohttpd.a
Use static libmicrohttpd version. - https://github.com/safex/safex-rig/wiki/Windows-Build#additional-cmake-options