aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Reference-tables.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-05-19 14:43:09 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-06-07 09:25:32 -0700
commit0cb05004ca9cb6e17cd64b6d0b4ef8e759ed4136 (patch)
treea61b95b2c295a5126d51656b13d8897b67cf0093 /docs/markdown/Reference-tables.md
parenta2fc2e216581309c8e3a9e4fb60fa30c6921d5f8 (diff)
downloadmeson-0cb05004ca9cb6e17cd64b6d0b4ef8e759ed4136.zip
meson-0cb05004ca9cb6e17cd64b6d0b4ef8e759ed4136.tar.gz
meson-0cb05004ca9cb6e17cd64b6d0b4ef8e759ed4136.tar.bz2
docs: Add cython docs
Diffstat (limited to 'docs/markdown/Reference-tables.md')
-rw-r--r--docs/markdown/Reference-tables.md23
1 files changed, 13 insertions, 10 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md
index eb0210e..f2fc663 100644
--- a/docs/markdown/Reference-tables.md
+++ b/docs/markdown/Reference-tables.md
@@ -34,6 +34,7 @@ These are return values of the `get_id` (Compiler family) and
| sun | Sun Fortran compiler | |
| valac | Vala compiler | |
| xc16 | Microchip XC16 C compiler | |
+| cython | The Cython compiler | |
## Linker ids
@@ -160,6 +161,7 @@ These are the parameter names for passing language specific arguments to your bu
| Objective C++ | objcpp_args | objcpp_link_args |
| Rust | rust_args | rust_link_args |
| Vala | vala_args | vala_link_args |
+| Cython | cython_args | cython_link_args |
All these `<lang>_*` options are specified per machine. See in
[specifying options per
@@ -177,16 +179,17 @@ are many caveats to their use, especially when rebuilding the project.
It is **highly** recommended that you use [the command line
arguments](#language-arguments-parameter-names) instead.
-| Name | Comment |
-| ----- | ------- |
-| CFLAGS | Flags for the C compiler |
-| CXXFLAGS | Flags for the C++ compiler |
-| OBJCFLAGS | Flags for the Objective C compiler |
-| FFLAGS | Flags for the Fortran compiler |
-| DFLAGS | Flags for the D compiler |
-| VALAFLAGS | Flags for the Vala compiler |
-| RUSTFLAGS | Flags for the Rust compiler |
-| LDFLAGS | The linker flags, used for all languages |
+| Name | Comment |
+| ----- | ------- |
+| CFLAGS | Flags for the C compiler |
+| CXXFLAGS | Flags for the C++ compiler |
+| OBJCFLAGS | Flags for the Objective C compiler |
+| FFLAGS | Flags for the Fortran compiler |
+| DFLAGS | Flags for the D compiler |
+| VALAFLAGS | Flags for the Vala compiler |
+| RUSTFLAGS | Flags for the Rust compiler |
+| CYTHONFLAGS | Flags for the Cython compiler |
+| LDFLAGS | The linker flags, used for all languages |
N.B. these settings are specified per machine, and so the environment
varibles actually come in pairs. See the [environment variables per