catala/build_system
Louis Gesbert bc8eda581c Add a script generating static builds
We have an obvious limitation: static builds won't support plugins. We
could resort to the classic method and do normal builds but on an old
distrib to dodge compatibility issues.

That would still be compatible with statically linking the more specific
libs, like e.g. z3.
2022-08-03 19:04:14 +02:00
..
clerk_driver.ml Fix ninja arguments order 2022-07-20 12:05:19 +02:00
clerk.ml Big reformatting 2022-03-08 15:03:14 +01:00
dune Add a script generating static builds 2022-08-03 19:04:14 +02:00
ninja_utils.ml Add dune rule to build tests 2022-05-25 18:33:20 +02:00
ninja_utils.mli Workaround some ocamlformat crashes 2022-05-11 16:21:07 +02:00
README.md docs(clerk): add documentation about clerk and the Ninja_utils module 2022-02-24 14:05:05 +01:00

Clerk

The build system for Catala built on top of ninja.

Usage

Use clerk --help if you have installed it to get more information about the command line options available. To get the development version of the help, run make help_clerk after make build. The clerk binary corresponds to the Catala build system, responsible for testing among other things.

Under the hood

To perform tests, Clerk will first generate a build.ninja file with required rules and build statements retrieved from the given input path(s), before executing the command ninja test.

The handling of the ninja structure is done with the module Ninja_utils.