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
Apparently, libstdc++ now requires _dl_find_object, which was added in glibc 2.35. The .so I tried to run polyfill-glibc is statically linked with libstdc++ (because, as you know, libstdc++ is also only one-way-compatible). As a result, it has a dependency on _dl_find_object@GLIBC_2.35, so polyfill-glibc cannot make it work with --target-glibc=2.34 or less.
Apparently, libstdc++ now requires
_dl_find_object
, which was added in glibc 2.35. The .so I tried to run polyfill-glibc is statically linked with libstdc++ (because, as you know, libstdc++ is also only one-way-compatible). As a result, it has a dependency on_dl_find_object@GLIBC_2.35
, so polyfill-glibc cannot make it work with--target-glibc=2.34
or less.This: https://git.adelielinux.org/adelie/gcompat/-/issues/364 has links to a few implementations of the function.
The text was updated successfully, but these errors were encountered: