We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ae738 commit 5482bbaCopy full SHA for 5482bba
tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs
@@ -11,8 +11,10 @@ use std::path::{Path, PathBuf};
11
use run_make_support::{cmd, llvm_objdump, regex, rustc_path};
12
13
fn main() {
14
- // 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
15
+ // x86_64-unknown-linux-gnu target.
16
// All glibc symbols used in the compiler must be lower or equal than this version.
17
+ // So that if a given machine only has glibc 2.17, it is able to run the compiler.
18
let max_supported = (2, 17, 99);
19
20
let rustc = PathBuf::from(rustc_path());
0 commit comments