0

I'm modifying a program but it throws the ULE even though the native path contains the requested libraries. I verified by printing them out. If the libraries were somehow "bad", would that cause this exception? I.e. if they can't be read, then they're not found.

Justin
  • 1
  • Does [this answer](https://stackoverflow.com/questions/6092200/how-to-fix-an-unsatisfiedlinkerror-cant-find-dependent-libraries-in-a-jni-pro) help? – jrook Mar 15 '21 at 16:31
  • It could definitely cause that exception. Are you sure the library works? – Konrad Rudolph Mar 15 '21 at 16:48
  • I'm sure it works on an Intel cpu running Ubuntu 16.04. I'm now trying on an AMD with Ubuntu 20.04. – Justin Mar 16 '21 at 14:50

1 Answers1

0

Thanks Konrad - I rebuilt the libraries and they're found now. So, incompatible libraries will cause the ULE.

Justin
  • 1