From 5482bbac0f18d45f0e02bbe8153e47b160287fff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Wed, 22 Jan 2025 17:22:39 +0100 Subject: [PATCH] Reword comment slightly --- .../run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs b/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs index 3b9963f9465..0134457c5c2 100644 --- a/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs +++ b/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs @@ -11,8 +11,10 @@ use std::path::{Path, PathBuf}; use run_make_support::{cmd, llvm_objdump, regex, rustc_path}; fn main() { - // This is the maximum glibc version *supported* by the x86_64-unknown-linux-gnu target. + // This is the maximum glibc version that we are *permitted* to use for the + // x86_64-unknown-linux-gnu target. // All glibc symbols used in the compiler must be lower or equal than this version. + // So that if a given machine only has glibc 2.17, it is able to run the compiler. let max_supported = (2, 17, 99); let rustc = PathBuf::from(rustc_path());