I'm messing around with Linux's shared libraries and encountered strange issue. I successfully create a shared library and get librbmp.so.0 file and then symlink it getting two more files: librbmp.so and librbmp.so.0.0.1. Then I copy 'em to /usr/local/lib and run ldconfig and here I meet with a strange behaviour - one more file appears in /usr/local/lib. It's called --library=ibrbmp.so.0.0.1. What's strange, my application links to it during runtime.
Anyone know what's happening and how to force my app to link to librbmp.so?
Here's a piece of code:
//creating shared library
$(CC) -shared -Wl,-soname,-librbmp.so.0.0.1 $(OBJECTS) -o librbmp.so.0 -lc
//symlinking
ln -sf librbmp.so.0.0.1 librbmp.so.0
ln -sf librbmp.so.0.0.1 librbmp.so