diff options
-rw-r--r-- | GNUmakefile | 2 | ||||
-rw-r--r-- | TODO.md | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index e2d7314f..7ed892ab 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -56,8 +56,10 @@ endif ifneq "$(shell uname)" "Darwin" ifeq "$(shell echo 'int main() {return 0; }' | $(CC) $(CFLAGS) -Werror -x c - -march=native -o .test 2>/dev/null && echo 1 || echo 0 ; rm -f .test )" "1" + ifndef SOURCE_DATE_EPOCH #CFLAGS_OPT += -march=native SPECIAL_PERFORMANCE += -march=native + endif endif # OS X does not like _FORTIFY_SOURCE=2 CFLAGS_OPT += -D_FORTIFY_SOURCE=2 diff --git a/TODO.md b/TODO.md index ad743b6b..8522b06d 100644 --- a/TODO.md +++ b/TODO.md @@ -2,17 +2,13 @@ ## Roadmap 2.67+ - - -i - + foreign fuzzer sync support: scandir with time sort - expand on AFL_LLVM_INSTRUMENT_FILE to also support sancov allowlist format - AFL_MAP_SIZE for qemu_mode and unicorn_mode - - namespace for targets? e.g. network - - learn from honggfuzz (mutations, maybe ptrace?) - CPU affinity for many cores? There seems to be an issue > 96 cores ## Further down the road afl-fuzz: - - ascii_only mode for mutation output - or use a custom mutator for this? - setting min_len/max_len/start_offset/end_offset limits for mutation output llvm_mode: |