
* harness.cc for win * no backtrace for frida_gum * build.rs message * cfg guards * at least libafl_frida builds with cfg guards * fuzzer.rs builds on win * clean up * build instructions * ps * fix * clang * fix * article * static option to make it run on powershell * vscode build instructions * dllexport! * fix * build.rs * fix & fmt * message * msys not necessary anymore * Update README.md Co-authored-by: Dominik Maier <domenukk@gmail.com>
10 lines
195 B
Rust
10 lines
195 B
Rust
// build.rs
|
|
|
|
fn main() {
|
|
cc::Build::new().file("src/gettls.c").compile("libgettls.a");
|
|
|
|
// Force linking against libc++
|
|
#[cfg(unix)]
|
|
println!("cargo:rustc-link-lib=dylib=c++");
|
|
}
|