diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-19 19:19:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 19:19:29 +0200 |
commit | 321774d715f47b3bd3a2e240e0a190dfad7bd22d (patch) | |
tree | 0c9f22d4cee7c1d3a85dde4694b0739d1e4e916f /docs/markdown/howtox.md | |
parent | 00104b1081cd5076451d83524f4f9bfa75750cf6 (diff) | |
parent | b8294b4436f7a187cd8cfae02554ce0140428e78 (diff) | |
download | meson-321774d715f47b3bd3a2e240e0a190dfad7bd22d.zip meson-321774d715f47b3bd3a2e240e0a190dfad7bd22d.tar.gz meson-321774d715f47b3bd3a2e240e0a190dfad7bd22d.tar.bz2 |
Merge pull request #6789 from dcbaker/deprecated-c-ld
Make linker selection environment variables match docs
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r-- | docs/markdown/howtox.md | 6 |
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 |