# harec **Repository Path**: azhai/harec ## Basic Information - **Project Name**: harec - **Description**: This is a Hare compiler written in C11 for POSIX-compatible systems. - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: https://git.sr.ht/~sircmpwn/harec - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-29 - **Last Updated**: 2022-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # harec This is a [Hare](https://harelang.org) compiler written in C11 for POSIX-compatible systems. ## Build status
Linux (x86_64)
Build status for Linux
FreeBSD (x86_64)
Build status for FreeBSD
## Building ``` mkdir build cd build ../configure make ``` Optionally, build and run the test suite as well: ``` make check ``` ## Runtime harec includes a minimal runtime under `rt` which is suitable for running the test suite, but not recommended for production use. See `docs/runtime.txt` for details on how to provide your own runtime implementation, or use the [Hare standard library](https://git.sr.ht/~sircmpwn/hare).