#target-triple #command-line-tool #default #compiler #llvm #print #find

app default-target

A command line tool to print the current default Clang/LLVM target triple

1 unstable release

0.1.0 Jul 16, 2021

#1613 in Development tools

Download history 38/week @ 2023-12-04 53/week @ 2023-12-11 42/week @ 2023-12-18 35/week @ 2023-12-25 45/week @ 2024-01-01 84/week @ 2024-01-08 45/week @ 2024-01-15 18/week @ 2024-01-22 22/week @ 2024-01-29 35/week @ 2024-02-05 33/week @ 2024-02-12 38/week @ 2024-02-19 44/week @ 2024-02-26 55/week @ 2024-03-04 105/week @ 2024-03-11 193/week @ 2024-03-18

400 downloads per month

MIT license

6KB

default-target

A command line tool to print the current default Clang/LLVM target triple.

The LLVM ecosystem names compiler targets as target triples, made up of three to five parameters describing the target system.

This crate is a small binary program that returns the default target triple for your current Rust installation. This program is useful if you want to write shell scripts or other simple programs that are aware of your Rust installation's default target.

You can find default-target's crate metadata on crates.io, documentation on docs.rs, and source code on GitHub.

Installation

Run this command in your shell to install default-target.

cargo install default-target

Usage

Once default-target has been installed in your path, you can run:

default-target

and it should return your target. Something like: x86_64-apple-darwin or x86_64-unknown-linux-gnu.

No runtime deps