glibc 2.38 required for some runners

This commit is contained in:
the-sane
2025-06-07 15:25:23 -04:00
parent 2ab1417865
commit 1f6c07f2e5

View File

@ -1232,9 +1232,9 @@ download_select_install() {
contributor_url="${download_sources[$1+1]}"
# For runners, check GlibC version against runner requirements
if [ "$download_type" = "runner" ] && { [ "$contributor_name" = "/dev/null" ] || [ "$contributor_name" = "TKG" ]; }; then
if [ "$download_type" = "runner" ] && { [ "$contributor_name" = "TKG" ] || [ "$contributor_name" = "RawFox" ] || [ "$contributor_name" = "Mactan" ]; }; then
glibc_fail="false"
required_glibc="2.33"
required_glibc="2.38"
# Check the system glibc
if [ -x "$(command -v ldd)" ]; then