Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

firefox: add pgo support #164646

Merged
merged 5 commits into from
Mar 28, 2022
Merged

firefox: add pgo support #164646

merged 5 commits into from
Mar 28, 2022

Conversation

mweinelt
Copy link
Member

@mweinelt mweinelt commented Mar 17, 2022

PGO support is an optimization that the binary builds from Mozilla already have and our source builds currently lack.

This PR is still a work in progress and I have not done any testing on how this affects other consumers of firefox' common.nix.

This is currently rebased on top of #165161. If you want to check out the pgo changes look for the last commit.


Tested firefox and firefox-esr on x86_64-linux.
Build firefox on aarch64-linux in progress … currently stuck in the profiling phase, I think it's stuck.

created virtual environment CPython3.9.10.final.0-64 in 46ms
  creator CPython3Posix(dest=/build/firefox-98.0.2/mozobj/_virtualenvs/common, clear=False, no_vcs_ignore=False, global=False)
  activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator

(firefox:49839): Gtk-WARNING **: 02:55:38.164: Could not find the icon 'window-minimize-symbolic'. The 'hicolor' theme
was not found either, perhaps you need to install it.
You can get a copy from:
        http://icon-theme.freedesktop.org/releases
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) [GFX1-]: glxtest: libpci missing
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) [GFX1-]: glxtest: libEGL no display
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) [GFX1-]: glxtest: GLX extension missing
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) [GFX1-]: glxtest: libEGL no display
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) |[4][GFX1-]: No GPUs detected via PCI (t=1.94093) [GFX1-]: No GPUs detected via PCI
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) |[4][GFX1-]: No GPUs detected via PCI (t=1.94093) |[5][GFX1-]: Failed GL context creation for WebRender: 0 (t=2.82433) [GFX1-]: Failed GL context creation for WebRender: 0
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) |[4][GFX1-]: No GPUs detected via PCI (t=1.94093) |[5][GFX1-]: Failed GL context creation for WebRender: 0 (t=2.82433) |[6][GFX1-]: FEATURE_FAILURE_WEBRENDER_INITIALIZE_UNSPECIFIED (t=2.82437) [GFX1-]: FEATURE_FAILURE_WEBRENDER_INITIALIZE_UNSPECIFIED
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) |[4][GFX1-]: No GPUs detected via PCI (t=1.94093) |[5][GFX1-]: Failed GL context creation for WebRender: 0 (t=2.82433) |[6][GFX1-]: FEATURE_FAILURE_WEBRENDER_INITIALIZE_UNSPECIFIED (t=2.82437) |[7][GFX1-]: Failed to connect WebRenderBridgeChild. (t=2.82574) [GFX1-]: Failed to connect WebRenderBridgeChild.
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=1.94067) |[1][GFX1-]: glxtest: libEGL no display (t=1.9409) |[2][GFX1-]: glxtest: GLX extension missing (t=1.94091) |[3][GFX1-]: glxtest: libEGL no display (t=1.94091) |[4][GFX1-]: No GPUs detected via PCI (t=1.94093) |[5][GFX1-]: Failed GL context creation for WebRender: 0 (t=2.82433) |[6][GFX1-]: FEATURE_FAILURE_WEBRENDER_INITIALIZE_UNSPECIFIED (t=2.82437) |[7][GFX1-]: Failed to connect WebRenderBridgeChild. (t=2.82574) |[8][GFX1-]: Fallback WR to SW-WR (t=2.82839) [GFX1-]: Fallback WR to SW-WR

Copy link
Contributor

@ReplayCoding ReplayCoding left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

93e8af2 should probably be a separate pr

@mweinelt
Copy link
Member Author

mweinelt commented Mar 22, 2022

Rebased on top of #165161. Builds, but won't start.

