Skip to content

Commit

Permalink
update README for v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Oct 31, 2014
1 parent ccccf3b commit 756db9e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
6 changes: 3 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Version multi 1.0.5 (Tanguy Pruvot)

- Merge remaining v2.4 cpu-miner changes
- Add colored output option (--color)
- Add --cputest parameter (debug)
- Add colored output (diable with --no-color)
- Test and fix blake on NEOS, needs 14 rounds (was 8)
- Add pentablake (5x blake256) (from bitbandi)
- Add neoscrypt
- Windows (VC++ 2013 build support)
- Windows (VC++ 2013 and MinGW64 build support)
- Enhance --version informations (compiler + lib versions)

Version multi 1.0.4 (Tanguy Pruvot)

Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Algorithms
*__x15__ (RadianceCoin [RCE])
*__cryptonight__ (Bytecoin [BCN], Monero)
*__fresh__ (FreshCoin)
*__blake__ (Neos blake256)
*__blake__ (Neos/Saffron Blake-256)
*__neoscrypt__ (Feathercoin)
*__pentablake__ (Joincoin)

Expand All @@ -47,13 +47,16 @@ Algorithms

Dependencies
============
* libcurl http://curl.haxx.se/libcurl/
* jansson http://www.digip.org/jansson/ (jansson is included in-tree)
* openssl https://www.openssl.org/
* libcurl http://curl.haxx.se/libcurl/
* jansson http://www.digip.org/jansson/ (jansson is included in-tree)
* openssl https://www.openssl.org/
* pthreads
* zlib (for curl/ssl)

Download
========
* Binary releases: https://github.com/LucasJones/cpuminer-multi/releases
* Binary releases: https://github.com/LucasJones/cpuminer-multi/releases
* Windows releases: https://github.com/tpruvot/cpuminer-multi/releases
* Git tree: https://github.com/LucasJones/cpuminer-multi
* Clone with `git clone https://github.com/LucasJones/cpuminer-multi`

Expand All @@ -73,7 +76,7 @@ Build

#### Basic Windows build with Visual Studio 2013
* All the required .lib files are now included in tree (windows only)
* AVX enabled by default, but not AVX2 (edit cpu-miner-config.h if required)
* AVX enabled by default for x64 platform (AVX2 and XOP could also be used)

#### Basic Windows build instructions, using MinGW:
* Install MinGW and the MSYS Developer Tool Kit (http://www.mingw.org/)
Expand All @@ -84,7 +87,8 @@ Build
* Make sure you have curl-config in MinGW\bin
* Install openssl devel (https://www.openssl.org/related/binaries.html)
* In the MSYS shell, run:
* ./autogen.sh # only needed if building from git repo
* for 64bit, you can use ./mingw64.sh else :
./autogen.sh # only needed if building from git repo
* LIBCURL="-lcurldll" ./configure CFLAGS="*-march=native*"
* # Use -march=native if building for a single machine
* make
Expand Down
2 changes: 1 addition & 1 deletion cpu-miner.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ static void share_result(int result, struct work *work, const char *reason)
accepted_count, accepted_count + rejected_count,
100. * accepted_count / (accepted_count + rejected_count), s,
use_colors ?
(result ? CL_GRN "(yay!!!)" : CL_RED "(booooo)")
(result ? CL_GRN "yay!!!" : CL_RED "booooo")
: (result ? "(yay!!!)" : "(booooo)"));
break;
}
Expand Down

0 comments on commit 756db9e

Please sign in to comment.