target-lexicon-macros 0.1.0-alpha.1

Macros for target-lexicon
Documentation

Macros for target-lexicon

Provides a triple macro to construct static a target-lexicon Triple.

Example

use target_lexicon::Triple;
use target_lexicon_macros::triple;

const TARGET: Triple = triple!("x86_64-unknown-linux-gnu")

fn main() {
    dbg!(TARGET);
}