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
This is just to document the issue I faced when I tried to build zlib 1.2.12 without CC-login patch for configure script.
I compiled ZLib 1.2.12 using GCC 10.4.0 but forgot to patch it with a CC-login in configure script patch.
zlib builds and generates the shared object which does not have ZLIB_1.2.x symbols.
Consequently, packages that use zlib will fail with libz.so.1: version 'ZLIB_1.2.0\' not found (required by python)\n').
When I investigated the issue, I tried to grep for symbols and they were missing.
This is just to document the issue I faced when I tried to build zlib 1.2.12 without CC-login patch for configure script.
I compiled ZLib 1.2.12 using GCC 10.4.0 but forgot to patch it with a CC-login in configure script patch.
zlib builds and generates the shared object which does not have ZLIB_1.2.x symbols.
Consequently, packages that use zlib will fail with
libz.so.1: version 'ZLIB_1.2.0\' not found (required by python)\n')
.When I investigated the issue, I tried to grep for symbols and they were missing.
Normally, the linker would fail with
bad value
, as reported by Gentoo, but this is somehow circumvented byfPIC
flag that EasyBuild uses.When the patch is applied:
The text was updated successfully, but these errors were encountered: