nostril icon indicating copy to clipboard operation
nostril copied to clipboard

make install error in Ubuntu 18.04 LTS

Open HannahVernon opened this issue 1 year ago • 2 comments

I'm running Ubuntu 18.04 LTS under Windows Subsytem for Linux. I cloned the repo without issue, as root via sudo su.

Cloning into 'nostril'...
remote: Enumerating objects: 264, done.
remote: Counting objects: 100% (7/7), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 264 (delta 1), reused 6 (delta 1), pack-reused 257
Receiving objects: 100% (264/264), 72.30 KiB | 796.00 KiB/s, done.
Resolving deltas: 100% (137/137), done.
root@xxx:/home/xxx/git-repos# cd nostril
root@xxx:/home/xxx/git-repos/nostril# make install
cc configurator.c -o configurator
./configurator > config.h
Reinitializing submodules deps/secp256k1 ...
Submodule 'deps/secp256k1' (https://github.com/bitcoin-core/secp256k1) registered for path 'deps/secp256k1'
Cloning into '/home/xxx/git-repos/nostril/deps/secp256k1'...
Submodule path 'deps/secp256k1': checked out '694ce8fb2d1fd8a3d641d7c33705691d41a2a860'
cc sha256.c
cc nostril.c
cc aes.c
cc base64.c
cd deps/secp256k1; \
./autogen.sh
./autogen.sh: 3: ./autogen.sh: autoreconf: not found
Makefile:36: recipe for target 'deps/secp256k1/configure' failed
make: *** [deps/secp256k1/configure] Error 127

I've updated Ubuntu via apt update followed by apt upgrade, with no change in behavior.

Any ideas what I'm doing wrong (aside from running Windows lol)

HannahVernon avatar Mar 07 '23 15:03 HannahVernon

same here

gourcetools avatar May 06 '23 17:05 gourcetools

Try,

sudo apt-get install libtool -y;
sudo apt-get install autoconf -y;

./configurator 

make;

bigOconstant avatar Jun 18 '23 20:06 bigOconstant