[Lldb-commits] [lldb] c565f09 - [lldb] Don't strip LLDB.framework on install

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 20 18:16:43 PDT 2020


Author: Jonas Devlieghere
Date: 2020-10-20T18:16:36-07:00
New Revision: c565f09f4b0d908f51aaf4a841285f39ef93bc8c

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

LOG: [lldb] Don't strip LLDB.framework on install

The framework build will run dsymutil after LLDB.framework is installed.

Added: 
    

Modified: 
    lldb/cmake/caches/Apple-lldb-macOS.cmake

Removed: 
    


################################################################################
diff  --git a/lldb/cmake/caches/Apple-lldb-macOS.cmake b/lldb/cmake/caches/Apple-lldb-macOS.cmake
index 50421d269c9e..2aef41157bab 100644
--- a/lldb/cmake/caches/Apple-lldb-macOS.cmake
+++ b/lldb/cmake/caches/Apple-lldb-macOS.cmake
@@ -2,6 +2,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/Apple-lldb-base.cmake)
 
 set(LLDB_BUILD_FRAMEWORK ON CACHE BOOL "")
 set(LLDB_NO_INSTALL_DEFAULT_RPATH ON CACHE BOOL "")
+set(LLDB_SKIP_STRIP ON CACHE BOOL "")
 set(CMAKE_OSX_DEPLOYMENT_TARGET 10.11 CACHE STRING "")
 
 # Default install location on the enduser machine. On the build machine, use the


        


More information about the lldb-commits mailing list