diff options
author | Igor Raits <i.gnatenko.brain@gmail.com> | 2020-06-18 16:45:27 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-06-21 23:49:39 +0300 |
commit | d6c6b933c464d2689751da4f78cdd6463a4bc041 (patch) | |
tree | 7eefd48fdb18f1ff7ee7a685c1511aca8ccb3366 /docs | |
parent | e353b2e8d48c8ffce579342fac9ccfc62127bec8 (diff) | |
download | meson-d6c6b933c464d2689751da4f78cdd6463a4bc041.zip meson-d6c6b933c464d2689751da4f78cdd6463a4bc041.tar.gz meson-d6c6b933c464d2689751da4f78cdd6463a4bc041.tar.bz2 |
mcompile: Add --verbose mode
Closes: https://github.com/mesonbuild/meson/issues/7352
Signed-off-by: Igor Raits <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Commands.md | 2 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.54.0.md | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/Commands.md b/docs/markdown/Commands.md index 615b302..dbcfee4 100644 --- a/docs/markdown/Commands.md +++ b/docs/markdown/Commands.md @@ -137,6 +137,7 @@ meson configure builddir -Doption=new_value ``` $ meson compile [-h] [-j JOBS] [-l LOAD_AVERAGE] [--clean] [-C BUILDDIR] + [--verbose] ``` Builds a default or a specified target of a configured meson project. @@ -153,6 +154,7 @@ optional arguments: --clean Clean the build directory. -C BUILDDIR The directory containing build files to be built. + --verbose Show more verbose output. ``` #### Examples: diff --git a/docs/markdown/Release-notes-for-0.54.0.md b/docs/markdown/Release-notes-for-0.54.0.md index 3202b57..2f215de 100644 --- a/docs/markdown/Release-notes-for-0.54.0.md +++ b/docs/markdown/Release-notes-for-0.54.0.md @@ -359,3 +359,8 @@ target that has eight source files, Meson will generate two unity files each of which includes four source files. The old behaviour can be replicated by setting `unity_size` to a large value, such as 10000. +## Verbose mode for `meson compile` + +The new option `--verbose` has been added to `meson compile` that will enable +more verbose compilation logs. Note that for VS backend it means that logs will +be less verbose by default (without `--verbose` option). |