Post
Topic
Board Announcements (Altcoins)
Re: [ANN][GAP] Gapcoin - Prime Gap Search - New Math Algo - CPU / GPU - Zero Premine
by
gjhiggins
on 02/12/2019, 18:37:40 UTC
Mr. Higgins,

It looks like Linux Mint does not compile using your v0.9.3-gap

POWUTLS error

Sorry can't paste out the whole thing.  

You are building it under Linux Mint I assume?

When I checked, the PoWCore submodule wasn't using master but HEAD. I checked stackoverflow and found:
https://stackoverflow.com/questions/18770545/why-is-my-git-submodule-head-detached-from-master/55570998#55570998

where I learned that git submodule update needs to be git submodule update --remote --merge

I have just used the following with success:
Code:
git clone https://github.com/gjhiggins/gapcoin.git gapcoin-0.9.3
cd gapcoin-0.9.3/
git checkout v0.9.3-gap
git submodule init
git submodule update --remote --merge
./autogen.sh
./configure --with-incompatible-bdb --with-gui --with-miniupnpc --with-qrencode --disable-tests
make

Cheers

Graham