Thanks to visit codestin.com
Credit goes to lib.rs

#llvm #installed #path #rustup-component

llvm-tools

Provides access to the llvm tools installed through the llvm-tools-preview rustup component

2 releases

0.1.1 Mar 23, 2019
0.1.0 Mar 23, 2019

#2079 in Filesystem

Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App

21,269 downloads per month
Used in 18 crates (7 directly)

MIT/Apache

7KB
58 lines

llvm-tools

Provides access to the llvm tools installed through the llvm-tools-preview rustup component.

Usage

Add the dependency in your Cargo.toml:

[dependencies]
llvm-tools = "0.1"

Get the path to the llvm-objcopy that is shipped with Rust:

let llvm_tools = llvm_tools::LlvmTools::new().expect("failed to find llvm-tools");
let objcopy = llvm_tools.tool(&llvm_tools::exe("llvm-objcopy"))
    .expect("llvm-objcopy not found in llvm-tools");
let mut cmd = Command::new(objcopy);
cmd.arg("");
[]

Note this only works if the user has the llvm-tools-preview rustup component installed. Else Error::NotFound is returned.

License

Licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps