Dongdongshe / K-Scheduler

A universal seed scheduler for fuzzers (LibFuzzer and AFL havoc mode) and concolic execution engine (qsym).
MIT License
113 stars 19 forks source link

It seems not to work when set clang as below. #1

Closed Ricardo-609 closed 2 years ago

Ricardo-609 commented 2 years ago
export PATH=[path to K-Scheduler repo]/K-Scheduler/libfuzzer_integration/llvm_11.0.1/build/bin
Dongdongshe commented 2 years ago

Good catch. It's a typo. The correct command should be as follows:

export PATH=[path to K-Scheduler repo]/K-Scheduler/libfuzzer_integration/llvm_11.0.1/build/bin:$PATH
Ricardo-609 commented 2 years ago

Thanks.