Static libraries and JNI / recursive libraries
Hi @all,
I've built and linked the C++ code, that's called via JNI by my Java application as a so (shared lib). This lib however, links with other libs, that are not shared but static. When I run my java application it can't resolve symbols from those libs.
What can I do to make my Java program find those symbols?
Thx

