From 9074c7f8a43e6a50ff255a9974adc20887a3001f Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 12 Mar 2020 10:55:58 -0700 Subject: envconfig: Make compiler and linker environment variables match --- docs/markdown/howtox.md | 6 ++++++ docs/markdown/snippets/linker_environment_variables_match_docs.md | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 docs/markdown/snippets/linker_environment_variables_match_docs.md (limited to 'docs/markdown') 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 diff --git a/docs/markdown/snippets/linker_environment_variables_match_docs.md b/docs/markdown/snippets/linker_environment_variables_match_docs.md new file mode 100644 index 0000000..233547c --- /dev/null +++ b/docs/markdown/snippets/linker_environment_variables_match_docs.md @@ -0,0 +1,7 @@ +## Dynamic Linker environment variables actually match docs + +The docs have always claimed that the Dynamic Linker environment variable +should be `${COMPILER_VAR}_LD`, but that's only the case for about half of +the variables. The other half are different. In 0.54.0 the variables match. +The old variables are still supported, but are deprecated and raise a +deprecation warning. -- cgit v1.1