From 756db9e34ccefa256b7954efea50215d3755ba50 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 31 Oct 2014 04:57:37 +0100 Subject: [PATCH] update README for v1.0.5 --- NEWS | 6 +++--- README.md | 18 +++++++++++------- cpu-miner.c | 2 +- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/NEWS b/NEWS index adbe89863..2e0242063 100644 --- a/NEWS +++ b/NEWS @@ -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) diff --git a/README.md b/README.md index 386828ddf..009458ba2 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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` @@ -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/) @@ -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 diff --git a/cpu-miner.c b/cpu-miner.c index 66dc7b622..5144cb2ce 100644 --- a/cpu-miner.c +++ b/cpu-miner.c @@ -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; }