aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-10-15 16:59:29 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-11-13 09:00:35 -0800
commit86957cfc90161fa672043e6bcdd3ccb1de12436e (patch)
tree88d0144a549fce7658eefaaecc7499290fd50211
parent5afd608a755ebedd6b532dd82abefff205b9e997 (diff)
downloadmeson-86957cfc90161fa672043e6bcdd3ccb1de12436e.zip
meson-86957cfc90161fa672043e6bcdd3ccb1de12436e.tar.gz
meson-86957cfc90161fa672043e6bcdd3ccb1de12436e.tar.bz2
compilers/rust: warn about setting -C linker in your compiler args
-rw-r--r--mesonbuild/environment.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 941acdc..6545a00 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -1651,6 +1651,13 @@ class Environment:
# the default use that, and second add the necessary arguments
# to rust to use -fuse-ld
+ if any(a.startswith('linker=') for a in compiler):
+ mlog.warning(
+ 'Please do not put -C linker= in your compiler '
+ 'command, set rust_ld=command in your cross file '
+ 'or use the RUST_LD environment variable. meson '
+ 'will override your seletion otherwise.')
+
if override is None:
extra_args = {}
always_args = []