Skip to content

Library for getting the so-called "host triple" of rustc.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

JohnScience/rustc-host

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rustc-host

crates.io crates.io

Combined crate (library + binary) for getting the so-called "host triple" of rustc.

Usage as a library

Add this to your Cargo.toml:

[dependencies]
rustc-host = "0.1"

after that you can use it like this:

extern crate rustc_host;

fn main() {
    let host_triple = rustc_host::from_cli()
        .expect("failed to get host triple from rustc");
    println!("host triple: {}", host_triple);
}

Usage as a binary

Installation

cargo install rustc-host

Usage

rustc-host

Example output

x86_64-pc-windows-msvc

Features

  • unsafe - disabled by default, enables unsafe code that reuses the String buffer obtained from rustc -Vv instead of allocating a new one.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Library for getting the so-called "host triple" of rustc.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages