[go: up one dir, main page]

linkme 0.3.8

Safe cross-platform linker shenanigans
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(feature = "used_linker", feature(used_with_arg))]

use linkme::distributed_slice;

#[distributed_slice]
pub static mut SLICE: [i32] = [..];

#[distributed_slice(BENCHMARKS)]
static mut ELEMENT: i32 = -1;

fn main() {}