i try compile under Ubuntu 16.04 from sources (branch master)
https://github.com/CryptoCoderz/sgminer_HMQ1725but get error "algorithm.c:775:8: error: ‘ALGO_HMQ1725’ undeclared here (not in a function)"
next, i find solution:
Fix for the error during compilation against current git master:
diff --git a/algorithm.h b/algorithm.h
index b2527d1..eb9542e 100644
--- a/algorithm.h
+++ b/algorithm.h
@@ -21,6 +21,7 @@ typedef enum {
ALGO_X15,
ALGO_KECCAK,
ALGO_QUARK,
+ ALGO_HMQ1725,
ALGO_TWE,
ALGO_FUGUE,
ALGO_NIST,
I fixed algorithm.h but new error occurs :
"sgminer-algorithm.o:(.data+0x750): undefined reference to `hmq1725_regenhash'"
what can I fix also?
or where i can find another miner soft with algo hmq1725 for AMD GPU?