first version of persistent QEMU

This commit is contained in:
Andrea Fioraldi
2019-09-12 12:34:53 +02:00
parent df379dfcf4
commit 6b40189045
17 changed files with 408 additions and 60 deletions

View File

@ -334,11 +334,15 @@ static void edit_params(u32 argc, char** argv) {
int main(int argc, char** argv) {
if (argc == 2 && strcmp(argv[1], "-h") == 0) {
printf("afl-cc" VERSION" by <lcamtuf@google.com>\n\n");
printf("afl-cc" VERSION " by <lcamtuf@google.com>\n\n");
printf("%s \n\n", argv[0]);
printf("afl-gcc has no command line options\n");
printf("NOTE: afl-gcc is deprecated, llvm_mode is much faster and has more options\n");
printf(
"NOTE: afl-gcc is deprecated, llvm_mode is much faster and has more "
"options\n");
return -1;
}
if (isatty(2) && !getenv("AFL_QUIET")) {