From d5f8edfa103442e755e1ab3ba76dfd6b0418c043 Mon Sep 17 00:00:00 2001 From: Michael Woerister Date: Thu, 2 Aug 2018 14:16:43 +0200 Subject: [PATCH] Fix outdated description of -Zcross-lang-lto. --- src/librustc/session/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 3111777f4ad..219607a456b 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -831,7 +831,7 @@ macro_rules! options { pub const parse_lto: Option<&'static str> = Some("one of `thin`, `fat`, or omitted"); pub const parse_cross_lang_lto: Option<&'static str> = - Some("either a boolean (`yes`, `no`, `on`, `off`, etc), `no-link`, \ + Some("either a boolean (`yes`, `no`, `on`, `off`, etc), \ or the path to the linker plugin"); }