Open
Description
I'm guessing this is related to bumping the minor version for the first time in a long time:
> ls -l /data/data/com.termux/files/usr/lib/libLLVM*so*
lrwxrwxrwx 1 u0_a318 u0_a318 18 Mar 9 20:46 /data/data/com.termux/files/usr/lib/libLLVM-18.so -> libLLVM.so.18.1
-rw------- 1 u0_a318 u0_a318 114521080 Mar 9 12:39 /data/data/com.termux/files/usr/lib/libLLVM.so
We build with -DLLVM_LINK_LLVM_DYLIB=ON
to make sure this shared library is included, which is then linked against by the Rust compiler and so on also. I think the relevant CMake config is here, which I notice @tstellar recently modified.