Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
cmake/LLDBDependencies.cmake
Context not available. | |||||
endif() | endif() | ||||
endif() | endif() | ||||
endif() | endif() | ||||
# On FreeBSD/NetBSD backtrace() is provided by libexecinfo, not libc. | list(APPEND LLDB_SYSTEM_LIBS ${Backtrace_LIBRARY}) | ||||
if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "NetBSD") | |||||
list(APPEND LLDB_SYSTEM_LIBS execinfo) | |||||
endif() | |||||
if (NOT LLDB_DISABLE_PYTHON AND NOT LLVM_BUILD_STATIC) | if (NOT LLDB_DISABLE_PYTHON AND NOT LLVM_BUILD_STATIC) | ||||
list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARIES}) | list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARIES}) | ||||
Context not available. | |||||
brucem: This really should turn into a check so that we don't need this to be extended for every single… | |||||
Not Done ReplyInline ActionsThere is now support for CMake >= 3.0, which offers a builtin check for it. krytarowski: There is now support for CMake >= 3.0, which offers a builtin check for it. | |||||
Not Done ReplyInline ActionsI agree with previous comments - if we can convert this to a CMake built-in check, that would be ideal. tfiala: I agree with previous comments - if we can convert this to a CMake built-in check, that would… |
This really should turn into a check so that we don't need this to be extended for every single OS that gets added.