Displaying 3 results from an estimated 3 matches for "archear".
Did you mean:
archean
2020 Oct 28
2
Targeting old glibc
On Wed, Oct 28, 2020 at 6:07 PM Fangrui Song <maskray at google.com> wrote:
>
> On 2020-10-28, Alexandre Bique via llvm-dev wrote:
> >Hi,
> >
> >I wonder what is the right way to target an old glibc?
> >
> >I have a machine which is up to date (glibc 2.32 and clang+lld 10.0.1).
> >
> >So far I've been able to target older glibc by having a
2020 Nov 09
0
Targeting old glibc
...of exp at GLIBC_2.2.5
/usr/lib/libm.so.6: shared definition of exp
/usr/lib/libm.so.6: shared definition of exp at GLIBC_2.29
/usr/lib/libmvec.so.1: reference to exp at GLIBC_2.29
So the dependency is being pulled by libmvec.
Which is strange because the target is not using libmvec:
[jenkins at archear build-clang.64]$ ldd VstPlugins/libPodolski.so
linux-vdso.so.1 (0x00007ffccff47000)
libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007f2761062000)
libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f2761040000)
libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f276103a000)
libuuid.so.1 => /usr/l...
2020 Nov 09
2
Targeting old glibc
...so.6: shared definition of exp
> /usr/lib/libm.so.6: shared definition of exp at GLIBC_2.29
> /usr/lib/libmvec.so.1: reference to exp at GLIBC_2.29
>
> So the dependency is being pulled by libmvec.
>
> Which is strange because the target is not using libmvec:
>
> [jenkins at archear build-clang.64]$ ldd VstPlugins/libPodolski.so
> linux-vdso.so.1 (0x00007ffccff47000)
> libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007f2761062000)
> libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f2761040000)
> libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f276103a000)
>...