Changeset View
Changeset View
Standalone View
Standalone View
cmake/modules/LLDBConfig.cmake
Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | |||||
endif() | endif() | ||||
option(LLDB_DISABLE_PYTHON "Disable Python scripting integration." ${default_disable_python}) | option(LLDB_DISABLE_PYTHON "Disable Python scripting integration." ${default_disable_python}) | ||||
option(LLDB_DISABLE_CURSES "Disable Curses integration." ${default_disable_curses}) | option(LLDB_DISABLE_CURSES "Disable Curses integration." ${default_disable_curses}) | ||||
option(LLDB_DISABLE_LIBEDIT "Disable the use of editline." ${default_disable_libedit}) | option(LLDB_DISABLE_LIBEDIT "Disable the use of editline." ${default_disable_libedit}) | ||||
option(LLDB_RELOCATABLE_PYTHON "Use the PYTHONHOME environment variable to locate Python." OFF) | option(LLDB_RELOCATABLE_PYTHON "Use the PYTHONHOME environment variable to locate Python." OFF) | ||||
option(LLDB_USE_SYSTEM_SIX "Use six.py shipped with system and do not install a copy of it" OFF) | option(LLDB_USE_SYSTEM_SIX "Use six.py shipped with system and do not install a copy of it" OFF) | ||||
option(LLDB_BUILD_FRAMEWORK "Build LLDB.framework (Darwin only)" OFF) | option(LLDB_BUILD_FRAMEWORK "Build LLDB.framework (Darwin only)" OFF) | ||||
option(LLDB_NO_INSTALL_DEFAULT_RPATH "Disable default RPATH settings in binaries" OFF) | |||||
option(LLDB_USE_ENTITLEMENTS "When codesigning, use entitlements if available" ON) | option(LLDB_USE_ENTITLEMENTS "When codesigning, use entitlements if available" ON) | ||||
set(LLDB_CODESIGN_IDENTITY lldb_codesign CACHE STRING | set(LLDB_CODESIGN_IDENTITY lldb_codesign CACHE STRING | ||||
"Identity for code signing debugserver (Darwin only)") | "Identity for code signing debugserver (Darwin only)") | ||||
if(LLDB_CODESIGN_IDENTITY) | if(LLDB_CODESIGN_IDENTITY) | ||||
set(LLVM_CODESIGNING_IDENTITY ${LLDB_CODESIGN_IDENTITY} CACHE STRING "" FORCE) | set(LLVM_CODESIGNING_IDENTITY ${LLDB_CODESIGN_IDENTITY} CACHE STRING "" FORCE) | ||||
endif() | endif() | ||||
▲ Show 20 Lines • Show All 405 Lines • Show Last 20 Lines |