windows-build.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. ######################################################################################
  2. # #
  3. # Native WIN32 setup and build instructions (on mingw32/Windows): #
  4. # #
  5. ######################################################################################
  6. **************************************************************************************
  7. * Introduction *
  8. **************************************************************************************
  9. The following instructions have been tested on both Windows 7 and Windows XP.
  10. Most of what is described below (copying files, downloading files, etc.) can be done
  11. directly in the MinGW MSYS shell; these instructions do not do so because package
  12. versions and links change over time. The best way is to use your browser, go to the
  13. links directly, and see for yourself which versions you want to install.
  14. Winrar was used to do the extracting of archive files in the making of this guide.
  15. **************************************************************************************
  16. * A tip that might help you along the way *
  17. **************************************************************************************
  18. Enable "QuickEdit Mode" in your Command Prompt Window or MinGW Command Prompt
  19. Window (No need to go into the context menu to choose edit-mark/copy/paste):
  20. Right-click on the title bar and click Properties. Under the Options tab, check
  21. the box for "QuickEdit Mode". Alternately, if you want this change to be
  22. permanent on all of your Command Prompt Windows; you can click Defaults instead
  23. of Properties as described above. Now you can drag and select text you want to
  24. copy, right-click to copy the text to the clipboard and right-click once again to
  25. paste it at the desired location. You could for example, copy some text from this
  26. document to the clipboard and right click in your Command Prompt Window to paste
  27. what you copied.
  28. **************************************************************************************
  29. * Install mingw32 *
  30. **************************************************************************************
  31. Go to this url ==> http://www.mingw.org/wiki/Getting_Started
  32. Click the link that says "Download and run the latest mingw-get-inst version."
  33. Download and run the latest file. Install MinGW in the default directory.
  34. (I downloaded the one labeled "mingw-get-inst-20120426" - note that this could
  35. be a different version later.)
  36. Make sure to check the option for "Download latest repository catalogs".
  37. I just selected all the check boxes (excluding "Fortran Compiler") so that everything
  38. was installed.
  39. **************************************************************************************
  40. * Create mstcpip.h *
  41. **************************************************************************************
  42. Open notepad and copy the following into it. Save it as "\MinGW\include\mstcpip.h".
  43. Make sure it does not have the ".txt" extension (If it does then rename it).
  44. struct tcp_keepalive
  45. {
  46. u_long onoff;
  47. u_long keepalivetime;
  48. u_long keepaliveinterval;
  49. };
  50. #ifndef USE_WS_PREFIX
  51. #define SIO_KEEPALIVE_VALS _WSAIOW(IOC_VENDOR, 4)
  52. #else
  53. #define WS_SIO_KEEPALIVE_VALS _WSAIOW(WS_IOC_VENDOR, 4)
  54. #endif
  55. **************************************************************************************
  56. * Run the MSYS shell for the first time to create your user directory *
  57. **************************************************************************************
  58. (Start Icon/keyboard key ==> All Programs ==> MinGW ==> MinGW Shell).
  59. This will create your user directory for you.
  60. **************************************************************************************
  61. * OPTIONAL - Install YASM (only for if you intend to enable CPU mining) *
  62. **************************************************************************************
  63. Open a browser to http://yasm.tortall.net/Download.html
  64. Download the Win32 or Win64 exe as appropriate
  65. Copy to c:\mingw\bin and rename to yasm.exe
  66. **************************************************************************************
  67. * Install libpdcurses *
  68. **************************************************************************************
  69. Type the lines below to install libpdcurses.
  70. mingw-get install mingw32-libpdcurses
  71. mingw-get install mingw32-pdcurses
  72. Ctrl-D or typing "logout" and pressing the enter key should get you out of the
  73. window.
  74. **************************************************************************************
  75. * Install GTK-WIN, required for Pkg-config in the next step *
  76. **************************************************************************************
  77. Go to this url ==> http://sourceforge.net/projects/gtk-win/
  78. Download the file.
  79. After you have downloaded the file Double click/run it and this will install GTK+
  80. I chose all the selection boxes when I installed.
  81. Copy libglib-2.0-0.dll and intl.dll from \Program Files (x86)\gtk2-runtime\bin to
  82. \MinGW\bin
  83. Note: If you are on a 32 bit version of windows "Program Files (x86)" will be
  84. "Program Files".
  85. **************************************************************************************
  86. * Install pkg-config *
  87. **************************************************************************************
  88. Go to this url ==> http://www.gtk.org/download/win32.php
  89. Scroll down to where it shows pkg-cfg.
  90. Download the file from the tool link. Extract "pkg-config.exe" from bin and place in
  91. your \MinGW\bin directory.
  92. Download the file from the "Dev" link. Extract "pkg.m4" from share\aclocal and place
  93. in your \MingW\share\aclocal directory.
  94. **************************************************************************************
  95. * Install libcurl *
  96. **************************************************************************************
  97. Go to this url ==> http://curl.haxx.se/download.html#Win32
  98. At the section where it says "Win32 - Generic", Click on the link that indicates
  99. Win32 2000.XP 7.27.0 libcurl SSL and download it.
  100. The one I downloaded may not be current for you. Choose the latest.
  101. Extract the files that are in the zip (bin, include, and lib) to their respective
  102. locations in MinGW (\MinGW\bin, \MinGW\include, and \MinGW\lib).
  103. Edit the file \MinGW\lib\pkgconfig\libcurl.pc and change "-lcurl" to
  104. "-lcurl -lcurldll".
  105. Ref. http://old.nabble.com/gcc-working-with-libcurl-td20506927.html
  106. **************************************************************************************
  107. * Install libjansson *
  108. **************************************************************************************
  109. Go to this url ==> http://www.digip.org/jansson/releases/
  110. Download the latest tar with library sources.
  111. Copy the jansson-X.X folder into your \MinGW\msys\1.0\home\
  112. Run the MinGW MSYS shell
  113. (Start Icon/keyboard key ==> All Programs ==> MinGW ==> MinGW Shell).
  114. Enter jansson-X.X dir, and type
  115. ./configure --prefix=/MinGW
  116. make
  117. make check
  118. make install
  119. (Source: http://www.digip.org/jansson/doc/dev/gettingstarted.html)
  120. (Source: https://groups.google.com/forum/#!msg/jansson-users/CTPFBeZ0ZWQ/W3uuOuWZegkJ)
  121. **************************************************************************************
  122. * Optional - Install libusb if you need auto USB device detection *
  123. * Required for Ztex and X6500 *
  124. **************************************************************************************
  125. Go to this url ==> http://git.libusb.org/?p=libusb.git;a=snapshot;h=master;sf=zip
  126. save the file to your local storage. Open the file and copy the libusb* folder to
  127. \MinGW\msys\1.0\home\(your user directory/folder).
  128. Or if you do not want to download the file directly and would like to use git then
  129. Type the following from the MSYS shell in your home folder.
  130. git clone git://git.libusb.org/libusb.git
  131. Run the MinGW MSYS shell
  132. (Start Icon/keyboard key ==> All Programs ==> MinGW ==> MinGW Shell).
  133. Change the working directory to your libusb project folder.
  134. Example: cd libusb-something [Enter Key] if you are unsure then type "ls -la"
  135. Another way is to type "cd libusb" and then press the tab key; It will auto fill.
  136. Type the lines below one at a time. Look for problems after each one before going on
  137. to the next.
  138. ./autogen.sh --disable-debug-log --prefix=/MinGW
  139. make
  140. make install
  141. You may now exit the MSYS shell.
  142. Ctrl-D or typing "logout" and pressing the enter key should get you out of the
  143. window.
  144. You will have to copy "libusb-1.0.dll" to your working BFGMiner binary directory.
  145. You will find "libusb-1.0.dll" in the \MinGW\bin directory/folder.
  146. Use this method if libusb does not work for you on Ztex. Once someone lets us know
  147. Libusb works instead of libusbx then we will remove the section below this line.
  148. Run the MSYS shell and change into the libusb folder as above.
  149. Type ==> make uninstall
  150. Go to this url ==> http://libusbx.org/
  151. Click on the "Downloads" tab.
  152. Click on "releases".
  153. Click on the latest version. I downloaded 1.0.14; yours may be newer.
  154. Do not download from the link that says "Looking for the latest version?".
  155. Click on "Windows"
  156. Click on the file and download it. I downloaded libusbx-1.0.12-win.7z.
  157. Extract the the following from the file and place in where directed.
  158. Copy libusb.h from include\libusbx-1.0 to \MinGW\include\libusb-1.0\libusb.h
  159. Copy contents of MinGW32\static \MinGW\lib
  160. Copy contents of MinGW32\dll to \MinGW\lib
  161. NOTE: You will have to copy "libusb-1.0.dll" to your working BFGMiner binary directory.
  162. **************************************************************************************
  163. * REQUIRED - Install Git into MinGW/MSYS *
  164. **************************************************************************************
  165. Go to this url ==> http://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git
  166. Download and install the latest full installer
  167. In Windows Explorer, go to c:\MinGW\msys\1.0\home\<username>
  168. Create a text file named profile.txt with one of the following lines (leave off the win??> part)
  169. win86> PATH=$PATH:/c/Program\ Files/Git/bin
  170. win64> PATH=$PATH:/c/Program\ Files\ \(x86\)/Git/bin
  171. Save the file, open a MSYS Shell, and enter the following commands
  172. mv profile.txt .profile
  173. then close ALL MSYS Shell windows currently open
  174. Open a new MSYS Shell and enter the following commands
  175. git clone git://github.com/luke-jr/bfgminer.git
  176. If you just want to update the source after you have already cloned, type:
  177. cd bfgminer
  178. git fetch
  179. Now you can get the latest source directly from github.
  180. **************************************************************************************
  181. * Build bfgminer.exe *
  182. **************************************************************************************
  183. Run the MinGW MSYS shell
  184. (Start Icon/keyboard key ==> All Programs ==> MinGW ==> MinGW Shell).
  185. Change the working directory to your BFGMiner project folder.
  186. Example: cd bfgminer-2.7.1 [Enter Key] if you are unsure then type "ls -la"
  187. Another way is to type "cd bfg" and then press the tab key; It will auto fill.
  188. Type the lines below one at a time. Look for problems after each one before going on
  189. to the next.
  190. ./autogen.sh
  191. CFLAGS="-O2 -msse2" ./configure (additional config options, see below)
  192. make
  193. strip bfgminer.exe <== only do this if you are not compiling for debugging
  194. **************************************************************************************
  195. * Some ./configure options *
  196. **************************************************************************************
  197. --enable-cpumining Build with cpu mining support(default disabled)
  198. --disable-opencl Build without support for OpenCL (default enabled)
  199. --disable-adl Build without ADL monitoring (default enabled)
  200. --disable-bitforce Compile support for BitForce (default enabled)
  201. --disable-icarus Compile support for Icarus (default enabled)
  202. --disable-modminer Compile support for ModMiner (default enabled)
  203. --disable-x6500 Compile support for X6500 (default enabled)
  204. --disable-ztex Compile support for Ztex (default if libusb)
  205. --enable-scrypt Compile support for scrypt mining (default disabled)
  206. --without-curses Compile support for curses TUI (default enabled)
  207. --without-libudev Autodetect FPGAs using libudev (default enabled)
  208. **************************************************************************************
  209. * Copy files to a build directory/folder *
  210. **************************************************************************************
  211. Make a directory and copy the following files into it. This will be your BFGMiner
  212. Folder that you use for mining. Remember the .cl filenames could change on later
  213. releases. If you installed a different version of libcurl then some of those dll's
  214. may be different as well.
  215. bfgminer.exe from \MinGW\msys\1.0\home\(username)\bfgminer
  216. *.cl from \MinGW\msys\1.0\home\(username)\bfgminer
  217. README from \MinGW\msys\1.0\home\(username)\bfgminer
  218. libcurl.dll from \MinGW\bin
  219. libidn-11.dll from \MinGW\bin
  220. libeay32.dll from \MinGW\bin
  221. ssleay32.dll from \MinGW\bin
  222. libpdcurses.dll from \MinGW\bin
  223. pthreadGC2.dll from \MinGW\bin
  224. libjansson-X.dll from \MinGW\msys\1.0\local\bin
  225. libblkmaker_jansson-0.1-0.dll
  226. from \MinGW\msys\1.0\home\(username)\bfgminer\libblkmaker\.libs
  227. libblkmaker-0.1-0.dll
  228. from \MinGW\msys\1.0\home\(username)\bfgminer\libblkmaker\.libs
  229. ######################################################################################
  230. # #
  231. # Native WIN32 setup and build instructions (on mingw32/Windows) complete #
  232. # #
  233. ######################################################################################