DllNotFoundException error message doesn't account for musl libc #12577
Labels
area-Interop-coreclr
help wanted
[up-for-grabs] Good issue for external contributors
os-linux
Linux OS (any supported distro)
Milestone
Currently, when there is a problem loading a library on linux, you get a
System.DllNotFoundException
with the following text:LD_DEBUG
is something implemented in the glibc dynamic loader. If you're on a distro like Alpine, then you're using the musl libc dynamic loader, and it doesn't implement support forLD_DEBUG
.The error message is misleading in that case because setting
LD_DEBUG
doesn't do anything.The text was updated successfully, but these errors were encountered: