mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
fix gcc_mode cmplog
This commit is contained in:
@ -18,6 +18,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
|
|||||||
to variables queue items instead of 12.
|
to variables queue items instead of 12.
|
||||||
- afl-cc:
|
- afl-cc:
|
||||||
- better handling of -fsanitize=..,...,.. lists
|
- better handling of -fsanitize=..,...,.. lists
|
||||||
|
- fix gcc_mode cmplog
|
||||||
- obtain the map size of a target with setting AFL_DUMP_MAP_SIZE=1
|
- obtain the map size of a target with setting AFL_DUMP_MAP_SIZE=1
|
||||||
note that this will exit the target before main()
|
note that this will exit the target before main()
|
||||||
- qemu_mode:
|
- qemu_mode:
|
||||||
|
@ -498,13 +498,10 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
|||||||
alloc_printf("-fplugin=%s/afl-gcc-cmptrs-pass.so", obj_path);
|
alloc_printf("-fplugin=%s/afl-gcc-cmptrs-pass.so", obj_path);
|
||||||
cc_params[cc_par_cnt++] = fplugin_arg;
|
cc_params[cc_par_cnt++] = fplugin_arg;
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
fplugin_arg = alloc_printf("-fplugin=%s/afl-gcc-pass.so", obj_path);
|
|
||||||
cc_params[cc_par_cnt++] = fplugin_arg;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fplugin_arg = alloc_printf("-fplugin=%s/afl-gcc-pass.so", obj_path);
|
||||||
|
cc_params[cc_par_cnt++] = fplugin_arg;
|
||||||
cc_params[cc_par_cnt++] = "-fno-if-conversion";
|
cc_params[cc_par_cnt++] = "-fno-if-conversion";
|
||||||
cc_params[cc_par_cnt++] = "-fno-if-conversion2";
|
cc_params[cc_par_cnt++] = "-fno-if-conversion2";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user