Commit 010d1008 authored by nanahira's avatar nanahira

Merge branch 'patch-glibc-dl' of ../versions/ygopro-fh into develop

parents add19667 3e1f5ce4
Pipeline #37307 failed with stages
in 6 minutes and 41 seconds
...@@ -391,7 +391,7 @@ function getGlibcVersion() ...@@ -391,7 +391,7 @@ function getGlibcVersion()
return (major << 16) | (minor << 8) | patch return (major << 16) | (minor << 8) | patch
end end
return nil return 0
end end
GLIBC_VERSION=0 GLIBC_VERSION=0
...@@ -400,7 +400,7 @@ if os.ishost("linux") then ...@@ -400,7 +400,7 @@ if os.ishost("linux") then
if GLIBC_VERSION>0 then if GLIBC_VERSION>0 then
print("Detected glibc version: " .. string.format("%d.%d.%d", GLIBC_VERSION >> 16, (GLIBC_VERSION >> 8) & 0xFF, GLIBC_VERSION & 0xFF)) print("Detected glibc version: " .. string.format("%d.%d.%d", GLIBC_VERSION >> 16, (GLIBC_VERSION >> 8) & 0xFF, GLIBC_VERSION & 0xFF))
else else
print("Could not detect glibc version, assuming it is sufficient.") print("Could not detect glibc version, assuming it is insufficient.")
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment