We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, the current trunk version is 15.0.0git:
$ ./opt --version LLVM (http://llvm.org/): LLVM version 15.0.0git Optimized build with assertions. Default target: x86_64-unknown-linux-gnu Host CPU: broadwell
however, this isn't reflected in Clang's --version output:
$ ./clang --version clang version 15.0.0 (https://github.com/llvm/llvm-project 52dbee98212c7594852730f671303ecf7d51b7ba) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /work/llvm.monorepo/build.release/bin/.
This is confusing, as it looks to users like the Clang version is the final 15.0.0 release, while it's really not.
The text was updated successfully, but these errors were encountered:
Include LLVM_VERSION_SUFFIX in the Clang version string.
00f7108
This causes current mainline to now report "18.0.0git" instead of "18.0.0". Fixes llvm#53825
Include LLVM_VERSION_SUFFIX in the Clang version string. (#74469)
31aebdd
This causes current mainline to now report "18.0.0git" instead of "18.0.0". Fixes #53825
Successfully merging a pull request may close this issue.
For example, the current trunk version is 15.0.0git:
however, this isn't reflected in Clang's --version output:
This is confusing, as it looks to users like the Clang version is the final 15.0.0 release, while it's really not.
The text was updated successfully, but these errors were encountered: