diff --git a/CHANGELOG.md b/CHANGELOG.md index 2efa41000..4114206c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,8 @@ +# v0.6.0 +- Added automatic cryptonight self test. +- Added support for software AES `--av=4`. Will be automatically selected if cpu not support AES-NI. +- Added 32 bit builds. +- Documented [algorithm variations](https://github.com/xmrig/xmrig#algorithm-variations). + # v0.5.0 -- Initial public release. \ No newline at end of file +- Initial public release. diff --git a/README.md b/README.md index 487bc8dcf..bd151c57e 100644 --- a/README.md +++ b/README.md @@ -76,9 +76,18 @@ make ### Windows It's complicated, you need [MSYS2](http://www.msys2.org/), custom libcurl build, and of course CMake too. + +Necessary MSYS2 packages: +``` +pacman -Sy +pacman -S mingw-w64-x86_64-gcc +pacman -S make +pacman -S mingw-w64-x86_64-cmake +pacman -S mingw-w64-x86_64-pkg-config +``` Configure options for libcurl: ``` -./configure --disable-shared --enable-optimize --enable-threaded-resolver --disable-libcurl-option --disable-ares --disable-rt --disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual --disable-ipv6 --disable-sspi --disable-crypto-auth --disable-ntlm-wb --disable-tls-srp --disable-unix-sockets --without-zlib --without-winssl --without-ssl --without-libssh2 --without-nghttp2 --disable-cookies --without-ca-bundle +./configure --disable-shared --enable-optimize --enable-threaded-resolver --disable-libcurl-option --disable-ares --disable-rt --disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual --disable-ipv6 --disable-sspi --disable-crypto-auth --disable-ntlm-wb --disable-tls-srp --disable-unix-sockets --without-zlib --without-winssl --without-ssl --without-libssh2 --without-nghttp2 --disable-cookies --without-ca-bundle --without-librtmp ``` CMake options: ```