[Lldb-commits] [PATCH] D73839: [LLDB] Add missing declarations for linking to psapi

Martin Storsjö via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 3 03:04:31 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGeb5ee9275d7a: [LLDB] Add missing declarations for linking to psapi (authored by mstorsjo).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D73839

Files:
  lldb/source/Host/CMakeLists.txt
  lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt


Index: lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt
===================================================================
--- lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt
+++ lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt
@@ -29,6 +29,7 @@
     lldbTarget
     ws2_32
     rpcrt4
+    psapi
   LINK_COMPONENTS
     Support
   )
Index: lldb/source/Host/CMakeLists.txt
===================================================================
--- lldb/source/Host/CMakeLists.txt
+++ lldb/source/Host/CMakeLists.txt
@@ -161,6 +161,9 @@
 if (LLDB_ENABLE_LZMA)
   list(APPEND EXTRA_LIBS ${LIBLZMA_LIBRARIES})
 endif()
+if (WIN32)
+  list(APPEND LLDB_SYSTEM_LIBS psapi)
+endif ()
 
 if (LLDB_ENABLE_LIBEDIT)
   list(APPEND LLDB_LIBEDIT_LIBS ${LibEdit_LIBRARIES})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73839.242006.patch
Type: text/x-patch
Size: 786 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200203/8b299b4c/attachment.bin>


More information about the lldb-commits mailing list