I have a shared object (abc.so) that i built after linking it to a bunch of libs (.a and .so) files. Now this abc.so just exposes 3 functions.
Now i am writing a console application on linux that uses this abc.so to invoke those function. When i try to build that application,
I get a bunch of - "Undefined reference to 'xxxxxxx' " errors. Now these references go to so's that abc.so is depending on abd even go deeper for references within those so's.
I am not sure why this happens. SHouldnt it load those at the run time? Atleast thats what i thought (coming froma windows/MSVC background).
Kindly help me on this one.