The changes in D130020 removed all support for the old method of
compiling OpenMP offloading programs. This means that
-fopenmp-new-driver has no effect and -fno-openmp-new-driver does
not work. This patch removes the use and documentation of this flag.
Note that the --offload-new-driver flag still exists for using the new
driver optionally with CUDA and HIP.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3906 | The option still exists in the Options.td file. Should it be removed? |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3906 | Generally we don't remove the options once they've been defined (between releases), as this would result in some applications failing to compile after switching from LLVM 15 to LLVM 16 for example. If we just leave it there then it will exist as a warning saying that the flag was unused. |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3906 | SGTM. |
The option still exists in the Options.td file. Should it be removed?