From c5e7c3f1ff227afb47bad4ab14ac77b6e32d7990 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 5 Oct 2020 00:10:08 -0700 Subject: [PATCH] tools/checksum_benchmarks.sh: add cflag to disable pmull support Currently this doesn't matter because the compilers don't enable pmull support by default, but technically this should be there. --- tools/checksum_benchmarks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/checksum_benchmarks.sh b/tools/checksum_benchmarks.sh index 6b22186..74c5caa 100755 --- a/tools/checksum_benchmarks.sh +++ b/tools/checksum_benchmarks.sh @@ -115,7 +115,7 @@ i386|x86_64) arm*|aarch*) if have_cpu_feature pmull; then do_benchmark "PMULL" - disable_impl "PMULL" "" + disable_impl "PMULL" "-march=armv8-a+nocrypto" fi ;; esac