diff options
author | Daniel Stone <daniels@collabora.com> | 2017-08-31 18:31:12 +0100 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2017-08-31 20:24:21 +0100 |
commit | 552c15b978434456780f9efea1e7f05b21b1208f (patch) | |
tree | 5553eba398fda7b96f47cb1896c86fbc2915cbe4 | |
parent | e1ffae0580259343be7665c6b2f014fe71b8c05c (diff) | |
download | meson-552c15b978434456780f9efea1e7f05b21b1208f.zip meson-552c15b978434456780f9efea1e7f05b21b1208f.tar.gz meson-552c15b978434456780f9efea1e7f05b21b1208f.tar.bz2 |
Alphabetize compiler.compiles()
-rw-r--r-- | docs/markdown/Reference-manual.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index e388878..3f25e80 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1260,6 +1260,12 @@ the following methods: the positional argument, you can specify external dependencies to use with `dependencies` keyword argument. +- `compiles(code)` returns true if the code fragment given in the + positional argument compiles, you can specify external dependencies + to use with `dependencies` keyword argument, `code` can be either a + string containing source code or a `file` object pointing to the + source code. + - `compute_int(expr, ...')` computes the value of the given expression (as an example `1 + 2`). When cross compiling this is evaluated with an iterative algorithm, you can specify keyword arguments `low` @@ -1290,12 +1296,6 @@ the following methods: containing only the arguments supported by the compiler, as if `has_argument` were called on them individually. -- `compiles(code)` returns true if the code fragment given in the - positional argument compiles, you can specify external dependencies - to use with `dependencies` keyword argument, `code` can be either a - string containing source code or a `file` object pointing to the - source code. - - `has_argument(argument_name)` returns true if the compiler accepts the specified command line argument, that is, can compile code without erroring out or printing a warning about an unknown flag, |