diff options
author | Floris Bruynooghe <flub@google.com> | 2018-11-18 15:35:25 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-22 22:31:19 +0200 |
commit | e629a4ad1d4d2b9942ff44894b8aaaa05146e033 (patch) | |
tree | e096682936da5c01c9b53b134d714ef1e6a9f8eb /docs/markdown/Reference-tables.md | |
parent | 50d5bcff87518cb350bfaba3be69b7e95c42a3c4 (diff) | |
download | meson-e629a4ad1d4d2b9942ff44894b8aaaa05146e033.zip meson-e629a4ad1d4d2b9942ff44894b8aaaa05146e033.tar.gz meson-e629a4ad1d4d2b9942ff44894b8aaaa05146e033.tar.bz2 |
[skip ci] Document CFLAGS and friends in main docs
Currently this is only partially documented in the quick-start guide,
include this in the main docs and document all the environment
argumens used.
Diffstat (limited to 'docs/markdown/Reference-tables.md')
-rw-r--r-- | docs/markdown/Reference-tables.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index d48458d..b561e86 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -111,6 +111,19 @@ These are the parameter names for passing language specific arguments to your bu | Rust | rust_args | | Vala | vala_args | +## Compiler and linker flag environment variables + +These environment variables will be used to modify the compiler and +linker flags. + +| 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 | ## Function Attributes |