Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bench/makefile')
-rw-r--r--bench/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/makefile b/bench/makefile
index 8945dba..b637c82 100644
--- a/bench/makefile
+++ b/bench/makefile
@@ -1,6 +1,6 @@
CC=gcc
# std to gnu99 to support inline asm
-CFLAGS=-O3 -march=native -DSUPERCOP # -DHAVE_XOP # uncomment on XOP-enabled CPUs
+CFLAGS=-O3 -march=native -Wall -Wextra -DSUPERCOP # -DHAVE_XOP # uncomment on XOP-enabled CPUs
FILES=bench.c
all: bench
@@ -9,7 +9,7 @@ bench: bench.c
$(CC) $(FILES) $(CFLAGS) ../sse/blake2b.c -o blake2b
$(CC) $(FILES) $(CFLAGS) ../sse/blake2s.c -o blake2s
$(CC) $(FILES) $(CFLAGS) md5.c -o md5 -lcrypto -lz
-
+
plot: bench
./blake2b > blake2b.data
./blake2s > blake2s.data