# Debian packaging requires libs in /usr/lib/x86_64-linux-gnu :/
if command -v dpkg-architecture &>/dev/null; then
DL+=("/usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)")
fi
When i try to execute dpkg-architecture i get:
$ dpkg-architecture
-bash: dpkg-architecture: command not found
So i have an error in gs_find_so, so this function cant find shared libs in /usr/lib/x86_64-linux-gnu
I fixed this error with:
$ sudo apt install dpkg-dev
But it would be great if the program reported the absence of dpkg-architecture, or ideally if it was installed together with gsocket!
I use Debian via wsl2. I installed gsocket via:
And get an error:
But i have gsocket_uchroot_dso.so.0 in /usr/lib/x86_64-linux-gnu So I started reading the code and find this in gs_funcs:
In function gs_find_so i found:
When i try to execute dpkg-architecture i get:
So i have an error in gs_find_so, so this function cant find shared libs in /usr/lib/x86_64-linux-gnu I fixed this error with:
But it would be great if the program reported the absence of dpkg-architecture, or ideally if it was installed together with gsocket!