silkworm: check glibcpp compatibility (#8932)

libsilkworm requires libstdc++.so.6.0.30, but Rocky Linux 9.3 has only
libstdc++.so.6.0.29,
and `make erigon` produces an error about the GLIBCXX Version needed
3.4.30 (available 3.4.29).

see:

https://stackoverflow.com/questions/10354636/how-do-you-find-what-version-of-libstdc-library-is-installed-on-your-linux-mac
https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html
This commit is contained in:
battlmonstr 2023-12-07 17:53:29 +01:00 committed by GitHub
parent 5987d4ef72
commit dac73f4b57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,17 @@ function glibc_version {
$cmd | head -1 | awk '{ print $NF }'
}
function glibcpp_version {
link_path=$(/sbin/ldconfig -p | grep libstdc++ | awk '{ print $NF }')
if [[ ! -L "$link_path" ]]
then
echo "0"
else
file_name=$(readlink "$link_path")
echo "${file_name##*.}"
fi
}
function version_major {
IFS='.' read -a components <<< "$1"
echo "${components[0]}"
@ -59,6 +70,13 @@ case $(uname -s) in
exit 4
fi
version=$(glibcpp_version)
if (( version < 30 ))
then
echo "not supported glibcpp version: $version"
exit 5
fi
;;
Darwin)
;;