aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/howtox.md
diff options
context:
space:
mode:
authorKevin Anderson <andersonkw2@gmail.com>2017-10-22 17:06:15 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2017-10-23 18:43:39 +0200
commit562c50f229cfe0a28abdfc2c56360f5a82c83b57 (patch)
treeb32c0e1f93a856d3d2bc4265b4b8a996a58c1f21 /docs/markdown/howtox.md
parent92866d8d5f50b6133be4b53d989665dedd89dd52 (diff)
downloadmeson-562c50f229cfe0a28abdfc2c56360f5a82c83b57.zip
meson-562c50f229cfe0a28abdfc2c56360f5a82c83b57.tar.gz
meson-562c50f229cfe0a28abdfc2c56360f5a82c83b57.tar.bz2
Update references from mesonconf to meson configure
Fixes #2372
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r--docs/markdown/howtox.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md
index e5c03ce..c4aa9c5 100644
--- a/docs/markdown/howtox.md
+++ b/docs/markdown/howtox.md
@@ -102,7 +102,7 @@ The coverage report can be found in the meson-logs subdirectory.
By default the debug build does not use any optimizations. This is the desired approach most of the time. However some projects benefit from having some minor optimizations enabled. GCC even has a specific compiler flag `-Og` for this. To enable its use, just issue the following command.
```console
-$ mesonconf -Dc_args=-Og
+$ meson configure -Dc_args=-Og
```
This causes all subsequent builds to use this command line argument.
@@ -139,7 +139,7 @@ Then we need to run the program with some representative input. This step depend
Once that is done we change the compiler flags to use the generated information and rebuild.
```console
-$ mesonconf -Db_pgo=use
+$ meson configure -Db_pgo=use
$ ninja
```