Merge pull request #51 from nolim1t/enable-sqlite3

Compile bitcoin with sqlite support
This commit is contained in:
nolim1t 2021-02-26 20:53:24 +07:00 committed by GitHub
commit a5155f1efe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,6 +131,7 @@ RUN apk add --no-cache \
autoconf \ autoconf \
automake \ automake \
boost-dev \ boost-dev \
sqlite-dev \
build-base \ build-base \
chrpath \ chrpath \
file \ file \
@ -165,6 +166,7 @@ RUN ./configure LDFLAGS=-L/opt/db4/lib/ CPPFLAGS=-I/opt/db4/include/ \
--without-gui \ --without-gui \
--without-libs \ --without-libs \
--with-utils \ --with-utils \
--with-sqlite=yes \
--with-daemon --with-daemon
RUN make -j$(( $(nproc) + 1 )) check RUN make -j$(( $(nproc) + 1 )) check