Latest Release
Download the source code or prebuilt binaries for your platform:
The latest version of Judo is 1.0.0-rc2 published on 2025-02-18T23:18:32Z.
Filename | Size |
---|---|
judo-1.0.0-rc2.tar.gz | 383 KB |
Looking for previous versions? Check the GitHub releases page.
Release Notes
Changing the API for retrieving lexemes: there is now a 'span' structure that holds the code unit index and length. This is a backwards incompatible change.
Building from Source
Building Judo from source requires a C compiler with at least C99 conformance.
- 1
- Download the source code for Judo.
- 2
Build with:
$ ./configure $ make $ make install
Building with CMake
- 1
- Install CMake.
- 2
- Download the source code for Judo.
- 3
-
Build with the following or choose a custom generator:
$ cmake -B build $ cmake --build build $ cmake --install build