From 6c8e06b27e295cfb2759b53b6a3446f5836b623c Mon Sep 17 00:00:00 2001 From: DeFiChain on Raspberry <79512509+Martin8617@users.noreply.github.com> Date: Sun, 19 Mar 2023 17:51:43 +0100 Subject: [PATCH] Update to v3.2.8 --- build-ain-armv7l.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-ain-armv7l.md b/build-ain-armv7l.md index 1b93299..2fb3359 100644 --- a/build-ain-armv7l.md +++ b/build-ain-armv7l.md @@ -11,7 +11,7 @@ Download the latest source code from DefiCh/ain and extract them to your `/home/ - [Source code (tar.gz)](https://github.com/DeFiCh/ain/releases) -## Build ain-3.2.7 +## Build ain-3.2.8 ### Install all dependencies @@ -33,19 +33,19 @@ sudo apt-get install g++-arm-linux-gnueabihf ### Build Berkeley DB It is recommended to use Berkeley DB 4.8. If you have to build it yourself, you can use installation script included in contrib: ``` -cd /home/pi/ain-3.2.7/ -./contrib/install_db4.sh /home/pi/ain-3.2.7/ +cd /home/pi/ain-3.2.8/ +./contrib/install_db4.sh /home/pi/ain-3.2.8/ ``` ### Build executables ``` -cd /home/pi/ain-3.2.7/depends +cd /home/pi/ain-3.2.8/depends make HOST=arm-linux-gnueabihf NO_QT=1 cd .. ./autogen.sh ``` ``` -export BDB_PREFIX='/home/pi/ain-3.2.7/db4' +export BDB_PREFIX='/home/pi/ain-3.2.8/db4' ./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include" --prefix=$PWD/depends/arm-linux-gnueabihf --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++ ``` And finally: