From c565f09f4b0d908f51aaf4a841285f39ef93bc8c Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 20 Oct 2020 18:15:45 -0700 Subject: [PATCH] [lldb] Don't strip LLDB.framework on install The framework build will run dsymutil after LLDB.framework is installed. --- lldb/cmake/caches/Apple-lldb-macOS.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/cmake/caches/Apple-lldb-macOS.cmake b/lldb/cmake/caches/Apple-lldb-macOS.cmake index 50421d2..2aef411 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 -- 2.7.4