csminer Monero miner from https://cryptonote.social/
Go to file
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
blockchain moved file not required by client to the server repo 2021-01-04 14:53:16 -08:00
capi properly check for minerlib initialization failure 2021-07-23 17:06:05 -07:00
crylog initial checkin 2020-06-19 15:21:08 -07:00
linux README.md with build process for linux/osx, go.mod (#11) 2022-05-08 08:14:01 -07:00
minerlib fix potential null pointer dereference in login due to malformed response 2021-06-23 18:23:20 -07:00
osx properly check for minerlib initialization failure 2021-07-23 17:06:05 -07:00
rx changes for using rxlib in randomx repo instead of standalone, plus tweak to stop mining when connection to server is lost 2021-03-14 10:50:29 -07:00
stratum/client fix potential null pointer dereference in login due to malformed response 2021-06-23 18:23:20 -07:00
win win 0.3.3 version string bump 2021-06-27 13:06:56 -07:00
.gitignore initial checkin 2020-06-19 15:21:08 -07:00
csminer.go fix potential null pointer dereference in login due to malformed response 2021-06-23 18:23:20 -07:00
go.mod README.md with build process for linux/osx, go.mod (#11) 2022-05-08 08:14:01 -07:00
go.sum README.md with build process for linux/osx, go.mod (#11) 2022-05-08 08:14:01 -07:00
LICENSE initial checkin 2020-06-19 15:21:08 -07:00
miner.go README.md with build process for linux/osx, go.mod (#11) 2022-05-08 08:14:01 -07:00
README.md README.md with build process for linux/osx, go.mod (#11) 2022-05-08 08:14:01 -07:00

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

...