blob: 506ca62a8a6b511eb3c8ef84b0445645615867d4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(link_cfg)]
#[link(name = "native_dep_1", kind = "static", cfg(should_add))]
extern "C" {}
#[link(name = "native_dep_2", kind = "static", cfg(should_not_add))]
extern "C" {}
#[no_mangle]
pub fn rust_dep() {}
|