9 lines
206 B
Rust
9 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() {}
|