From 0798a9a635edc46dd80a09b77f3238eb0d5fba7a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 15 Aug 2023 08:25:05 -0700 Subject: [PATCH] Reword bootstrap comment --- build.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.rs b/build.rs index 8456a7d..fc585cf 100644 --- a/build.rs +++ b/build.rs @@ -69,10 +69,13 @@ fn main() { fn compile_probe() -> Option { if env::var_os("RUSTC_STAGE").is_some() { - // We are running inside rustc bootstrap. This is a highly non-standard environment with - // issues such as and - // . Let's just not use nightly features - // here. + // We are running inside rustc bootstrap. This is a highly non-standard + // environment with issues such as: + // + // https://github.com/rust-lang/cargo/issues/11138 + // https://github.com/rust-lang/rust/issues/114839 + // + // Let's just not use nightly features here. return None; }