
* start fixup of cfgs * whoops * remaining issues * maybe fixup macos * apparently that is ios code? * fix no_std * Re-enable tcp_compression * fix tcp broker * remove tcp_debug flag * fmt * clippy * less unwrap while we're at it * doc * add back pub star uses for libafl_qemu --------- Co-authored-by: Dominik Maier <dmnk@google.com>
16 lines
338 B
Rust
16 lines
338 B
Rust
#[rustversion::nightly]
|
|
fn nightly() {
|
|
println!("cargo:rustc-cfg=nightly");
|
|
}
|
|
|
|
#[rustversion::not(nightly)]
|
|
fn nightly() {}
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
println!("cargo:rustc-check-cfg=cfg(nightly)");
|
|
nightly();
|
|
#[cfg(target_env = "musl")]
|
|
println!("cargo:rustc-link-lib=ucontext");
|
|
}
|