scope-local 0.1.0

Scope local storage
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::Path;

fn main() {
    if cfg!(target_os = "linux") {
        let ld_script_path = Path::new(std::env!("CARGO_MANIFEST_DIR")).join("percpu.x");
        println!("cargo::rerun-if-changed={}", ld_script_path.display());
        println!("cargo::rustc-link-arg-tests=-no-pie");
        println!("cargo::rustc-link-arg-tests=-T{}", ld_script_path.display());
    }
}