linking vbox lib with android lib
I am trying to use vbox hgcm (ring-3)
from android
. I have created a c file containing hgcm connect, disconnect, and call functions and compiled it (on ubuntu) for vbox.
I have to create another shared object for android which will use the vbox lib (created above) using dlopen/dlsym. My call to dlopen is getting failed with error:
cannot load library: link_image [2033]. failed to link <my_so_file_name>
I believe that androi开发者_如何学JAVAd uses a different linker (bionic), and so directly linking the above two is giving me an error.
Any idea on how to fix it or any other approach for doing the same?
精彩评论