csminer/README.md
ofen 7840f8cbf6
README.md with build process for linux/osx, go.mod (#11)
* README.md with build process for linux/osx added, go.mod added

* initialization error logging
2022-05-08 08:14:01 -07:00

698 B

Build

Make sure you hava go, cmake and make installed.

Linux

git clone https://github.com/cryptonote-social/RandomX.git && \
git clone https://github.com/cryptonote-social/csminer.git && \
mkdir -p RandomX/build && cd RandomX/build/ && \
cmake .. && make && \
cd ../rxlib && ./make.sh && \
cd ../../csminer/ && \
go build linux/csminer.go && ./csminer

OSX

git clone https://github.com/cryptonote-social/RandomX.git && \
git clone https://github.com/cryptonote-social/csminer.git && \
mkdir -p RandomX/build && cd RandomX/build/ && \
cmake .. && make && \
cd ../rxlib && ./make.sh && \
cd ../../csminer/ && \
go build osx/csminer.go && ./csminer

Windows

...