On Wed, Oct 13, 2021 at 04:34:32PM +0300, Alexey Tourbin wrote: > On Wed, Oct 13, 2021 at 2:05 PM Gleb Fotengauer-Malinovskiy > wrote: > > В Сизиф совсем скоро попадёт glibc 2.34. > > When an application gets relinked with glibc 2.34, it will no longer > have the dependency on libpthread.so.0, right? Yes, DT_NEEDED structure for libpthread.so.0 is not going to be added anymore. > Will the application still work with glibc 2.32? No. All symbols previously provided by the libpthread, librt, libutil, and libanl libraries are now supported by libc as compatibility symbols. Shared objects linked with glibc >= 2.34 will require @GLIBC_2.34 versions of these symbols. Furthermore, all executables linked with glibc >= 2.34 will be incompatible with the older versions of glibc due to linking with the __libc_start_main@@GLIBC_2.34 symbol. -- glebfm