Hi,
I am trying to prepare a shared library using another shared library.
but the second shared library does not contian the definations of funtions which are defined in first shared library.
lets say i have libfirst.so. in this there are no undefined functions.
while creating libsecond.so, i am linking the libfirst.so using -lfirst, there is no probelm in creating libsecond.so.
but when try to compile some applictions which use libsecond.so i am getting undefined reference to some functions in libsecond.so which are actually part of libfirst.so.
please help me , am i missing some thing or is there any other procedure i need to follow in creating libsecond.so