Latest Release
Download the source code or prebuilt binaries for your platform:
The latest version of Unicorn is 1.0.0 published on 2024-12-03T03:38:31Z.
Filename | Size |
---|---|
unicorn-1.0.0.tar.gz | 595 KB |
unicorn-amalgamated-1.0.0.tar.gz | 340 KB |
unicorn-amalgamated-1.0.0.zip | 341 KB |
Looking for previous versions? Check the GitHub releases page.
Release Notes
The initial release of Unicorn. It includes the following Unicode algorithms:
- Normalization
- Case mapping
- Collation
- Segmentation
- BOCU-1 string compression
- UTF-8, 16, and 32 iterators and validators
Building from Source
Building Unicorn from source requires a C compiler with at least C99 conformance.
- 1
- Download the source code for Unicorn.
- 2
Build with:
$ ./configure $ make $ make install
Building with CMake
- 1
- Install CMake.
- 2
- Download the source code for Unicorn.
- 3
-
Build with the following or choose a custom generator:
$ cmake -B build $ cmake --build build $ cmake --install build