mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-09 18:00:13 +02:00
build: add autogen. How was this missing?
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,7 +11,6 @@ configure
|
|||||||
.libs/
|
.libs/
|
||||||
Makefile.in
|
Makefile.in
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autogen.sh
|
|
||||||
autom4te.cache/
|
autom4te.cache/
|
||||||
config.log
|
config.log
|
||||||
config.status
|
config.status
|
||||||
|
@ -57,7 +57,7 @@ tests_LDFLAGS = -static
|
|||||||
TESTS = tests
|
TESTS = tests
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = nasm_lt.sh
|
EXTRA_DIST = autogen.sh nasm_lt.sh
|
||||||
|
|
||||||
#x86_64 only
|
#x86_64 only
|
||||||
if USE_ASM
|
if USE_ASM
|
||||||
|
@ -41,9 +41,7 @@ Build steps
|
|||||||
|
|
||||||
libsecp256k1 is built using autotools:
|
libsecp256k1 is built using autotools:
|
||||||
|
|
||||||
$ aclocal
|
$ ./autogen.sh # not necessary when building from release tarballs
|
||||||
$ autoreconf --install
|
|
||||||
$ automake
|
|
||||||
$ ./configure
|
$ ./configure
|
||||||
$ make
|
$ make
|
||||||
$ sudo make install # optional
|
$ sudo make install # optional
|
||||||
|
2
autogen.sh
Executable file
2
autogen.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
autoreconf -if
|
Reference in New Issue
Block a user