Closed vertyclank closed 4 years ago
Fixed by following this build procedure:
cd depends
make HOST=aarch64-linux-gnu NO_QT=1
cd ..
./autogen.sh
./configure --prefix=$PWD/depends/aarch64-linux-gnu --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++
make
System: Ubuntu 16.04 64bit in Virtualbox (all up to date, all dependencies met) (this exact procedure works to compile bitcoin-0.20.1)
====Procedure for compile====
Download https://github.com/vertcoin-project/vertcoin-core/archive/0.16.0-rc2.zip
Unzip
unzip 0.16.0-rc2.zip
cd into directory
vertcoin-core-0.16.0-rc2
cd into depends
cd depends
make folder for the arch
mkdir aarch64-linux-gnu
cd back into vertcoin-core-0.16.0-rc2
cd ../
Run autogen.sh
./autogen.sh
Run ./configure command
./configure --prefix=$PWD/depends/aarch64-linux-gnu --disable-wallet --without-gui --without-miniupnpc
Run make command
make HOST=aarch64-linux-gnu
'make' command finishes with this error (ERROR ENCOUNTERED HERE)
This is the entire output of the command
node@buildvm:~/Downloads/vertcoin-core-0.16.0-rc2$ make HOST=aarch64-linux-gnu
============================================================ This portion is to show the output of the same compile procedure, but for bitcoin-0.20.1
vertyclank@buildvm:~/Downloads/bitcoin-0.20.1$ ./autogen.sh
vertyclank@buildvm:~/Downloads/bitcoin-0.20.1$ ./configure --prefix=$PWD/depends/aarch64-linux-gnu --disable-wallet --without-gui --without-miniupnpc