aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/compiler-object-run_command.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-04-22 19:41:21 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-04-23 03:24:26 +0300
commitade59f987f40707d7f5fb43727b0de249a373469 (patch)
treef393814f81556b47764aab95558a6ef6a262d783 /docs/markdown/snippets/compiler-object-run_command.md
parent01865899e5283b3e0b3181ddb250c348a5bafa84 (diff)
downloadmeson-ade59f987f40707d7f5fb43727b0de249a373469.zip
meson-ade59f987f40707d7f5fb43727b0de249a373469.tar.gz
meson-ade59f987f40707d7f5fb43727b0de249a373469.tar.bz2
Updated version number for new release.0.46.0
Diffstat (limited to 'docs/markdown/snippets/compiler-object-run_command.md')
-rw-r--r--docs/markdown/snippets/compiler-object-run_command.md10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/markdown/snippets/compiler-object-run_command.md b/docs/markdown/snippets/compiler-object-run_command.md
deleted file mode 100644
index 0308416..0000000
--- a/docs/markdown/snippets/compiler-object-run_command.md
+++ /dev/null
@@ -1,10 +0,0 @@
-## Compiler object can now be passed to run_command()
-
-This can be used to run the current compiler with the specified arguments
-to obtain additional information from it.
-One of the use cases is to get the location of development files for the
-GCC plugins:
-
- cc = meson.get_compiler('c')
- result = run_command(cc, '-print-file-name=plugin')
- plugin_dev_path = result.stdout().strip()