Skip to content

Commit 06123d3

Browse files
committed
include LLVM version in --version --verbose
This is in the matter of #28405.
1 parent 8e05e7e commit 06123d3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/librustc_driver/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,10 @@ pub fn version(binary: &str, matches: &getopts::Matches) {
729729
println!("commit-date: {}", unw(commit_date_str()));
730730
println!("host: {}", config::host_triple());
731731
println!("release: {}", unw(release_str()));
732+
unsafe {
733+
println!("LLVM version: {}.{}",
734+
llvm::LLVMRustVersionMajor(), llvm::LLVMRustVersionMinor());
735+
}
732736
}
733737
}
734738

0 commit comments

Comments
 (0)