forked from xmrig/xmrig
-
Notifications
You must be signed in to change notification settings - Fork 3
Home
FSOL-XDAG edited this page Apr 8, 2023
·
21 revisions
x4x is a XMRIG's fork incorporating randomX algorithm variant for mining XDAG, based on the Swordlet project using XMRig 6.18.0. It's specially designed to improve XDAG mining :
- the fees have been set to zero for improving mining and to avoid disconnections to XDAG mining pools,
- algorithms other than RandomX have been removed at compilation (CryptoNight, Argon2, KawPow and GhostRider),
- CUDA and OpenCL support have been removed at compilation too (GPUs are useless to mine XDAG).
pacman -Suy
pacman -S mingw-w64-x86_64-gcc git make
git clone https://github.com/FSOL-XDAG/xmrig-4-xdag.git
<need download prebuild lib for windows>
mkdir xmrig-4-xdag/build && cd xmrig-4-xdag/build
"c:\Program Files\CMake\bin\cmake.exe" .. -G "Unix Makefiles" -DXMRIG_DEPS=c:/xmrig-deps/gcc/x64
make -j$(nproc)
Detailed instructions in this Medium article.
sudo apt-get install git build-essential cmake automake libtool autoconf
cd
git clone https://github.com/FSOL-XDAG/xmrig-4-xdag.git
mkdir xmrig-4-xdag/build && cd xmrig-4-xdag/scripts
./build_deps.sh && cd ../build
cmake .. -DXMRIG_DEPS=scripts/deps
make -j$(nproc)
Detailed instructions in this Medium article.
sudo apt-get install git build-essential cmake automake libtool autoconf
cd tmp
git clone https://github.com/FSOL-XDAG/xmrig-4-xdag.git
mkdir xmrig-4-xdag/build && cd xmrig-4-xdag/scripts
./build_deps.sh && cd ../build
cmake .. -DXMRIG_DEPS=scripts/deps
make -j$(nproc)
Detailed instructions in this Medium article.
pkg install git cmake automake libtool autoconf wget
git clone https://github.com/FSOL-XDAG/xmrig-4-xdag.git
mkdir xmrig-4-xdag/build && cd xmrig-4-xdag/scripts
sh build.uv.sh && sh build.hwloc1.sh && sh build.openssl.sh && cd ../build
cmake .. -DXMRIG_DEPS=scripts/deps -DBUILD_STATIC=ON
make -j$(sysctl -n hw.ncpu)
cd
mkdir github && cd github
git clone https://github.com/FSOL-XDAG/xmrig-4-xdag.git
mkdir xmrig-4-xdag/build && cd xmrig-4-xdag/scripts
./build_deps.sh && cd ../build
cmake .. -DCMAKE_PREFIX_PATH=$(pwd)/../scripts/deps
make -j$(sysctl -n hw.logicalcpu)
Detailed instructions in this Medium article.