--- wikisrc/users/leot/aarch64_problems.mdwn 2018/07/31 22:22:28 1.11 +++ wikisrc/users/leot/aarch64_problems.mdwn 2019/01/04 22:26:31 1.12 @@ -5,6 +5,9 @@ investigation in order to write proper P ## `mpv` SIGSEGVs (strnlen(s, (size_t)-1) always returns -1) + +**UPDATE**: This was fixed by ``, thanks! + Just by invoking `mpv` via: % mpv @@ -88,7 +91,7 @@ This happens because `strnlen(s, (size_t The following patch workaround the mpv problem by avoiding all `strnlen(s, (size_t)-1)` calls (and just using strlen() instead): - $NetBSD$ + $NetBSD: aarch64_problems.mdwn,v 1.11 2018/07/31 22:22:28 leot Exp $ Avoid to directly call: @@ -116,6 +119,8 @@ The following patch workaround the mpv p ## Python `import requests` SIGILLs + +**UPDATE**: A kludge was added since py-cffi-1.11.5nb1 to avoid that. Doing a (please note that also `python36` is affected): $ python2.7 -c 'import requests'