We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e733667 + cc2c812 commit 3a5b45aCopy full SHA for 3a5b45a
src/librustc_llvm/build.rs
@@ -136,7 +136,7 @@ fn main() {
136
let mut parts = version_output.split('.');
137
if let (Some(major), Some(minor)) = (parts.next().and_then(|s| s.parse::<u32>().ok()),
138
parts.next().and_then(|s| s.parse::<u32>().ok())) {
139
- if major > 3 || (major == 3 && minor >= 8) {
+ if major > 3 || (major == 3 && minor >= 9) {
140
cmd.arg("--link-static");
141
}
142
0 commit comments