[Lldb-commits] [lldb] r364979 - Update cmake build setup so lldb doesn't link against the DebugSymbols

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 2 16:36:39 PDT 2019


Author: jmolenda
Date: Tue Jul  2 16:36:39 2019
New Revision: 364979

URL: http://llvm.org/viewvc/llvm-project?rev=364979&view=rev
Log:
Update cmake build setup so lldb doesn't link against the DebugSymbols
framework on macOS, in line with the source/xcode project changes in
r364243.
<rdar://problem/49458356> 

Modified:
    lldb/trunk/cmake/modules/LLDBConfig.cmake

Modified: lldb/trunk/cmake/modules/LLDBConfig.cmake
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/cmake/modules/LLDBConfig.cmake?rev=364979&r1=364978&r2=364979&view=diff
==============================================================================
--- lldb/trunk/cmake/modules/LLDBConfig.cmake (original)
+++ lldb/trunk/cmake/modules/LLDBConfig.cmake Tue Jul  2 16:36:39 2019
@@ -335,7 +335,6 @@ if (APPLE)
   if(NOT IOS)
     find_library(CARBON_LIBRARY Carbon)
     find_library(CORE_SERVICES_LIBRARY CoreServices)
-    find_library(DEBUG_SYMBOLS_LIBRARY DebugSymbols PATHS "/System/Library/PrivateFrameworks")
   endif()
   find_library(FOUNDATION_LIBRARY Foundation)
   find_library(CORE_FOUNDATION_LIBRARY CoreFoundation)




More information about the lldb-commits mailing list