[Lldb-commits] [PATCH] D73847: `Debug` (but not `Release`): error: undefined reference to `ThreadPlanCallFunctionUsingABI` ctor && `ThreadPlanCallUserExpression` ctor

Jan Kratochvil via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 3 05:13:18 PST 2020


jankratochvil updated this revision to Diff 242030.
jankratochvil added a comment.

OK, `LINK_INTERFACE_MULTIPLICITY` also works.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73847/new/

https://reviews.llvm.org/D73847

Files:
  lldb/source/Core/CMakeLists.txt


Index: lldb/source/Core/CMakeLists.txt
===================================================================
--- lldb/source/Core/CMakeLists.txt
+++ lldb/source/Core/CMakeLists.txt
@@ -96,7 +96,7 @@
 
 # Needed to properly resolve references in a debug build.
 # TODO: Remove once we have better layering
-set_target_properties(lldbCore PROPERTIES LINK_INTERFACE_MULTIPLICITY 4)
+set_target_properties(lldbCore PROPERTIES LINK_INTERFACE_MULTIPLICITY 5)
 
 if (LLDB_ENABLE_LIBEDIT)
   target_include_directories(lldbCore PRIVATE ${LibEdit_INCLUDE_DIRS})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73847.242030.patch
Type: text/x-patch
Size: 551 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200203/7dc6f0e4/attachment.bin>


More information about the lldb-commits mailing list