I have a codec engine server.
I have included my codec that inherits ti.sdo.ce.vidanalytics.IVIDANALYTICS.
I dynamically load a .so that has a VIDANALYTICS call into my executable and it complains about undefined symbol: VIDANALYTICS_delete.
Shouldn't including my codec automatically tell the server build that it needs to include the VIDANALYTICS library?
Or has it included the library but I need to add a linking flag so the dynamic load can find the symbols?
I had to add -rdynamic to my executable build so the dynamic .so library could find it's symbols in the dynamic symbol table.
Any ideas how the VIDANALYTICS library gets pulled in?
Edit:
Well adding my codec does add vidanalytics.av5t library to my linker.cmd.
I just need to work out how to make my server build allow dynamic symbol look up?!?
Matt