forked from OSchip/llvm-project
Revert the "build fix" in r264104
this was needed because lldb-mi temporarily contained references to private lldb symbols (lldb_private namespace), which it shouldn't have. The situation has since been rectified and this wasn't the right fix anyway, since it can lead to funny ODR violations. llvm-svn: 264733
This commit is contained in:
parent
121e5bc95f
commit
6315e7f000
|
@ -82,8 +82,6 @@ if ( CMAKE_SYSTEM_NAME MATCHES "Windows" OR CMAKE_SYSTEM_NAME MATCHES "NetBSD" )
|
|||
)
|
||||
endif ()
|
||||
|
||||
include(../../cmake/LLDBDependencies.cmake)
|
||||
|
||||
add_lldb_executable(lldb-mi ${LLDB_MI_SOURCES})
|
||||
|
||||
target_link_libraries(lldb-mi liblldb)
|
||||
|
@ -91,8 +89,6 @@ if ( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
|||
target_link_libraries(lldb-mi pthread)
|
||||
endif ()
|
||||
|
||||
# TODO: why isn't this done by add_lldb_executable?
|
||||
target_link_libraries(lldb-mi ${LLDB_USED_LIBS})
|
||||
llvm_config(lldb-mi ${LLVM_LINK_COMPONENTS})
|
||||
|
||||
set_target_properties(lldb-mi PROPERTIES VERSION ${LLDB_VERSION})
|
||||
|
|
Loading…
Reference in New Issue