aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorPhillip Johnston <phillip@embeddedartistry.com>2020-03-19 13:53:24 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-03-19 14:22:12 -0700
commitf6fad7ae9b859f52af305713f42fe79df1ea1988 (patch)
treecb59ec35c1248d453fa4f533bdaed8168c5b20b0 /docs/markdown
parent18373cba743e16e502e18d795af360600f9fd44d (diff)
downloadmeson-f6fad7ae9b859f52af305713f42fe79df1ea1988.zip
meson-f6fad7ae9b859f52af305713f42fe79df1ea1988.tar.gz
meson-f6fad7ae9b859f52af305713f42fe79df1ea1988.tar.bz2
Update native description to use the new LD variables
With Meson 0.53.1, this is now out of date. Updating to use the proper ld variables.
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/Native-environments.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/Native-environments.md b/docs/markdown/Native-environments.md
index 677f067..a046ee9 100644
--- a/docs/markdown/Native-environments.md
+++ b/docs/markdown/Native-environments.md
@@ -40,7 +40,9 @@ like `llvm-config`
c = '/usr/local/bin/clang'
cpp = '/usr/local/bin/clang++'
rust = '/usr/local/bin/rust'
-ld = 'gold'
+c_ld = 'gold'
+cpp_ld = 'gold'
+rust_ld = 'gold'
llvm-config = '/usr/local/llvm-svn/bin/llvm-config'
```