diff options
| author | Paul Duncan <pabs@pablotron.org> | 2024-04-29 12:02:43 -0400 |
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2024-04-29 12:02:43 -0400 |
| commit | 493bd74756150e3827ba328e531cd7e0d8df1533 (patch) | |
| tree | a10e35a818bd7ac72480a25dc0fa28e2d33c2e54 | |
| parent | bd3e6fdb474903d0acdb9b9e01add0fa2462273f (diff) | |
| download | sha3-493bd74756150e3827ba328e531cd7e0d8df1533.tar.xz sha3-493bd74756150e3827ba328e531cd7e0d8df1533.zip | |
Makefile: add -march=native -mtune=native to TEST_CFLAGS
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
