-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[flang] Fixed the missing dependency. #121370
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
My local build with the shared libraries is broken. I suppose this was introduced by llvm#120374. `flang/include/flang/Evaluate/constant.h` ends up being included by `MapInfoFinalization.cpp` via `flang/Lower/DirectivesCommon.h`. The undefined references are related to `ConstantBase` classes.
@llvm/pr-subscribers-flang-fir-hlfir Author: Slava Zakharin (vzakhari) ChangesMy local build with the shared libraries is broken.
Full diff: https://github.com/llvm/llvm-project/pull/121370.diff 1 Files Affected:
diff --git a/flang/lib/Optimizer/OpenMP/CMakeLists.txt b/flang/lib/Optimizer/OpenMP/CMakeLists.txt
index 4f23b2b970fa44..026889cca238a0 100644
--- a/flang/lib/Optimizer/OpenMP/CMakeLists.txt
+++ b/flang/lib/Optimizer/OpenMP/CMakeLists.txt
@@ -22,6 +22,7 @@ add_flang_library(FlangOpenMPTransforms
FIRDialectSupport
FIRSupport
FortranCommon
+ FortranEvaluate
MLIRFuncDialect
MLIROpenMPDialect
HLFIRDialect
|
I am going to merge this, because at least two people are affected now, and the change is trivial. |
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/198/builds/805 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/199/builds/629 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/17/builds/4987 Here is the relevant piece of the build log for the reference
|
My local build with the shared libraries is broken.
I suppose this was introduced by #120374.
flang/include/flang/Evaluate/constant.h
ends up being includedby
MapInfoFinalization.cpp
viaflang/Lower/DirectivesCommon.h
.The undefined references are related to
ConstantBase
classes.