Last active
March 6, 2020 17:34
-
-
Save zcshiner/37246f6f9639094a826c5e3fdeca2c87 to your computer and use it in GitHub Desktop.
BFGminer build script for GekkoScience Compac BM1384 Stickminer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to compile a version to use gekko with bfgminer?