Bit of background: I have some C code
I need to crosscompile onto a mips64-linux
target from an i686-linux
host, I only have a shared object library on the target (cross compiling the libraries on the host proved a challenge).
Is it possible and how would one go about linking the shared object when compiling on the host so that it would successfully use the shared object library on the target when executed?
Many thanks!