You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.
i create a script to download stellar from source and try to compile it. I follow all instructions in Stellar github but when i run it as a container i got these reports:
stellar-core: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version CXXABI_1.3.11' not found (required by stellar-core) stellar-core: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.25' not found (required by stellar-core)
i use gcc-7, g++-7 and cpp-7 as well as clang6.0. this is part of the script
Hi,
i create a script to download stellar from source and try to compile it. I follow all instructions in Stellar github but when i run it as a container i got these reports:
stellar-core: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version
CXXABI_1.3.11' not found (required by stellar-core) stellar-core: /lib/x86_64-linux-gnu/libc.so.6: version
GLIBC_2.25' not found (required by stellar-core)i use gcc-7, g++-7 and cpp-7 as well as clang6.0. this is part of the script
if [ $BUILD_FROM_SRC == 1 ]
then
deploy stellar-core binary
cd ..
echo -e "\n${GREEN}Finish installing stellar-core from source...${NC}\n"
else
and these are the dependencies
apt-get install -y software-properties-common
add-apt-repository ppa:ubuntu-toolchain-r/test
apt-get update
apt-get install -y git parallel wget make build-essential pkg-config autoconf automake autoheader libtool bison flex libpq-dev parallel pandoc perl
apt-get install -y clang clang-format
if using g++ or building with libstdc++
apt-get install -y gcc-7 g++-7 cpp-7
However if i use
wget -O stellar-core.deb https://s3.amazonaws.com/stellar.org/releases/stellar-core/stellar-core-${STELLAR_CORE_VERSION}_amd64.deb
dpkg -i stellar-core.deb
rm stellar-core.deb
it works. What do i miss?
The text was updated successfully, but these errors were encountered: