-
Notifications
You must be signed in to change notification settings - Fork 13.3k
SVN version of LLVM is 3.7 now #21998
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
I know nothing of LLVM, re-assigning to @alexcrichton |
Seems a bit early to update that. We're using parts of LLVM that don't have a stable API, these might change between now and the time that 3.7 is actually released. So we shouldn't claim to be compatible with 3.7 just yet. I'd rather have that check only succeed for released LLVM versions. There could be a flag that skips the version check for those who want to build against LLVM trunk. Just my 2 cents. |
Yes, you are right. I was too optimistic, it fails with 3.7 atm. |
When trying to build against a newer, local LLVM version it might be preferable to have a flag to disable the LLVM version check instead of having to modify the configure script. Fixes rust-lang#21998
Closing in favor of #22147, but thanks again for the PR! |
@dotdash: thanks for adding a flag. |
When trying to build against a newer, local LLVM version it might be preferable to have a flag to disable the LLVM version check instead of having to modify the configure script. Fixes rust-lang#21998 r? @alexcrichton
When trying to build against a newer, local LLVM version it might be preferable to have a flag to disable the LLVM version check instead of having to modify the configure script. Fixes rust-lang#21998 r? @alexcrichton
Subj. Also, sould we change this check to something else? As it is a little bit annoying to fix it with every changing of LLVM version.