summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2024-04-29 12:02:43 -0400
committerPaul Duncan <pabs@pablotron.org>2024-04-29 12:02:43 -0400
commit493bd74756150e3827ba328e531cd7e0d8df1533 (patch)
treea10e35a818bd7ac72480a25dc0fa28e2d33c2e54
parentbd3e6fdb474903d0acdb9b9e01add0fa2462273f (diff)
downloadsha3-493bd74756150e3827ba328e531cd7e0d8df1533.tar.bz2
sha3-493bd74756150e3827ba328e531cd7e0d8df1533.zip
Makefile: add -march=native -mtune=native to TEST_CFLAGS
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e4faee0..dfc0e0f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ LIB=libsha3.so
LIB_OBJS=sha3.o
# test app (test suite and sanitizers)
-TEST_CFLAGS=-g -fsanitize=address,pointer-compare,pointer-subtract,undefined,leak -W -Wall -Wextra -Werror -pedantic -std=c11
+TEST_CFLAGS=-g -fsanitize=address,pointer-compare,pointer-subtract,undefined,leak -W -Wall -Wextra -Werror -pedantic -std=c11 -march=native -mtune=native
TEST_APP=./test-sha3
.PHONY=test all