bitmain-readme.txt 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ######################################################################################
  2. # #
  3. # BitMain setup and build instructions (on mingw32/Windows): #
  4. # #
  5. ######################################################################################
  6. **************************************************************************************
  7. * Build cgminer.exe *
  8. **************************************************************************************
  9. Run the MinGW MSYS shell
  10. (Start Icon/keyboard key ==> All Programs ==> MinGW ==> MinGW Shell).
  11. Change the working directory to your CGMiner project folder.
  12. Example: cd cgminer-2.1.2 [Enter Key] if you are unsure then type "ls -la"
  13. Another way is to type "cd cg" and then press the tab key; It will auto fill.
  14. Type the lines below one at a time. Look for problems after each one before going on
  15. to the next.
  16. adl.sh (optional - see below)
  17. autoreconf -fvi
  18. CFLAGS="-O2 -msse2" ./configure (additional config options, see below)
  19. make
  20. strip cgminer.exe <== only do this if you are not compiling for debugging
  21. For bitmain mode:
  22. autoreconf -fvi
  23. CFLAGS="-O2 -msse2" ./configure --enable-bmsc
  24. make
  25. **************************************************************************************
  26. * Some ./configure options *
  27. **************************************************************************************
  28. --enable-cpumining Build with cpu mining support(default disabled)
  29. --disable-opencl Override detection and disable building with opencl
  30. --disable-adl Override detection and disable building with adl
  31. --enable-bitforce Compile support for BitForce FPGAs(default disabled)
  32. --enable-icarus Compile support for Icarus Board(default disabled)
  33. --enable-bitmain Compile support for BitMain Devices(default disabled)
  34. --enable-modminer Compile support for ModMiner FPGAs(default disabled)
  35. --enable-ztex Compile support for Ztex Board(default disabled)
  36. --enable-scrypt Compile support for scrypt litecoin mining (default disabled)
  37. --without-curses Compile support for curses TUI (default enabled)
  38. --without-libudev Autodetect FPGAs using libudev (default enabled)
  39. --enable-forcecombo Allow combinations of drivers not intended to be built together(default disabled)
  40. **************************************************************************************
  41. * Run cgminer for bitmain mode *
  42. **************************************************************************************
  43. BitMain options:
  44. --bitmain-options baud:miner_count:asic_count:timeout:frequency
  45. For example:
  46. cgminer --bitmain-options 115200:24:10:30:300 -o http://stratum.btcguild.com:3333 -u xlc1985_1 -p abc123456 -D
  47. ######################################################################################
  48. # #
  49. # BitMain setup and build instructions (on mingw32/Windows) complete #
  50. # #
  51. ######################################################################################