1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-07 13:56:09 +02:00

a small capitalization change

This commit is contained in:
Jack O'Connor 2021-10-21 17:23:46 -04:00
parent 3c107b7dd2
commit ea37dbd4b0

View File

@ -250,7 +250,7 @@ gcc -shared -O3 -o libblake3.so -DBLAKE3_NO_SSE2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_A
## ARM NEON ## 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 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 `BLAKE3_USE_NEON=1`. Here's an example of building a shared library on
ARM Linux with NEON support: 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 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`. `BLAKE3_USE_NEON=0`.
```bash ```bash