❯ ./result/bin/firefox -P
Couldn't load XPCOM.
strace
❯ strace ./result/bin/firefox -P
execve("./result/bin/firefox", ["./result/bin/firefox", "-P"], 0x7ffe9780b218 /* 85 vars */) = 0
brk(NULL)                               = 0x229a000
access("/etc/ld-nix.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v3/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v3", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v2/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v2", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib", {st_mode=S_IFDIR|0555, st_size=294, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v3/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v3", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v2/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v2", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/x86_64", 0x7ffeb01142f0, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\21\0\0\0\0\0\0"..., 832) = 832
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=18528, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f19802ab000
mmap(NULL, 16528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f19802a6000
mmap(0x7f19802a7000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f19802a7000
mmap(0x7f19802a8000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f19802a8000
mmap(0x7f19802a9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f19802a9000
close(3)                                = 0
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320x\2\0\0\0\0\0"..., 832) = 832
pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784
pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\200\0\300\4\0\0\0\1\0\0\0\0\0\0\0", 32, 848) = 32
pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0'\216\27d\301\6\247\325X\310\24\323\210S\343\243"..., 68, 880) = 68
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=2141272, ...}, AT_EMPTY_PATH) = 0
pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784
mmap(NULL, 1917264, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f19800d1000
mmap(0x7f19800f7000, 1384448, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f19800f7000
mmap(0x7f1980249000, 319488, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x178000) = 0x7f1980249000
mmap(0x7f1980297000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c5000) = 0x7f1980297000
mmap(0x7f198029d000, 33104, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f198029d000
close(3)                                = 0
mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f19800ce000
arch_prctl(ARCH_SET_FS, 0x7f19800ce740) = 0
mprotect(0x7f1980297000, 12288, PROT_READ) = 0
mprotect(0x7f19802a9000, 4096, PROT_READ) = 0
mprotect(0x4d5000, 8192, PROT_READ)     = 0
mprotect(0x7f19802dc000, 8192, PROT_READ) = 0
openat(AT_FDCWD, "/dev/tty", O_RDWR|O_NONBLOCK) = 3
close(3)                                = 0
brk(NULL)                               = 0x229a000
brk(0x229b000)                          = 0x229b000
openat(AT_FDCWD, "/nix/store/fsji1nk1sh8a97mnvlkv0hrzngd7p5fm-glibc-locales-2.33-117/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=225226832, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 225226832, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f1972a02000
close(3)                                = 0
brk(0x229c000)                          = 0x229c000
brk(0x229d000)                          = 0x229d000
brk(0x229e000)                          = 0x229e000
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
brk(0x229f000)                          = 0x229f000
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 3
newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=56353, ...}, AT_EMPTY_PATH) = 0
brk(0x22a1000)                          = 0x22a1000
read(3, "# GNU libc iconv configuration.\n"..., 4096) = 4096
brk(0x22a2000)                          = 0x22a2000
brk(0x22a3000)                          = 0x22a3000
read(3, "B1002//\tJUS_I.B1.002//\nmodule\tJU"..., 4096) = 4096
brk(0x22a4000)                          = 0x22a4000
brk(0x22a5000)                          = 0x22a5000
brk(0x22a6000)                          = 0x22a6000
brk(0x22a7000)                          = 0x22a7000
brk(0x22a8000)                          = 0x22a8000
read(3, "\tISO-IR-110//\t\tISO-8859-4//\nalia"..., 4096) = 4096
brk(0x22a9000)                          = 0x22a9000
brk(0x22aa000)                          = 0x22aa000
brk(0x22ab000)                          = 0x22ab000
brk(0x22ac000)                          = 0x22ac000
read(3, "\t\t\tISO-8859-14//\nalias\tISO_8859-"..., 4096) = 4096
brk(0x22ad000)                          = 0x22ad000
brk(0x22ae000)                          = 0x22ae000
brk(0x22af000)                          = 0x22af000
brk(0x22b0000)                          = 0x22b0000
brk(0x22b1000)                          = 0x22b1000
read(3, "DIC-ES//\nalias\tEBCDICES//\t\tEBCDI"..., 4096) = 4096
brk(0x22b2000)                          = 0x22b2000
brk(0x22b3000)                          = 0x22b3000
brk(0x22b4000)                          = 0x22b4000
brk(0x22b5000)                          = 0x22b5000
read(3, "CDIC-CP-ES//\t\tIBM284//\nalias\tCSI"..., 4096) = 4096
brk(0x22b6000)                          = 0x22b6000
brk(0x22b7000)                          = 0x22b7000
brk(0x22b8000)                          = 0x22b8000
brk(0x22b9000)                          = 0x22b9000
brk(0x22ba000)                          = 0x22ba000
read(3, "\t\tIBM863//\nalias\tOSF1002035F//\t\t"..., 4096) = 4096
brk(0x22bb000)                          = 0x22bb000
brk(0x22bc000)                          = 0x22bc000
brk(0x22bd000)                          = 0x22bd000
brk(0x22be000)                          = 0x22be000
brk(0x22bf000)                          = 0x22bf000
read(3, "937//\t\tIBM937//\nmodule\tIBM937//\t"..., 4096) = 4096
brk(0x22c0000)                          = 0x22c0000
brk(0x22c1000)                          = 0x22c1000
brk(0x22c2000)                          = 0x22c2000
brk(0x22c3000)                          = 0x22c3000
brk(0x22c4000)                          = 0x22c4000
read(3, "UJIS//\t\t\tEUC-JP//\nmodule\tEUC-JP/"..., 4096) = 4096
brk(0x22c5000)                          = 0x22c5000
brk(0x22c6000)                          = 0x22c6000
brk(0x22c7000)                          = 0x22c7000
brk(0x22c8000)                          = 0x22c8000
brk(0x22c9000)                          = 0x22c9000
read(3, "lias\tISO2022CN//\t\tISO-2022-CN//\n"..., 4096) = 4096
brk(0x22ca000)                          = 0x22ca000
brk(0x22cb000)                          = 0x22cb000
brk(0x22cc000)                          = 0x22cc000
brk(0x22cd000)                          = 0x22cd000
read(3, "O_5427-EXT//\nalias\tISO_5427EXT//"..., 4096) = 4096
brk(0x22ce000)                          = 0x22ce000
brk(0x22cf000)                          = 0x22cf000
brk(0x22d0000)                          = 0x22d0000
brk(0x22d1000)                          = 0x22d1000
brk(0x22d2000)                          = 0x22d2000
read(3, "ost\nmodule\tMAC-SAMI//\t\tINTERNAL\t"..., 4096) = 4096
brk(0x22d3000)                          = 0x22d3000
brk(0x22d4000)                          = 0x22d4000
brk(0x22d5000)                          = 0x22d5000
brk(0x22d6000)                          = 0x22d6000
brk(0x22d7000)                          = 0x22d7000
read(3, "112//\t\tINTERNAL\t\tIBM1112\t\t1\nmodu"..., 4096) = 4096
brk(0x22d8000)                          = 0x22d8000
brk(0x22d9000)                          = 0x22d9000
brk(0x22da000)                          = 0x22da000
brk(0x22db000)                          = 0x22db000
read(3, "s\tCP9448//\t\tIBM9448//\nalias\tCSIB"..., 4096) = 3105
brk(0x22dc000)                          = 0x22dc000
brk(0x22dd000)                          = 0x22dd000
brk(0x22de000)                          = 0x22de000
brk(0x22df000)                          = 0x22df000
brk(0x22e0000)                          = 0x22e0000
read(3, "", 4096)                       = 0
close(3)                                = 0
getuid()                                = 1000
getgid()                                = 100
geteuid()                               = 1000
getegid()                               = 100
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
ioctl(-1, TIOCGPGRP, 0x7ffeb0114fac)    = -1 EBADF (Bad file descriptor)
sysinfo({uptime=123375, loads=[111072, 111552, 113056], totalram=33596346368, freeram=2225717248, sharedram=960450560, bufferram=2764800, totalswap=2147479552, freeswap=865595392, procs=2088, totalhigh=0, freehigh=0, mem_unit=1}) = 0
rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGTSTP, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTSTP, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGTTIN, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTIN, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGTTOU, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTOU, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
uname({sysname="Linux", nodename="gaia", ...}) = 0
brk(0x22e4000)                          = 0x22e4000
brk(0x22e6000)                          = 0x22e6000
brk(0x22e8000)                          = 0x22e8000
brk(0x22e9000)                          = 0x22e9000
brk(0x22ea000)                          = 0x22ea000
brk(0x22eb000)                          = 0x22eb000
brk(0x22ec000)                          = 0x22ec000
brk(0x22ed000)                          = 0x22ed000
brk(0x22ee000)                          = 0x22ee000
brk(0x22ef000)                          = 0x22ef000
brk(0x22f0000)                          = 0x22f0000
brk(0x22f1000)                          = 0x22f1000
brk(0x22f2000)                          = 0x22f2000
brk(0x22f3000)                          = 0x22f3000
newfstatat(AT_FDCWD, "/home/hexa/git/nixos/firefox", {st_mode=S_IFDIR|0755, st_size=598, ...}, 0) = 0
newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=598, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home", {st_mode=S_IFDIR|0755, st_size=8, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home/hexa", {st_mode=S_IFDIR|0700, st_size=26128, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home/hexa/git", {st_mode=S_IFDIR|0755, st_size=946, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home/hexa/git/nixos", {st_mode=S_IFDIR|0755, st_size=748, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home/hexa/git/nixos/firefox", {st_mode=S_IFDIR|0755, st_size=598, ...}, 0) = 0
newfstatat(AT_FDCWD, "/home/hexa", {st_mode=S_IFDIR|0700, st_size=26128, ...}, 0) = 0
getpid()                                = 564851
getppid()                               = 564848
brk(0x22f4000)                          = 0x22f4000
getpid()                                = 564851
getppid()                               = 564848
getpid()                                = 564851
getppid()                               = 564848
brk(0x22f5000)                          = 0x22f5000
brk(0x22f6000)                          = 0x22f6000
brk(0x22fa000)                          = 0x22fa000
brk(0x22fe000)                          = 0x22fe000
getpgrp()                               = 564848
ioctl(2, TIOCGPGRP, [564848])           = 0
rt_sigaction(SIGCHLD, {sa_handler=0x449a30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, 8) = 0
prlimit64(0, RLIMIT_NPROC, NULL, {rlim_cur=128087, rlim_max=128087}) = 0
brk(0x22ff000)                          = 0x22ff000
brk(0x2300000)                          = 0x2300000
brk(0x2301000)                          = 0x2301000
brk(0x2302000)                          = 0x2302000
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
brk(0x2303000)                          = 0x2303000
brk(0x2304000)                          = 0x2304000
openat(AT_FDCWD, "./result/bin/firefox", O_RDONLY) = 3
newfstatat(AT_FDCWD, "./result/bin/firefox", {st_mode=S_IFREG|0555, st_size=12103, ...}, 0) = 0
ioctl(3, TCGETS, 0x7ffeb0114f50)        = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR)                   = 0
read(3, "#! /nix/store/dndi916j6yxzfzzj2s"..., 80) = 80
lseek(3, 0, SEEK_SET)                   = 0
prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=512*1024}) = 0
fcntl(255, F_GETFD)                     = -1 EBADF (Bad file descriptor)
dup2(3, 255)                            = 255
close(3)                                = 0
fcntl(255, F_SETFD, FD_CLOEXEC)         = 0
fcntl(255, F_GETFL)                     = 0x8000 (flags O_RDONLY|O_LARGEFILE)
newfstatat(255, "", {st_mode=S_IFREG|0555, st_size=12103, ...}, AT_EMPTY_PATH) = 0
lseek(255, 0, SEEK_CUR)                 = 0
brk(0x2306000)                          = 0x2306000
brk(0x2307000)                          = 0x2307000
read(255, "#! /nix/store/dndi916j6yxzfzzj2s"..., 8172) = 8172
brk(0x2308000)                          = 0x2308000
brk(0x2309000)                          = 0x2309000
brk(0x230a000)                          = 0x230a000
brk(0x230b000)                          = 0x230b000
brk(0x230c000)                          = 0x230c000
brk(0x230e000)                          = 0x230e000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
read(255, "PATH#':'}\nLD_LIBRARY_PATH=${LD_L"..., 8172) = 3931
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
brk(0x2312000)                          = 0x2312000
brk(0x2310000)                          = 0x2310000
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f198010cc40}, 8) = 0
rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, {sa_handler=0x449a30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f198010cc40}, 8) = 0
execve("/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1/bin/.firefox-old", ["/nix/store/h0gn7ynv2fgr9y68kviz9"..., "-P"], 0x2300010 /* 88 vars */) = 0
brk(NULL)                               = 0x557aae526000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f84072dd000
access("/etc/ld-nix.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib", {st_mode=S_IFDIR|0555, st_size=438, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib", {st_mode=S_IFDIR|0555, st_size=470, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib", {st_mode=S_IFDIR|0555, st_size=152, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib", {st_mode=S_IFDIR|0555, st_size=120, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib", {st_mode=S_IFDIR|0555, st_size=106, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib", {st_mode=S_IFDIR|0555, st_size=108, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib", {st_mode=S_IFDIR|0555, st_size=88, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib", {st_mode=S_IFDIR|0555, st_size=208, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib", {st_mode=S_IFDIR|0555, st_size=966, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib", {st_mode=S_IFDIR|0555, st_size=1108, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib", {st_mode=S_IFDIR|0555, st_size=760, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib", {st_mode=S_IFDIR|0555, st_size=502, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib", {st_mode=S_IFDIR|0555, st_size=248, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib", {st_mode=S_IFDIR|0555, st_size=294, ...}, 0) = 0
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1ped-98.0.1/lib", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v3/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v3", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v2/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/glibc-hwcaps/x86-64-v2", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/tls", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/haswell", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
newfstatat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/x86_64", 0x7ffea7f27b10, 0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220{\0\0\0\0\0\0"..., 832) = 832
pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\237\f\254\376,\177Jy\314u\35\316%w\303\227"..., 68, 824) = 68
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=140064, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 127384, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f84072bd000
mmap(0x7f84072c4000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f84072c4000
mmap(0x7f84072d2000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f84072d2000
mmap(0x7f84072d7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19000) = 0x7f84072d7000
mmap(0x7f84072d9000, 12696, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f84072d9000
close(3)                                = 0
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\21\0\0\0\0\0\0"..., 832) = 832
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=18528, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f84072bb000
mmap(NULL, 16528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f84072b6000
mmap(0x7f84072b7000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f84072b7000
mmap(0x7f84072b8000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f84072b8000
mmap(0x7f84072b9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f84072b9000
close(3)                                = 0
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\361\0\0\0\0\0\0"..., 832) = 832
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=1413688, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 1310744, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8407175000
mmap(0x7f8407184000, 618496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f8407184000
mmap(0x7f840721b000, 626688, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa6000) = 0x7f840721b000
mmap(0x7f84072b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13e000) = 0x7f84072b4000
close(3)                                = 0
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3402\0\0\0\0\0\0"..., 832) = 832
newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=112336, ...}, AT_EMPTY_PATH) = 0
mmap(NULL, 103120, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f840715b000
mprotect(0x7f840715e000, 86016, PROT_NONE) = 0
mmap(0x7f840715e000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f840715e000
mmap(0x7f840716f000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f840716f000
mmap(0x7f8407173000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f8407173000
close(3)                                = 0
openat(AT_FDCWD, "/nix/store/kxqqbyxf4w0bg4n2ip1qq3kr5bw4hdq0-systemd-249.7/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/myisvl040ghp0glmmsgc2pxi6kmc82s3-libva-2.13.0/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/n7m5fj8m51w8z2pc43czpy4hbz70l62w-mesa-21.3.7/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/xcymskzr8cbic0ihxcrkgdj621cji4ai-libnotify-0.7.9/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hhl2r747f7nlizsi413kv0hqrk7gb5gr-libXScrnSaver-1.2.3/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/k86zwvkmx37n5gmr52fg87cd9qbfbk3a-cups-2.4.1-lib/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/sa6nc9dc4krgj7g21qdkq4a89lnp1svb-pciutils-3.7.0/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5iyg35qcfkc35cw9mymm1v3118yv0z2f-pipewire-0.3.48-lib/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/dhvpqh139b55wqlqgw7fwzqrjp58pw1f-ffmpeg-4.4.1/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/5sxcmklgrgl7lsij8bp9a98iws4q8fw0-libkrb5-1.19.2/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/aq1sj4357pbx1drklj0mp0i87fq1zrkl-libglvnd-1.4.0/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/m45c5m1av0v1hazy1838ggd2l7k3gv9x-libpulseaudio-14.2/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/hjh8ldi38i64b35zkf5bmpqj2zxs0ybw-alsa-lib-1.2.6.1/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/qrrxach47c1bhxh97nibb9lyd2fg9j18-pipewire-0.3.48-jack/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/q29bwjibv9gi9n86203s38n0577w09sx-glibc-2.33-117/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320x\2\0\0\0\0\0"..., 832) = 832
pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784
pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\200\0\300\4\0\0\0\1\0\0\0\0\0\0\0", 32, 848) = 32
pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0'\216\27d\301\6\247\325X\310\24\323\210S\343\243"..., 68, 880) = 68
newfstatat(3, "", {st_mode=S_IFREG|0555, st_size=2141272, ...}, AT_EMPTY_PATH) = 0
pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784
mmap(NULL, 1917264, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8406f86000
mmap(0x7f8406fac000, 1384448, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f8406fac000
mmap(0x7f84070fe000, 319488, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x178000) = 0x7f84070fe000
mmap(0x7f840714c000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c5000) = 0x7f840714c000
mmap(0x7f8407152000, 33104, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8407152000
close(3)                                = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8406f84000
arch_prctl(ARCH_SET_FS, 0x7f8406f84f80) = 0
mprotect(0x7f840714c000, 12288, PROT_READ) = 0
mprotect(0x7f8407173000, 4096, PROT_READ) = 0
mprotect(0x7f84072b4000, 4096, PROT_READ) = 0
mprotect(0x7f84072b9000, 4096, PROT_READ) = 0
mprotect(0x7f84072d7000, 4096, PROT_READ) = 0
mprotect(0x557aadfea000, 40960, PROT_READ) = 0
mprotect(0x7f840730e000, 8192, PROT_READ) = 0
set_tid_address(0x7f8406f85250)         = 564851
set_robust_list(0x7f8406f85260, 24)     = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f84072c4660, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f84072cfee0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7f84072c4700, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f84072cfee0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8406e84000
munmap(0x7f8406e84000, 1048576)         = 0
mmap(NULL, 2093056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8406d85000
munmap(0x7f8406d85000, 503808)          = 0
munmap(0x7f8406f00000, 540672)          = 0
mmap(0x7f8406e01000, 1044480, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8406e01000
mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8406d00000
mmap(0x7f8406d02000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8406d02000
mmap(0x7f8406dff000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8406dff000
mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f84064ff000
mprotect(0x7f8406500000, 8388608, PROT_READ|PROT_WRITE) = 0
getrandom("\x2b\x85\x82\xb1\x1c\x86\x84\xa2", 8, GRND_NONBLOCK) = 8
getrandom("\xc9\x7b\xf9\xf1\x26\x23\xe4\xad", 8, GRND_NONBLOCK) = 8
rt_sigprocmask(SIG_BLOCK, ~[], [], 8)   = 0
clone(child_stack=0x7f8406cfeef0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[564852], tls=0x7f8406cff640, child_tidptr=0x7f8406cff910) = 564852
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
futex(0x7f8406cff910, FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME, 564852, NULL, FUTEX_BITSET_MATCH_ANY) = 0
gettid()                                = 564851
gettid()                                = 564851
gettid()                                = 564851
gettid()                                = 564851
readlink("/proc/self/exe", "/nix/store/h0gn7ynv2fgr9y68kviz9"..., 4095) = 75
openat(AT_FDCWD, "/nix/store/h0gn7ynv2fgr9y68kviz9rg414429gz8-firefox-98.0.1/bin/dependentlibs.list", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "Couldn't load XPCOM.\n", 21Couldn't load XPCOM.
)  = 21
gettid()                                = 564851
gettid()                                = 564851
gettid()                                = 564851
exit_group(255)                         = ?
+++ exited with 255 +++

This error doesn't appear un the unwrapped build, so this seems to something we need to fix on the wrapper. I'm basically clueless about the wrapper.:shrug:

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

This suggests it might be caused by nss in some way: https://bbs.archlinux.org/viewtopic.php?id=116442

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

22291e3d58085ad8702be0ba8dac3637ec44ee3c broke firefox-bin's wrapper, that might be the issue here too.

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

Speedometer results:

firefox-bin: 173
firefox: 176

@mweinelt
Copy link
Member Author

I didn't see any speedup from pgo, probably started the wrong binary 😮

@Kranzes
Copy link
Member

Kranzes commented Mar 22, 2022

I believe you need to delete the mozilla/firefox folder before every test for it to be accurate

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

Creating a new profile is a less nuclear way to achieve the same.

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

It wasn't necessary in my case though.

@mweinelt
Copy link
Member Author

Indeed creating a new profile was required in my case. Up from 122 to 149. 🥳

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

Note that this discrepancy might be caused by adblockers and other addons.

On my main profile, I get much lower scores (~140 instead of ~170).

@Atemu
Copy link
Member

Atemu commented Mar 22, 2022

Oh that's an interesting thought, what if we profiled web page loading with an ublock enabled? Would that lead to better results with ublock in the web?

@mweinelt
Copy link
Member Author

22291e3 broke firefox-bin's wrapper, that might be the issue here too.

Can't say that I can confirm that statement. The wrapper works for me over in #165161,

@mweinelt mweinelt marked this pull request as ready for review March 27, 2022 02:02
@mweinelt
Copy link
Member Author

I consider this ready for a final round of review and of course tests.

Tested on

  • Firefox 98.0.2
  • Firefox 91.7.1esr

Disabled PGO on

  • Thunderbird: Wants to connect to the internet
  • Librewolf: Gets stuck during profiling, doesn't terminate
  • Firefox (aarch64-linux): Gets stuck during profiling, doesn't terminate

pkgs/applications/networking/browsers/firefox/common.nix Outdated Show resolved Hide resolved
@@ -199,6 +205,7 @@ buildStdenv.mkDerivation ({
which
wrapGAppsHook
]
++ lib.optionals pgoSupport [ xvfb-run ]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
++ lib.optionals pgoSupport [ xvfb-run ]
++ lib.optional pgoSupport xvfb-run

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really prefer optionals as it makes it easier to add further items to the list when necessary.

pkgs/applications/networking/browsers/firefox/common.nix Outdated Show resolved Hide resolved
Lo and behold, we're finally catching up with Mozillas very own firefox
build in terms of speed.

PGO is an optimization technique in which in a first step we create a
build that supports instrumentation, meaning we can use it to create a
profile of how the browser behaved during usage. Then in a second pass
we create the final build that uses the acquired profiling data to
optimize the browser for the workload it actually received during
profiling.

The downside is that with PGO we now need to build Firefox twice, which
increases the build time from around 20 minutes to roughly 50 minutes.

In the Speedometer 2.0 benchmark multiple tests could see a
responsiveness improvemeant around 20-25%, which makes the increased
build time well worth it.

Sadly this benefit seems limited to x86_64-linux, builds on
aarch64-linux get stuck during profiling and I haven't found out why.

Finally, after a long time, we can say:

Closes: NixOS#76484
Supersedes: NixOS#129503
Tries to connect out to the internet, so sorry, no pgo for thunderbird.

> console.warn: feeds: "downloadFeed: network connection unavailable"
Starts profiling, starts librewolf, but gets stuck and never terminates.
Both LTO and PGO require the use of clang so I think its easier to just
stick with clang for all builds, so PGO and LTO could in theory be used
without each other.
@yu-re-ka yu-re-ka merged commit 2cb9593 into NixOS:master Mar 28, 2022
yu-re-ka pushed a commit that referenced this pull request Mar 28, 2022
@mweinelt mweinelt deleted the firefox-pgo branch March 28, 2022 19:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet