libafl_qemu_sys 0.11.0

C to Rust bindings for the LibAFL QEMU bridge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod host_specific {
    #[cfg(target_os = "linux")]
    include!("build_linux.rs");

    #[cfg(not(target_os = "linux"))]
    pub fn build() {
        println!("cargo:warning=libafl_qemu_sys only builds on Linux hosts ATM");
    }
}

fn main() {
    host_specific::build();
}