In my main source code, I defined a function named findConst(). In the same source, I'm loading a shared object (.so) using dlopen() et dlsym().
In this shared object, I have some code that use findConst() ... but unfortunately, when I run my progy, I got a lookup error :
./Selene: symbol lookup error: ./SelDirectFB.so: undefined symbol: findConst
What I need to do to solve this issue ?
Thanks