You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
476 B
19 lines
476 B
8 years ago
|
Run with your gostcoin wallet app
|
||
5 years ago
|
```bash
|
||
8 years ago
|
./minerd -a gostd -t <number of cores> -o http://127.0.0.1:9376 -u <your RPC user> -p <you RPC password>
|
||
5 years ago
|
```
|
||
|
|
||
3 years ago
|
Building on most linux distributions. Install libcurl and libjansson development packages first!
|
||
|
```bash
|
||
|
./autogen.sh
|
||
|
LIBCURL="-lcurl" ./configure CFLAGS="-O3"
|
||
|
make
|
||
|
```
|
||
|
|
||
5 years ago
|
Building on Windows is possible with MSYS2.
|
||
|
```bash
|
||
|
./autogen.sh
|
||
|
./configure CFLAGS="-O3 -DCURL_STATICLIB" --with-libcurl=compat/curl-win-x86_64
|
||
|
make
|
||
3 years ago
|
```
|