I am trying to use the NDK to link in a Rust-written shared library with the aarch64-linux-android
architecture. When compiled for this target, cargo comes up with a long dump, followed by:
= note: lld: error: unable to find library -llog
I search all over the internet and on my computer but can't find liblog.a
I even tried to make my own dummy liblog.a that did nothing, but the android app crashes at runtime with a null-pointer exception.
How can I shut the compiler up, or link in the android log library?