aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/howtox.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-03-12 10:55:58 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-03-17 10:40:39 -0700
commit9074c7f8a43e6a50ff255a9974adc20887a3001f (patch)
tree014a1e95737d4eae9aab4ffe76849519c0beca54 /docs/markdown/howtox.md
parent0fa70325ed479cc4d61755dd376a8b7ce5a12db0 (diff)
downloadmeson-9074c7f8a43e6a50ff255a9974adc20887a3001f.zip
meson-9074c7f8a43e6a50ff255a9974adc20887a3001f.tar.gz
meson-9074c7f8a43e6a50ff255a9974adc20887a3001f.tar.bz2
envconfig: Make compiler and linker environment variables match
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r--docs/markdown/howtox.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md
index f70ff47..1a2add0 100644
--- a/docs/markdown/howtox.md
+++ b/docs/markdown/howtox.md
@@ -26,6 +26,9 @@ build. Because of this Meson needs to know both the native and the
cross compiler. The former is set via the environment variables or
native-files and the latter via the cross file only.
+There is a table of all environment variables supported [Here](Reference-tables.md#compiler-and-linker-selection-variables)
+
+
## Set dynamic linker
*New in 0.53.0*
@@ -61,6 +64,9 @@ c = 'clang'
c_ld = 'lld'
```
+There is a table of all environment variables supported [Here](Reference-tables.md#compiler-and-linker-selection-variables)
+
+
## Set default C/C++ language version
```meson