MacOS - miner tutorial

Install from Source

#install_guide
# Make sure you have homebrew installed (if you do, skip this step):
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# Make sure to install all required dependencies
brew install gmp make cmake openssl

# Get the latest source code (or run a git pull to update)
git clone https://github.com/OrdinaryDude/xel_miner

# Make sure to link the OpenSSL include directory to the right place
ln -s /usr/local/opt/openssl/include/openssl/ /usr/local/include/openssl

# Compile the miner
cd xel_miner
OPENSSL_ROOT_DIR=/usr/local/opt/openssl cmake .
make

You can test if it’s functioning properly by running:

#run
xel_miner --test-vm examples/SHA256_BTC.epl

Video tutorial

Linux - miner tutorial

Last updated