We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6323565 commit 6830f1cCopy full SHA for 6830f1c
src/bootstrap/native.rs
@@ -348,11 +348,11 @@ fn check_llvm_version(builder: &Builder<'_>, llvm_config: &Path) {
348
let version = output(cmd.arg("--version"));
349
let mut parts = version.split('.').take(2).filter_map(|s| s.parse::<u32>().ok());
350
if let (Some(major), Some(_minor)) = (parts.next(), parts.next()) {
351
- if major >= 8 {
+ if major >= 9 {
352
return;
353
}
354
355
- panic!("\n\nbad LLVM version: {}, need >=8.0\n\n", version)
+ panic!("\n\nbad LLVM version: {}, need >=9.0\n\n", version)
356
357
358
fn configure_cmake(
0 commit comments