public class Foo {
static {
System.loadLibrary("lib1");
System.loadLibrary("lib2");
}
public static void main(String[] args) {
//...
}
}
Getting a ULE on lib2 load for a public static bool member field that's defined in the lib1's bss section according to nm. Both are shared libraries. lib1 successfully loads according to Xlog:library=info. Any ideas what can be causing this?