[Lldb-commits] [PATCH] D64399: [CMake] Distribution builds for LLDB standalone
Phabricator via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 10 04:09:45 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL365616: [CMake] Distribution builds for LLDB standalone (authored by stefan.graenitz, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D64399?vs=208695&id=208915#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64399/new/
https://reviews.llvm.org/D64399
Files:
lldb/trunk/CMakeLists.txt
lldb/trunk/cmake/caches/Apple-lldb-macOS.cmake
lldb/trunk/cmake/modules/LLDBStandalone.cmake
Index: lldb/trunk/cmake/modules/LLDBStandalone.cmake
===================================================================
--- lldb/trunk/cmake/modules/LLDBStandalone.cmake
+++ lldb/trunk/cmake/modules/LLDBStandalone.cmake
@@ -85,6 +85,7 @@
include(TableGen)
include(HandleLLVMOptions)
include(CheckAtomic)
+ include(LLVMDistributionSupport)
if (PYTHON_EXECUTABLE STREQUAL "")
set(Python_ADDITIONAL_VERSIONS 3.5 3.4 3.3 3.2 3.1 3.0 2.7 2.6 2.5)
Index: lldb/trunk/cmake/caches/Apple-lldb-macOS.cmake
===================================================================
--- lldb/trunk/cmake/caches/Apple-lldb-macOS.cmake
+++ lldb/trunk/cmake/caches/Apple-lldb-macOS.cmake
@@ -15,5 +15,13 @@
# Release builds may change these:
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.11 CACHE STRING "")
-set(LLDB_USE_SYSTEM_DEBUGSERVER ON CACHE BOOL "")
+set(LLDB_USE_SYSTEM_DEBUGSERVER OFF CACHE BOOL "")
set(LLVM_EXTERNALIZE_DEBUGINFO OFF CACHE BOOL "")
+
+set(LLVM_DISTRIBUTION_COMPONENTS
+ lldb
+ liblldb
+ lldb-argdumper
+ darwin-debug
+ debugserver
+ CACHE STRING "")
Index: lldb/trunk/CMakeLists.txt
===================================================================
--- lldb/trunk/CMakeLists.txt
+++ lldb/trunk/CMakeLists.txt
@@ -216,3 +216,7 @@
COMMENT "Copying Python DLL to LLDB binaries directory.")
endif ()
endif ()
+
+if(LLDB_BUILT_STANDALONE)
+ llvm_distribution_add_targets()
+endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64399.208915.patch
Type: text/x-patch
Size: 1427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190710/20148eb2/attachment.bin>
More information about the lldb-commits
mailing list