portable_link_section 0.1.0

A portable version of the #[link_section] macro.
Documentation
1
2
3
4
5
6
7
8
9
use portable_link_section::portable_link_section;

#[portable_link_section]
static FOO: i32 = 42;

#[portable_link_section]
fn foo() {}

fn main() {}