diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2024-01-24 22:35:32 -0500 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-01-24 22:41:18 -0500 |
| commit | b2ddcbad0cf3a3e546087ea540998266a13719be (patch) | |
| tree | 58f7f7f3e716c1908fdd295c3aba1d3430d7658c /docs | |
| parent | 2936be7e29cc002b9338f74ed74fd1399a923f7f (diff) | |
| download | meson-b2ddcbad0cf3a3e546087ea540998266a13719be.tar.gz | |
docs: add a technically unneeded "setup" verb to some invocations
`meson <options> -Dxxx=yyy` is technically accurate, but does cause
confusion at least some of the time.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/markdown/howtox.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 54831a3f7..8b56c807e 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -166,7 +166,7 @@ execute permissions, the generated file will have them too. First initialize the build directory with this command. ```console -$ meson <other flags> -Db_coverage=true +$ meson setup <other flags> -Db_coverage=true ``` Then issue the following commands. @@ -202,7 +202,7 @@ sanitizer](https://clang.llvm.org/docs/AddressSanitizer.html). Meson has native support for these with the `b_sanitize` option. ```console -$ meson <other options> -Db_sanitize=address +$ meson setup <other options> -Db_sanitize=address ``` After this you just compile your code and run the test suite. Address |
