Skip to content

Commit b5d9e08

Browse files
committed
feat(install-script): add glibc version check
Make the script fail if the installed version is below the supported version (2.31). Show a warning if the version is deprecated (between 2.31 and 2.34).
1 parent 34a2e24 commit b5d9e08

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

mithril-install.sh

+11
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ check_requirements() {
2626
error_exit "It seems 'jq' is not installed or not in the path.";
2727
}
2828

29+
check_glibc_min_version() {
30+
glibc_version=$(ldd --version | awk 'NR==1{print $NF}')
31+
32+
if [ "$(echo "$glibc_version" | grep -cE "2\.3[1-4]")" -gt 0 ]; then
33+
echo "Warning: Mithril support for your GLIBC version $glibc_version is deprecated. The minimum required version will be bumped to 2.35 after the 2506 distribution."
34+
elif [ "$(echo "$glibc_version" | grep -cE -e "2\.[0-2][0-9]" -e "2\.30")" -gt 0 ]; then
35+
error_exit "Error: Your GLIBC version is $glibc_version, but the minimum required version is 2.31."
36+
fi
37+
}
38+
2939
# --- MAIN execution ---
3040

3141
# Default values
@@ -59,6 +69,7 @@ OS_CODE=$(echo "$OS" | awk '{print tolower($0)}')
5969

6070
case "$OS" in
6171
Linux)
72+
check_glibc_min_version
6273
;;
6374
Darwin)
6475
OS_CODE="macos"

0 commit comments

Comments
 (0)