diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-09-18 18:05:30 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-09-18 18:21:50 +0300 |
commit | bdbb8535cf38306d8aef0f006d4bf753f12e9d15 (patch) | |
tree | 51c4fdf24518bf00ab8a62029533bd0f2d44234e /docs/markdown/snippets | |
parent | 81c50885689488d701ec442d08234b442e975d78 (diff) | |
download | meson-reprotest.zip meson-reprotest.tar.gz meson-reprotest.tar.bz2 |
Add a simple reproducibility test command.reprotest
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/reprotester.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/markdown/snippets/reprotester.md b/docs/markdown/snippets/reprotester.md new file mode 100644 index 0000000..dc86acd --- /dev/null +++ b/docs/markdown/snippets/reprotester.md @@ -0,0 +1,15 @@ +## Simple tool to test build reproducibility + +Meson now ships with a command for testing whether your project can be +[built reprodicibly](https://reproducible-builds.org/). It can be used +by running a command like the following in the source root of your +project: + + meson reprotest --intermediaries -- --buildtype=debugoptimized + +All command line options after the `--` are passed to the build +invocations directly. + +This tool is not meant to be exhaustive, but instead easy and +convenient to run. It will detect some but definitely not all +reproducibility issues. |