README 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. This is a multi-threaded CPU and GPU miner for bitcoin.
  2. License: GPLv2. See COPYING for details.
  3. Dependencies:
  4. libcurl http://curl.haxx.se/libcurl/
  5. jansson http://www.digip.org/jansson/
  6. (jansson is optional, and is included in-tree)
  7. Basic *nix build instructions:
  8. ./autogen.sh # only needed if building from git repo
  9. CFLAGS="-O3 -Wall -msse2" ./configure
  10. make
  11. Basic WIN32 build instructions (on Fedora 13; requires mingw32):
  12. ./autogen.sh # only needed if building from git repo
  13. rm -f mingw32-config.cache
  14. MINGW32_CFLAGS="-O3 -Wall -msse2" mingw32-configure
  15. make
  16. ./mknsis.sh
  17. Native WIN32 build instructions (on mingw32, on windows):
  18. Install AMD APP sdk, latest version
  19. Install mingw32
  20. Install libcurl, copy libcurl.m4 into /mingw/share/aclocal
  21. Run:
  22. autoreconf -fvi
  23. CFLAGS="-O3 -Wall -msse2 -I<path to AMD APP include>" LDFLAGS="-L<path to AMD APP lib/x86>" ./configure
  24. make
  25. Usage instructions: Run "cgminer --help" to see options.
  26. Also many issues and FAQs are covered in the forum thread
  27. dedicated to this program,
  28. http://www.bitcoin.org/smf/index.php?topic=1925.0;all