Skip to content

Commit

Permalink
Reword comment slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Kobzol committed Jan 22, 2025
1 parent 46ae738 commit 5482bba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 5482bba

Please sign in to comment.