You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`cargo build` will produce a shared library target (`.so` on Linux, `.dll` on Windows, `.dylib` on macOS, etc) and an
296
312
auto-generated [libcrc_fast.h](libcrc_fast.h) header file for use in non-Rust projects, such as through
297
-
[FFI](https://en.wikipedia.org/wiki/Foreign_function_interface). It will also produce a static library target (`.a` on Linux and macOS, `.lib` on Windows, etc) for projects
313
+
[FFI](https://en.wikipedia.org/wiki/Foreign_function_interface). It will also produce a static library target (`.a` on
314
+
Linux and macOS, `.lib` on Windows, etc) for projects
298
315
which prefer statically linking.
299
316
300
317
There is a [crc-fast PHP extension](https://github.com/awesomized/crc-fast-php-ext) using it, for example.
@@ -355,7 +372,7 @@ but all known public & private implementations agree on the correct value, which
355
372
# Acceleration targets
356
373
357
374
This library has baseline support for accelerating all known `CRC-32` and `CRC-64` variants on `aarch64`, `x86_64`, and
0 commit comments