diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-03-01 11:51:15 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-03-01 11:51:15 +0100 |
commit | 59b80cb01e49804f1b6fabffa36514bb6a6a4fea (patch) | |
tree | 8b2e4818722a0d9bf8419c95552b0cb9f1a9d513 /gcc_plugin | |
parent | d946be29b9a15a28f5b19bd6abc01d2ca0ed44ba (diff) | |
download | afl++-59b80cb01e49804f1b6fabffa36514bb6a6a4fea.tar.gz |
fix #218 for GCC plugin
Diffstat (limited to 'gcc_plugin')
-rw-r--r-- | gcc_plugin/afl-gcc-fast.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc_plugin/afl-gcc-fast.c b/gcc_plugin/afl-gcc-fast.c index 91b786ba..a57f48d3 100644 --- a/gcc_plugin/afl-gcc-fast.c +++ b/gcc_plugin/afl-gcc-fast.c @@ -41,6 +41,7 @@ static u8* obj_path; /* Path to runtime libraries */ static u8** cc_params; /* Parameters passed to the real CC */ static u32 cc_par_cnt = 1; /* Param count, including argv0 */ u8 use_stdin = 0; /* dummy */ +u8 be_quiet; /* Try to find the runtime libraries. If that fails, abort. */ |