Is anyone else having an issue compiling the wallet?
i get the following error when i when i try to make it
make[1]: Leaving directory `/home/USER/ieuro/src/leveldb'
/bin/sh: 1: /home/USER/ieuro/src/leveldb/libleveldb.a: Permission denied
make: *** [/home/USER/ieuro/src/leveldb/libleveldb.a] Error 126
if i chmod it 755 or +x 755 i get the following error
make[1]: Leaving directory `/home/USER/ieuro/src/leveldb'
/home/USER/ieuro/src/leveldb/libleveldb.a: 2: /home/USER/ieuro/src/leveldb/libleveldb.a: Syntax error: newline unexpected
make: *** [/home/USER/ieuro/src/leveldb/libleveldb.a] Error 2
i have complied a dozen or more wallets in the past and never had this problem.
Which makefile are you using? Operating system?
I am running Ubuntu 14.04 x86 on this box and didn't specify a make file.
I used:
Should be fixed in
9eb65eDo a git pull and let me know if it works for you.
After your fix the issue is resolved and after I installed libsecp256k1 via
git clone https://github.com/bitcoin/secp256k1.git
./autogen.sh
./configure
make
./test
make install
i got everything to compile, however when i try to run ./ieuro-qt via the command line i get the following error
./euro-qt: error while loading shared libraries: libsecp256k1.so.0: cannot open shared object file: No such file or directory
if ls -l in /usr/local/lib i can see that the lib is there
-rw-r--r-- 1 root root 980238 Jul 2 12:26 libsecp256k1.a
-rwxr-xr-x 1 root root 982 Jul 2 12:26 libsecp256k1.la
lrwxrwxrwx 1 root root 21 Jul 2 12:26 libsecp256k1.so -> libsecp256k1.so.0.0.0
lrwxrwxrwx 1 root root 21 Jul 2 12:26 libsecp256k1.so.0 -> libsecp256k1.so.0.0.0
-rwxr-xr-x 1 root root 448954 Jul 2 12:26 libsecp256k1.so.0.0.0
any help would be greatly appreciated
EDIT: got everything working after ran
ldconfig as root
. Thanks goes to a post by ocminer (
https://bitcointalk.org/index.php?topic=997356.msg11010288#msg11010288)