diff options
| author | rsdy <[email protected]> | 2021-10-08 12:45:04 +0100 |
|---|---|---|
| committer | rsdy <[email protected]> | 2021-10-08 12:45:04 +0100 |
| commit | c5941a2731516c365ec30db0b0723c4edbb3f9c7 (patch) | |
| tree | 48f161f56b33a0cabd8f33315b5235c23525ddd3 /c/Makefile.testing | |
| parent | faddc5af5ce9db25a21a3041fd4c5df63f49c875 (diff) | |
Make the C implementation default to using NEON on aarch64
Diffstat (limited to 'c/Makefile.testing')
| -rw-r--r-- | c/Makefile.testing | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/c/Makefile.testing b/c/Makefile.testing index 41e6b82..b85aedf 100644 --- a/c/Makefile.testing +++ b/c/Makefile.testing @@ -42,6 +42,10 @@ EXTRAFLAGS += -DBLAKE3_USE_NEON TARGETS += blake3_neon.o endif +ifdef BLAKE3_NO_NEON +EXTRAFLAGS += -DBLAKE3_NO_NEON +endif + all: blake3.c blake3_dispatch.c blake3_portable.c main.c $(TARGETS) $(CC) $(CFLAGS) $(EXTRAFLAGS) $^ -o $(NAME) $(LDFLAGS) |
