diff --git a/doc/todo/may_be___40__again__41___to_prelink_or_somehow_avoid_all_the_failing_opens__63__/comment_6_3a849428b335964f80a8503d44d51c5a._comment b/doc/todo/may_be___40__again__41___to_prelink_or_somehow_avoid_all_the_failing_opens__63__/comment_6_3a849428b335964f80a8503d44d51c5a._comment new file mode 100644 index 0000000000..0542a19a4f --- /dev/null +++ b/doc/todo/may_be___40__again__41___to_prelink_or_somehow_avoid_all_the_failing_opens__63__/comment_6_3a849428b335964f80a8503d44d51c5a._comment @@ -0,0 +1,39 @@ +[[!comment format=mdwn + username="yarikoptic" + avatar="http://cdn.libravatar.org/avatar/f11e9c84cb18d26a1748c33b48c924b4" + subject="comment 6" + date="2020-07-18T05:09:32Z" + content=""" +
+bundled git is also a victim on many counts (bringing locale question back as well) + +```shell +$> strace -f /usr/lib/git-annex.linux/git --version 2>&1 | grep open.*ENOE | nl | tail + 155 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//etc/ld.so.conf.d/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 156 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//lib64/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 157 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/gconv/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 158 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/audit/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 159 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//etc/ld.so.conf.d/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 160 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//lib64/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 161 openat(AT_FDCWD, \"/usr/lib/locale/locale-archive\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 162 openat(AT_FDCWD, \"/usr/lib/locale/en_US.UTF-8/LC_MESSAGES\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 163 openat(AT_FDCWD, \"/usr/lib/locale/en_US.UTF-8/LC_TIME\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 164 openat(AT_FDCWD, \"/usr/lib/locale/en_US.UTF-8/LC_CTYPE\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +1 47553.....................................:Sat 18 Jul 2020 01:07:51 AM EDT:. +(git)lena:~datalad/datalad-maint[maint]git +$> strace -f /usr/lib/git-annex.linux/git --version 2>&1 | grep open.*ENOE | grep -v locale | nl | tail + 54 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//etc/ld.so.conf.d/libpthread.so.0\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 55 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//lib64/libpthread.so.0\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 56 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/gconv/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 57 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/audit/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 58 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//etc/ld.so.conf.d/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 59 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//lib64/librt.so.1\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 60 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/gconv/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 61 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//usr/lib/x86_64-linux-gnu/audit/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 62 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//etc/ld.so.conf.d/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + 63 openat(AT_FDCWD, \"/usr/lib/git-annex.linux//lib64/libc.so.6\", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) + +``` +
+ +"""]]