The wallet does not open on mac osx 10.10 am trying to compile it and get this error:
make: *** [build / key.o] Error 1
Some help?
The latest mac wallet in the OP opens just fine on OS X 10.10 here.
If you really want to compile it yourself, then please add more info. The compile error would be a good start.
The wallet I downloaded from the link at OP and opens and closes immediately, osx 10.10.3 is version precise!
To compile on linux this is what I see in the terminal:
Makefile: 1771: instruction set for the "build / key.o" Failed
make: *** [build / key.o] Error 1
PS: I have already installed: secp256k1
That's very strange, it works here!
I think I know what your problem is, you probably compiled the latest secp256k1 from github.com/bitcoin/secp256k1?
That repository made secp256k1 incompatible with most cryptocurrencies using it since commit 210ffed.
You can easily solve that by checking out an earlier version of the repository.
What you do is:
git clone http://www.github.com/bitcoin/secp256k1
cd ./secp256k1
git checkout a1d5ae1
./autogen.sh
./configure
make
make install
Let me know if that fixed your problem.