build_bfgminer.sh 468 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. cd ~
  3. sudo rm -r -f temp
  4. mkdir temp
  5. cd temp
  6. wget http://wareck.free.fr/cross_compilation/uthash-2.3.0.tar.gz
  7. tar xvfz uthash-2.3.0.tar.gz
  8. cd uthash-2.3.0
  9. sudo cp src/* /opt/mxe/usr/i686-w64-mingw32.static/include/
  10. cd ~
  11. git clone https://github.com/wareck/bfgminer.git
  12. cd bfgminer
  13. git submodule init
  14. git submodule update
  15. autoreconf -fi
  16. CFLAGS="-O2 -msse2" ./configure --host=i686-w64-mingw32.static --disable-shared --enable-scrypt
  17. make
  18. strip bfgminer.exe