maybe someone will be need this information... how to build miner for mmcpool.com on windows (32-bit)...
1. Install MinGW and the MSYS Developer Tool Kit (
http://www.mingw.org/)
Choose msys-base, myngw32-base,myngw32-gcc-g++ then apply changes
(check if set path in windows env. c:/mingw/bin)
2.Install libcurl
download curl-7.30.0.tar.gz from
http://curl.haxx.se/download.html and put it in C:\deps\
in MSYS shell
cd /c/deps
tar -xvzf curl-7.30.0.tar.gz
cd curl-7.30.0
./configure –prefix=/c/mingw
make
make install
copy c:\deps\curl-7.30.0\docs\libcurl\libcurl.m4 c:\mingw\share\aclocal
copy c:\deps\curl-7.30.0\curl-config c:\mingw\bin
3.Install opensll
download OpenSSL:
http://www.openssl.org/source/openssl-1.0.1e.tar.gz and put it in C:\deps\
in MSYS shell
cd /c/deps
tar xvzf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./Configure --prefix=/c/mingw shared mingw
make
make install
4.Compile miner.
download source
https://github.com/glitchman/mmcminerextract in c:/deps
create folde m4 ... copy c:\deps\curl-7.30.0\docs\libcurl\libcurl.m4 c:\deps\mmcminer\m4
edit autogen.sh
change
aclocal
to
aclocal -I m4
edit makefile.am
add
ACLOCAL_AMFLAGS = -I m4
change
minerd_LDADD = @LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@
to
minerd_LDADD = @LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ -lssl -lcrypto
In the MSYS shell, navigate to the CPUminer source code directory
./autogen.sh
./configure CFLAGS="-O3 -msse2"
make
strip minerd.exe
copy minerd.exe, C:\MinGW\bin\libcurl-4.dll, and C:\MinGW\bin\pthreadGC2.dll to the same directory
enjoy.. ))