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
Blink currently lacks support for the VDSO, which results in a lack of compatibility with many binaries.
In particular, binaries using dietlibc and any syscall implemented in the VDSO (such as clock_gettime) always segfault on dietlibc, as their strategy for dealing with getauxval(AT_SYSINFO_EHDR) == NULL is:
if (!__vdso) __vdso=(char*)0xffffffffff600000;
(this appears to be for compatibility with ancient versions of Linux, and by that I mean versions from like 2002 from before even 2.6)
The text was updated successfully, but these errors were encountered:
Blink currently lacks support for the VDSO, which results in a lack of compatibility with many binaries.
In particular, binaries using dietlibc and any syscall implemented in the VDSO (such as
clock_gettime
) always segfault on dietlibc, as their strategy for dealing withgetauxval(AT_SYSINFO_EHDR) == NULL
is:(this appears to be for compatibility with ancient versions of Linux, and by that I mean versions from like 2002 from before even 2.6)
The text was updated successfully, but these errors were encountered: