Skip to content

FreeBSD Build

Daniel Dabek edited this page Nov 28, 2019 · 7 revisions

FreeBSD 11

There are 2 different ways of installing safex-rig on FreeBSD 11.

Thanks z3dm4n for these instructions.

1. Installation via the ports collection:

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

2. Using binary packages and building XMRig from source:

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

Additional CMake options

Clone this wiki locally