mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-15 05:26:47 +00:00
Reword comment slightly
This commit is contained in:
parent
46ae7382a4
commit
5482bbac0f
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user