diff options
author | emersion <contact@emersion.fr> | 2019-02-24 23:21:26 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-25 00:21:26 +0200 |
commit | 06e939bcbb5f2fe9391665dd427f12cea8d38bd5 (patch) | |
tree | ab90f396884d5c76f874fdce5b7f518a46423365 | |
parent | 72370faef0b15a16c42688f83ba57b50a866e1cb (diff) | |
download | meson-06e939bcbb5f2fe9391665dd427f12cea8d38bd5.zip meson-06e939bcbb5f2fe9391665dd427f12cea8d38bd5.tar.gz meson-06e939bcbb5f2fe9391665dd427f12cea8d38bd5.tar.bz2 |
docs: compiled() only works with compiler.run() results [skip ci]
-rw-r--r-- | docs/markdown/Reference-manual.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index adaffe7..6c3b3ad 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -2256,7 +2256,8 @@ sample piece of code with [`compiler.run()`](#compiler-object) or [`run_command()`](#run_command). It has the following methods: - `compiled()` if true, the compilation succeeded, if false it did not - and the other methods return unspecified data + and the other methods return unspecified data. This is only available + for `compiler.run()` results. - `returncode()` the return code of executing the compiled binary - `stderr()` the standard error produced when the command was run - `stdout()` the standard out produced when the command was run |