mirror of
https://gitee.com/openharmony/third_party_rust_signal-hook
synced 2024-11-30 01:50:57 +00:00
05fd96c943
To avoid problems with extra dependency, compatibility, etc.
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() {}
|