[Lldb-commits] [lldb] f54249e - [lldb][test] Link to PlatformWindows in thread tests

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 21 06:08:27 PST 2023


Author: David Spickett
Date: 2023-12-21T14:07:27Z
New Revision: f54249e79a507f4bfeaa9ce3f693dbe01c9af915

URL: https://github.com/llvm/llvm-project/commit/f54249e79a507f4bfeaa9ce3f693dbe01c9af915
DIFF: https://github.com/llvm/llvm-project/commit/f54249e79a507f4bfeaa9ce3f693dbe01c9af915.diff

LOG: [lldb][test] Link to PlatformWindows in thread tests

Clearly I need my eyes checked, it wasn't linking to a non-existent
library at all, I had the name wrong.

Added: 
    

Modified: 
    lldb/unittests/Thread/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/Thread/CMakeLists.txt b/lldb/unittests/Thread/CMakeLists.txt
index 2b771d3cd309f7..8fc44da6f5b395 100644
--- a/lldb/unittests/Thread/CMakeLists.txt
+++ b/lldb/unittests/Thread/CMakeLists.txt
@@ -1,4 +1,5 @@
 if (CMAKE_SYSTEM_NAME MATCHES "Windows")
+  list(APPEND LLDB_WINDOWS_LIBS lldbPluginPlatformWindows)
   list(APPEND LLDB_WINDOWS_LIBS lldbPluginProcessWindowsCommon)
 endif()
 


        


More information about the lldb-commits mailing list