Print LLVM version used by rust toolchain?

Is there any way to determine the LLVM version used by a rust toolchain automatically? Or if I need this information would I need to build by own version table by going through old release notes?

Oh, found the information here: Bump minimum LLVM version to LLVM 6 · Issue #55842 · rust-lang/rust · GitHub

Run rustc --version --verbose and the LLVM version will be printed.

3 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.