Skip to content

Commit 7129d76

Browse files
authored
Revert "[lldb][NFC] Mark ValueObject library with NO_PLUGIN_DEPENDENCIES" (llvm#167886)
Reverts llvm#167794 This breaks a build with BUILD_SHARED_LIBS=ON: /usr/bin/ld: lib/liblldbCommands.a(CommandObjectTarget.cpp.o): undefined reference to symbol '_ZN5clang22PCHContainerOperationsC1Ev Fixing that issue leads to similar failures due to different symbols.
1 parent 0f45a33 commit 7129d76

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lldb/source/Commands/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ add_lldb_library(lldbCommands NO_PLUGIN_DEPENDENCIES
5858
lldbUtility
5959
lldbValueObject
6060
lldbVersion
61-
CLANG_LIBS
62-
clangFrontend
6361
)
6462

6563
add_dependencies(lldbCommands LLDBOptionsGen)

lldb/source/ValueObject/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_lldb_library(lldbValueObject NO_PLUGIN_DEPENDENCIES
1+
add_lldb_library(lldbValueObject
22
DILAST.cpp
33
DILEval.cpp
44
DILLexer.cpp
@@ -34,4 +34,6 @@ add_lldb_library(lldbValueObject NO_PLUGIN_DEPENDENCIES
3434
lldbSymbol
3535
lldbTarget
3636
lldbUtility
37+
lldbPluginCPlusPlusLanguage
38+
lldbPluginObjCLanguage
3739
)

0 commit comments

Comments
 (0)