I’m trying to compile the new version of the zcash miner but it seems like the method to build it has changed.
I’m using these commands to build it (as directed to in the readme.md)
- Open terminal and run the following commands:
sudo apt-get install cmake build-essential libboost-all-dev
git clone -b Linux GitHub - nicehash/nheqminer: Equihash miner for NiceHash
cd nheqminer/cpu_xenoncat/Linux/asm/
sh assemble.sh
cd …/…/…/Linux_cmake/nheqminer_cpu
cmake .
make -j $(nproc)
everything goes fine up until I get to - sh assemble.sh
and I get this error
~/nheqminer/cpu_xenoncat/Linux/asm$ flat assembler version 1.71.57 (0 kilobytes memory)
-bash: syntax error near unexpected token `(’
~/nheqminer/cpu_xenoncat/Linux/asm$ Segmentation fault (core dumped)
any ideas? I’m thinking there might be a problem with the assemble.sh file (based on the syntax error)
For the previous version I was able to compile it using this and it worked fine up until this newest update, now it cant find the make file in nheqminer directory.
sudo apt-get install cmake build-essential libboost-all-dev
git clone https://github.com/nicehash/nheqminer.git12
cd nheqminer/nheqminer
mkdir build
cd build
cmake …
make