denzp / rustc-llvm-proxy

Proxy LLVM calls into Rust own shared library in runtime
MIT License
32 stars 13 forks source link

Use `libLLVM` instead of `librustc_codegen_llvm` #7

Closed denzp closed 4 years ago

denzp commented 5 years ago

Using the libLLVM gives at least some guarantees as long as the library is shipped with Rust ;)

Former approach with relying on librustc_codegen_llvm will soon become impossible: https://github.com/rust-lang/rust/pull/59752

Fixes #1