Closed termoshtt closed 6 years ago
Thanks for reporting and I glad the crate is useful for you :)
Normally, every function fromllvm-sys
can be exported from the proxy. I whitelisted the additional modules, so the missing functions should work in 0.1.3
.
It works, thanks!
Hi, this crate is great for me :)
I met a link issue while testing a simple code generation example of LLVM:
https://github.com/termoshtt/rustc-llvm-proxy-example/blob/master/src/main.rs
https://travis-ci.org/termoshtt/rustc-llvm-proxy-example/jobs/429177101
rustc-llvm-proxy does links basic APIs e.g.
LLVMCreateBuilder
,LLVMModuleCreateWithName
, and so on, but some APIs are lacked as listed above. I guess it missing to link libLLVMExecutionEngine.a and libLLVMAnalysis.a. Is this intended behavior or bug?