There are two versions of the GLIBC library on my system:
- standard /usr/lib/...
- custom $HOME/usr/lib/...
When I compile any utility from sources using commands:
./configure --prefix=$HOME/usr
make
make install
it is linked with custom libraries placed in $HOME/usr/lib.
Is there a way to link it with standard GLIBC placed in /usr/lib/ but configured for installation into $HOME/usr?