In my application I have used a .so(shared object) file which is written using python c++ extension and compiled with g++ using the -c argument(to postpone the linking).
Now, I need to link two other .so files, which may be present in different folders on different machines, to the .so mentioned above(while running my application).
Any idea how I can link .so files during runtime?
Thanks in advance!