Hi trying to install 0.9.3.1 on linux mint 17.3
-
But not getting very far, can anyone help?
-
You need to provide a bit more information.
Do you experience problems with dependencies?
When compiling the GUI?
When compiling the daemon?One thing I can tell upfront is, that you need to specify --enable-tests=no to the configure script.
-
I have tried the walk thoughs but am getting
martin-System-Product-Name martin # cd ~/ ; git clone https://github.com/FeatherCoin/Feathercoin ; cd ~/Feathercoin/src ; make -f makefile.unix USE_UPNP=- ; mv feathercoind /usr/bin
Cloning into ‘Feathercoin’…
remote: Counting objects: 35008, done.
remote: Total 35008 (delta 0), reused 0 (delta 0), pack-reused 35008
Receiving objects: 100% (35008/35008), 31.23 MiB | 7.21 MiB/s, done.
Resolving deltas: 100% (26351/26351), done.
Checking connectivity… done.
make: makefile.unix: No such file or directory
make: *** No rule to make target `makefile.unix’. Stop.
mv: cannot stat ‘feathercoind’: No such file or directory -
when using code from Github the make process requires two more steps.
The process should be described in the README.mdAfter downloading
- cd <feathercoin directory>
- ./autogen.sh
- ./configure --enable-tests=no
- make
The configure script creates the different makefiles and has more oprions
./configure --help gives a list
-
Feathercoin # make
make: *** No targets specified and no makefile found. Stop.Am i showing myself up here?
-
did you do the autogen.sh and the configure steps, and did they finnish without errors?
And!!!
Important: are you trying to compile 0.8.7.3 or 0.9.3.1?
The process I described is for 0.9.3.1
For 0.8.7.3 do this:
- cd src
- make -f Makefile.unix
This will compile the daemon
I need to check for the GUI, but again the description how to do it should be either in README.md or in the /doc directory