How to tell the LLVM interpreter (`lli`) where the missing symbols are as I do when linking?
I have exported Rust code to a LLVM-IR (.ll
) file and was able to compile and link it manually using both, clang
and llc
+ link.exe
. It required to link against a lot of system libraries, Rust libraries and a temporary generated .o
file from Rust. I am developing on Windows.