I want to load xxx.so using dlopen()
, while loading It throws an error:
"Undefined Symbol "Function Name"
The Function is defined in yyy.so. While compiling I have linked yyy.so with xx.so
**Eg:
g++34 -shared -o xxx.so -L/(lib path) -lyy**
I have tried "-u" option with function name for force linking. But not able linked.
Your help is much appreciated.