[lldb/Plugins] Remove PLUGIN from libraries that aren't really plugins.

Although their name and location suggests otherwise, these libraries are
not really plugins but rather support the real plugins.
This commit is contained in:
Jonas Devlieghere 2020-02-17 19:18:37 -08:00
parent 478c9cc4f5
commit ac1ea0d3da
7 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ if(NOT LLDB_BUILT_STANDALONE)
set(tablegen_deps intrinsics_gen) set(tablegen_deps intrinsics_gen)
endif() endif()
add_lldb_library(lldbPluginExpressionParserClang PLUGIN add_lldb_library(lldbPluginExpressionParserClang
ASTResultSynthesizer.cpp ASTResultSynthesizer.cpp
ASTStructExtractor.cpp ASTStructExtractor.cpp
ASTUtils.cpp ASTUtils.cpp

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginClangCommon PLUGIN add_lldb_library(lldbPluginClangCommon
ClangHighlighter.cpp ClangHighlighter.cpp
LINK_LIBS LINK_LIBS

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginCPPRuntime PLUGIN add_lldb_library(lldbPluginCPPRuntime
CPPLanguageRuntime.cpp CPPLanguageRuntime.cpp
LINK_LIBS LINK_LIBS

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginObjCRuntime PLUGIN add_lldb_library(lldbPluginObjCRuntime
ObjCLanguageRuntime.cpp ObjCLanguageRuntime.cpp
LINK_LIBS LINK_LIBS

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginPlatformPOSIX PLUGIN add_lldb_library(lldbPluginPlatformPOSIX
PlatformPOSIX.cpp PlatformPOSIX.cpp
LINK_LIBS LINK_LIBS

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginProcessUtility PLUGIN add_lldb_library(lldbPluginProcessUtility
AuxVector.cpp AuxVector.cpp
DynamicRegisterInfo.cpp DynamicRegisterInfo.cpp
FreeBSDSignals.cpp FreeBSDSignals.cpp

View File

@ -1,4 +1,4 @@
add_lldb_library(lldbPluginSymbolFileNativePDB PLUGIN add_lldb_library(lldbPluginSymbolFileNativePDB
CodeViewRegisterMapping.cpp CodeViewRegisterMapping.cpp
CompileUnitIndex.cpp CompileUnitIndex.cpp
DWARFLocationExpression.cpp DWARFLocationExpression.cpp