New comment by kawaiiamber on void-packages repository https://github.com/void-linux/void-packages/pull/27170#issuecomment-746887899 Comment: I could just be doing this all wrong, but, I'm really curious why it's reporting `SONAME: libc.musl-x86_64.so.1 <-> UNKNOWN PKG PLEASE FIX!` on the musl arch. I copied the info from `/etc/dotnet.sh` to my `$HOME/.zshrc` and, after exporting the `$PATH`, everything seems to work fine on my end. I ran `ldd /opt/dotnet/dotnet` and, on my musl machine, it reports ``` [amber@otaku ~]$ ldd /opt/dotnet/dotnet /lib/ld-musl-x86_64.so.1 (0x7fb35c13f000) libstdc++.so.6 => /lib/libstdc++.so.6 (0x7fb35be94000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x7fb35be7b000) libc.musl-x86_64.so.1 => /lib/ld-musl-x86_64.so.1 (0x7fb35c13f000) ``` It looks like `libc.musl-x86_64.so.1` is successfully being linked to `/lib/ld-musl-x86_64.so.1` on my end, yet is failing durring the checks. I'd love to hear others thoughts ~