-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# MicroCoin Miner | ||
|
||
Use this program to mine MicroCoins | ||
|
||
## How to build | ||
|
||
1. Clone from github | ||
``` | ||
git clone https://github.com/MicroCoinHU/MicroCoinMiner.git | ||
``` | ||
2. Build with lazarus | ||
``` | ||
cd MicroCoinMiner | ||
lazbuild MicroCoinMiner.lpi | ||
``` | ||
3. Copy [microcoinsha.cl](src/microcoinsha.cl) to output folder | ||
4. Copy libeay32.dll to output folder | ||
5. Run | ||
``` | ||
MicroCoinMiner | ||
``` | ||
|
||
## Command line parameters: | ||
``` | ||
-s wallet/pool server:port, leave empty to default | ||
-n your pool username, optional | ||
-c CPU core count for CPU mining | ||
-d X GPU device for GPU mining | ||
-p X GPU platform for GPU mining | ||
``` | ||
|
||
Example for cpu mining (with 4 cores): | ||
``` | ||
MicroCoinMiner -s -n -c 4 | ||
``` | ||
|
||
Example for GPU mining: | ||
``` | ||
MicroCoinMiner -p 0 -d -s -n | ||
``` |