mirror of
https://gitee.com/openharmony/third_party_rust_signal-hook
synced 2024-11-30 10:00:26 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
|
#[cfg(feature = "extended-siginfo-raw")]
|
||
|
fn main() {
|
||
|
cc::Build::new()
|
||
|
.file("src/low_level/extract.c")
|
||
|
.compile("extract");
|
||
|
}
|
||
|
|
||
|
#[cfg(not(feature = "extended-siginfo-raw"))]
|
||
|
fn main() {}
|