2021-08-30 11:54:12 +02:00
|
|
|
use std::io::Write;
|
|
|
|
|
|
2024-05-29 15:01:33 +10:00
|
|
|
#[link(
|
|
|
|
|
name = "c_static_lib_with_constructor",
|
|
|
|
|
kind = "static",
|
|
|
|
|
modifiers = "-bundle,+whole-archive"
|
|
|
|
|
)]
|
|
|
|
|
extern "C" {}
|
2021-08-30 11:54:12 +02:00
|
|
|
|
|
|
|
|
pub fn hello() {
|
|
|
|
|
print!("native_lib_in_src.");
|
|
|
|
|
std::io::stdout().flush().unwrap();
|
|
|
|
|
}
|