3d39b878d7
- Build LLDB separated from LLVM. - Re-enable python bindings for the LLDB API. OBS-URL: https://build.opensuse.org/request/show/396684 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm?expand=0&rev=456
21 lines
553 B
Diff
21 lines
553 B
Diff
Index: lldb-3.8.0.src/cmake/modules/LLDBConfig.cmake
|
|
===================================================================
|
|
--- lldb-3.8.0.src.orig/cmake/modules/LLDBConfig.cmake
|
|
+++ lldb-3.8.0.src/cmake/modules/LLDBConfig.cmake
|
|
@@ -323,13 +323,9 @@ else()
|
|
|
|
endif()
|
|
|
|
-if (HAVE_LIBPTHREAD)
|
|
- list(APPEND system_libs pthread)
|
|
-endif(HAVE_LIBPTHREAD)
|
|
+list(APPEND system_libs pthread)
|
|
|
|
-if (HAVE_LIBDL)
|
|
- list(APPEND system_libs ${CMAKE_DL_LIBS})
|
|
-endif()
|
|
+list(APPEND system_libs ${CMAKE_DL_LIBS})
|
|
|
|
if(LLDB_REQUIRES_EH)
|
|
set(LLDB_REQUIRES_RTTI ON)
|