Author: Jonas Devlieghere Date: 2020-02-17T10:24:18-08:00 New Revision: 3431dc32a4162c0c3e0e0cd3e9e550c5f3c57047
URL: https://github.com/llvm/llvm-project/commit/3431dc32a4162c0c3e0e0cd3e9e550c5f3c57047 DIFF: https://github.com/llvm/llvm-project/commit/3431dc32a4162c0c3e0e0cd3e9e550c5f3c57047.diff LOG: [lldb/Plugin] Fix plugin definition for ProcessWindows This should fix the unresolved external symbol error. Added: Modified: lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp Removed: ################################################################################ diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp index 286a95fa5894..7b020f55e993 100644 --- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp @@ -44,7 +44,7 @@ using namespace lldb; using namespace lldb_private; -LLDB_PLUGIN_DEFINE(ProcessWindows) +LLDB_PLUGIN_DEFINE_ADV(ProcessWindows, ProcessWindowsCommon) namespace { std::string GetProcessExecutableName(HANDLE process_handle) { _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits