Skip to content

Instantly share code, notes, and snippets.

@zcshiner
Last active March 6, 2020 17:34
Show Gist options
  • Save zcshiner/37246f6f9639094a826c5e3fdeca2c87 to your computer and use it in GitHub Desktop.
Save zcshiner/37246f6f9639094a826c5e3fdeca2c87 to your computer and use it in GitHub Desktop.
BFGminer build script for GekkoScience Compac BM1384 Stickminer
#!/bin/bash
BUILD_DIR="bfgminer"
git clone --depth 1 https://github.com/luke-jr/bfgminer $BUILD_DIR
git submodule init && git submodule update --depth 1
cd $BUILD_DIR
make distclean
rm -f Makefile.in
rm -f config.status
./autogen.sh
./configure --disable-other-drivers --enable-bitmain && make -j 2 && echo "done"
@VshadowTX
Copy link

Is it possible to compile a version to use gekko with bfgminer?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment