-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Flang][LLVM] Remove leftover CMake for old flang handling #137049
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
base: main
Are you sure you want to change the base?
Conversation
Summary: I'm pretty sure this LLVM variable is unused and `flang` is now a first-class target. This can likely be replaced with the other support for the OpenMP module files that we have.
Without trying out, I think it is still needed. |
I thought that handling was moved into the runtimes job itself as in #137035. |
Do you mean #130975? LLVM_ENABLE_RUNTIMES=openmp and LLVM_ENABLE_PROJECTS=openmp are both still supposed to work. It just fixed a dependency problem with LLVM_ENABLE_RUNTIMES=openmp (and updates some CMake messages to clarify that there are two ways to build it. |
Yeah, I figured that the only part we still needed was the dependency. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- [Flang] Add omp_lib dependency to check-flang #130975 is for the dependencies for the LLVM_ENABLE_RUNTIMES=openmp build
- This code deleted in this PR is for ensuring dependencies in the LLVM_ENABLE_PROJECTS=openmp build
Unless you entirely remove support for LLVM_ENABLE_PROJECTS=openmp
, this code in this PR is still needed.
Well, it's been made a warning and will probably be an error by the time the release rolls out. But I guess we can delay this if needed. |
Summary:
I'm pretty sure this LLVM variable is unused and
flang
is now afirst-class target. This can likely be replaced with the other
support for the OpenMP module files that we have.