s1341

Results 164 comments of s1341

I've also had success dividing the corpus across cores... ```rust if state.must_load_initial_inputs() { for input_dir in &opt.input { let sample_list: Vec = input_dir .read_dir() .expect("Couldn't read input dir") .collect(); let...

try cleaning with `cargo clean` before building with r22b.

you can try bumping the frida-gum/frida-gum-sys versions to the latest frida-rust version.

why are you trying to include `/usr/include/pthread.h`. You should be including an android specific header. Did you set your linker path in a `.cargo/config.toml` file?

also, please put the fully qualified path in `CLANG_PATH`...

Looks like a linker error. I don't know why clang can't find libunwind. Maybe strace the compilation to try to see where it looks for it?

I didn't use a Dockerfile. I used the anrdoid toolchain on nixos.

I don't know what the last issue is, but the `__clear_cache` issue is real - it results from rust (or clang) not linking `clang_rt.builtins..o` into the final bulid. I was...

https://github.com/rust-lang/compiler-builtins/issues/468