Crates.io | target-lexicon-macros |
lib.rs | target-lexicon-macros |
version | 0.1.0-alpha.1 |
source | src |
created_at | 2022-07-08 16:57:07.67197 |
updated_at | 2022-07-08 16:57:07.67197 |
description | Macros for target-lexicon |
homepage | |
repository | https://github.com/morr0ne/target-lexicon-macros |
max_upload_size | |
id | 622001 |
size | 41,676 |
Provides a triple
macro to construct static a target-lexicon Triple.
use target_lexicon::Triple;
use target_lexicon_macros::triple;
const TARGET: Triple = triple!("x86_64-unknown-linux-gnu")
fn main() {
dbg!(TARGET);
}