aboutsummaryrefslogtreecommitdiffstats
path: root/security/afl++/files/patch-GNUmakefile.llvm
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-12-01 03:19:41 +0000
committerLexi Winter <ivy@FreeBSD.org>2025-12-01 03:19:41 +0000
commit2e80774d0b20d167bc0a9e2b63dafbfb171c0d22 (patch)
tree25f0138e1af8902b92dacc8cce09b267447c17db /security/afl++/files/patch-GNUmakefile.llvm
parentf85f2b2d6e5b7ed869376eb4b180c3a74a5c5da9 (diff)
parent1a30da80670973368b399f2b01fe9c04b91a1273 (diff)
Merge remote-tracking branch 'freebsd/main' into lf/mainlf/main
Diffstat (limited to 'security/afl++/files/patch-GNUmakefile.llvm')
-rw-r--r--security/afl++/files/patch-GNUmakefile.llvm20
1 files changed, 0 insertions, 20 deletions
diff --git a/security/afl++/files/patch-GNUmakefile.llvm b/security/afl++/files/patch-GNUmakefile.llvm
deleted file mode 100644
index 8642167f99eb..000000000000
--- a/security/afl++/files/patch-GNUmakefile.llvm
+++ /dev/null
@@ -1,20 +0,0 @@
---- GNUmakefile.llvm.orig 2025-06-28 20:29:37 UTC
-+++ GNUmakefile.llvm
-@@ -554,6 +554,9 @@ test_build: $(PROGS)
-
- .PHONY: test_build
- test_build: $(PROGS)
-+ifdef AFL_NO_TEST_BUILD
-+ @echo "[*] Not testing the CC wrapper and instrumentation output (AFL_NO_TEST_BUILD set)."
-+else
- @echo "[*] Testing the CC wrapper and instrumentation output..."
- unset AFL_USE_ASAN AFL_USE_MSAN AFL_INST_RATIO AFL_LLVM_ALLOWLIST AFL_LLVM_DENYLIST; ASAN_OPTIONS=detect_leaks=0 AFL_QUIET=1 AFL_PATH=. AFL_LLVM_LAF_ALL=1 ./afl-cc $(CFLAGS) $(CPPFLAGS) ./test-instr.c -o test-instr $(LDFLAGS)
- ifdef IS_IOS
-@@ -564,6 +567,7 @@ endif
- @rm -f test-instr
- @cmp -s .test-instr0 .test-instr1; DR="$$?"; rm -f .test-instr0 .test-instr1; if [ "$$DR" = "0" ]; then echo; echo "Oops, the instrumentation does not seem to be behaving correctly!"; echo; echo "Please post to https://github.com/AFLplusplus/AFLplusplus/issues to troubleshoot the issue."; echo; exit 1; fi
- @echo "[+] All right, the instrumentation seems to be working!"
-+endif
-
- .PHONY: all_done
- all_done: test_build