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: https://github.com/rust-lang/rust/issues/55842#issuecomment-437712038
Run rustc --version --verbose
and the LLVM version will be printed.
1 Like
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.