#llvm #proxy #calls #own #shared #dynamically

sys build rustc-llvm-proxy

Dynamically proxy LLVM calls into Rust own shared library

12 releases

0.2.0 Jan 2, 2020
0.1.11 Jan 2, 2020
0.1.10 Jun 17, 2019
0.1.9 Jan 26, 2019
0.1.1 Aug 19, 2018

#445 in Build Utils

Download history 5/week @ 2023-12-04 19/week @ 2023-12-11 7/week @ 2024-01-15 6/week @ 2024-02-19 33/week @ 2024-02-26 16/week @ 2024-03-04 21/week @ 2024-03-11 14/week @ 2024-03-18

84 downloads per month
Used in ptx-linker

MIT license

19KB
391 lines

Rustc LLVM Proxy

Build Status Build status Current Version Docs

Dynamically proxy LLVM calls into Rust own shared library! 🎉

Use cases

Normally there is no much need for the crate, except a couple of exotic cases:

  • Your crate is some kind build process helper that leverages LLVM (e.g. ptx-linker),
  • Your crate needs to stay up to date with Rust LLVM version (again ptx-linker),
  • You would prefer not to have dependencies on host LLVM libs (as always ptx-linker).

Usage

First, you need to make sure no other crate links your binary against system LLVM library. In case you are using llvm-sys, this can be achieved with a special feature:

[dependencies.llvm-sys]
version = "60"
features = ["no-llvm-linking", "disable-alltargets-init"]

Then all you need to do is to include the crate into your project:

[dependencies]
rustc-llvm-proxy = "0.2"
extern crate rustc_llvm_proxy;

Dependencies

~0.4–1.3MB
~22K SLoC