I am building a Java application that uses a shared library written in C++ and compiled for different operating systems. The problem is, that this shared library itself depe
I concur with the other posters about the use of dlopen and LoadLibrary. The libltdl gives you a platform-independent interface to these functions.