Skip to content
Niall Moore edited this page May 2, 2018 · 2 revisions

OS X

You need Xcode and Homebrew installed.

brew install cmake libuv libmicrohttpd
git clone https://github.com/Team-Hycon/xmrig.git
cd cpu-miner
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_AEON=OFF Disable CryptoNight-Lite support.
  • -DWITH_HTTPD=OFF Build without built in http server and API.
  • -DUV_LIBRARY=/usr/local/opt/libuv/lib/libuv.a Use static libuv version.
  • -DMHD_LIBRARY=/usr/local/opt/libmicrohttpd/lib/libmicrohttpd.a Use static libmicrohttpd version.
Clone this wiki locally