From ea37dbd4b0e6c8402d5531b8eede4aa8e12ac7b6 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Thu, 21 Oct 2021 17:23:46 -0400 Subject: [PATCH] a small capitalization change --- c/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c/README.md b/c/README.md index eacdc54..e3fca0c 100644 --- a/c/README.md +++ b/c/README.md @@ -250,7 +250,7 @@ gcc -shared -O3 -o libblake3.so -DBLAKE3_NO_SSE2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_A ## ARM NEON -The NEON implementation is enabled by default on AARCH64, but not on +The NEON implementation is enabled by default on AArch64, but not on other ARM targets, since not all of them support it. To enable it, set `BLAKE3_USE_NEON=1`. Here's an example of building a shared library on ARM Linux with NEON support: @@ -260,7 +260,7 @@ gcc -shared -O3 -o libblake3.so -DBLAKE3_USE_NEON=1 blake3.c blake3_dispatch.c \ blake3_portable.c blake3_neon.c ``` -To explicitiy disable using NEON instructions on AARCH64, set +To explicitiy disable using NEON instructions on AArch64, set `BLAKE3_USE_NEON=0`. ```bash