From d5440c9b6eb0d5f0ebd007b982c23efbf2f6118d Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sun, 16 Jul 2017 14:43:59 +0200 Subject: [PATCH] -O3 march=native (heavily affects Argon2i) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index d74a428..a4ab285 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,7 @@ CC=gcc -std=gnu99 #CC=clang++ -std=c++98 #CC=clang++ -std=c++11 #CC=clang++ -std=c++14 -CFLAGS= -I src -pedantic -Wall -Wextra -O2 +CFLAGS= -I src -pedantic -Wall -Wextra -O3 -march=native .PHONY: all clean directories # disable implicit rules -- 2.47.3