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 android 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?