diff options
| author | Erik Johansson <[email protected]> | 2020-02-12 23:08:44 +0100 |
|---|---|---|
| committer | Erik Johansson <[email protected]> | 2020-02-12 23:08:44 +0100 |
| commit | 0281f1ae16af772876a7d2f2da63328a3663d7f7 (patch) | |
| tree | 01943134dbffee0a309f1f46f11315f22422bb51 /c/README.md | |
| parent | afdaf3036b385a234fa87dbca31c0f4634e604fa (diff) | |
Rename assembly files (blake3-* -> blake3_*)
This gives the assembly files the same prefix as the intrinsics files which
simplifies building when the build system should pick between the assembly and
the intrinsics files.
Diffstat (limited to 'c/README.md')
| -rw-r--r-- | c/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c/README.md b/c/README.md index ef7a327..b589e84 100644 --- a/c/README.md +++ b/c/README.md @@ -59,7 +59,7 @@ with a Unix-like OS, you can compile a working binary like this: ```bash gcc -O3 -o example example.c blake3.c blake3_dispatch.c blake3_portable.c \ - blake3-sse41-x86_64-unix.S blake3-avx2-x86_64-unix.S blake3-avx512-x86_64-unix.S + blake3_sse41-x86_64-unix.S blake3_avx2-x86_64-unix.S blake3_avx512-x86_64-unix.S ``` ## Building @@ -91,7 +91,7 @@ the assembly implementations: ```bash gcc -shared -O3 -o libblake3.so blake3.c blake3_dispatch.c blake3_portable.c \ - blake3-sse41-x86_64-unix.S blake3-avx2-x86_64-unix.S blake3-avx512-x86_64-unix.S + blake3_sse41-x86_64-unix.S blake3_avx2-x86_64-unix.S blake3_avx512-x86_64-unix.S ``` When building the intrinsics-based implementations, you need to build |
