about summary refs log tree commit diff
path: root/utils/bench/Makefile
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-02-08 12:46:00 +0100
committervanhauser-thc <vh@thc.org>2024-02-08 12:46:08 +0100
commit038fef962c3d85fe7e37fcd8717270654f927881 (patch)
tree03a7e572705e1d2ec813822b1ad09bfff1a39a2c /utils/bench/Makefile
parent42c663e7c76bd3abee2c6a84dd689bcfea3f59dc (diff)
downloadafl++-038fef962c3d85fe7e37fcd8717270654f927881.tar.gz
performance
Diffstat (limited to 'utils/bench/Makefile')
-rw-r--r--utils/bench/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/bench/Makefile b/utils/bench/Makefile
new file mode 100644
index 00000000..e7d2f3a1
--- /dev/null
+++ b/utils/bench/Makefile
@@ -0,0 +1,8 @@
+all:	hash
+
+hash:	hash.c
+	gcc -O3 -mavx2 -march=native -I../../include -o hash hash.c
+
+clean:
+	rm -f hash
+