-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
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
[misc] Show LLVM version on startup #1287
Comments
I think the start up could become too long now...
|
That's a good point. I think we can show all info that does not need run-time detection in the startup message. Yes, it may seem a bit too long, but it helps us diagnose bug reports much easier (note that it's hard to ask users run |
But wasn't LLVM version always 10.1 in release mode since it's built-in from CI? |
Currently we support both llvm 8.0.1 and llvm 10.0.0. Jenkins (Linux) uses llvm 10.0.0 and other buildbots use 8.0.1. |
Concisely describe the proposed feature
Since we are now upgrading from LLVM 8.0.1 to LLVM 10.0.0, it would be good to show the LLVM version when Taichi starts. For example, the startup message could be
Describe the solution you'd like (if any)
Just export macros such as
LLVM_VERSION_MAJOR
using pybind11. E.g., seeget_version_major
:taichi/taichi/python/export_lang.cpp
Line 536 in a493339
The text was updated successfully, but these errors were encountered: