Skip to content
dev-jbam edited this page Jun 5, 2018 · 2 revisions

Ubuntu 16.04 Xenial Xerus

sudo apt-get install git build-essential cmake libuv1-dev libmicrohttpd-dev
git clone https://github.com/Team-Hycon/xmrig-amd.git
cd xmrig-amd
mkdir build
cd build
cmake .. -DCMAKE_C_COMPILER=gcc-5 -DCMAKE_CXX_COMPILER=g++-5
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/lib/x86_64-linux-gnu/libuv.a Use static libuv version.
Clone this wiki locally