[Lldb-commits] [lldb] r202282 - Fixed lldb cmake build to include missing libpanel/libncurses.
Todd Fiala
tfiala at google.com
Wed Feb 26 09:44:00 PST 2014
Author: tfiala
Date: Wed Feb 26 11:44:00 2014
New Revision: 202282
URL: http://llvm.org/viewvc/llvm-project?rev=202282&view=rev
Log:
Fixed lldb cmake build to include missing libpanel/libncurses.
These libraries became necessary recently to link properly.
I think they are needed everywhere non-Windows, but if they
end up breaking on a given platform, we can conditionalize this
further.
Modified:
lldb/trunk/source/CMakeLists.txt
Modified: lldb/trunk/source/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/CMakeLists.txt?rev=202282&r1=202281&r2=202282&view=diff
==============================================================================
--- lldb/trunk/source/CMakeLists.txt (original)
+++ lldb/trunk/source/CMakeLists.txt Wed Feb 26 11:44:00 2014
@@ -141,7 +141,7 @@ set( CLANG_USED_LIBS
set(LLDB_SYSTEM_LIBS)
if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
- list(APPEND LLDB_SYSTEM_LIBS edit)
+ list(APPEND LLDB_SYSTEM_LIBS edit panel ncurses)
endif()
if (NOT LLDB_DISABLE_PYTHON)
list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARIES})
More information about the lldb-commits
mailing list