[Lldb-commits] [lldb] [lldb] Add terminfo dependency for ncurses support (PR #126810)

Jordan R AW via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 14 16:57:27 PST 2025


================
@@ -11,6 +11,9 @@ set(LLDB_LIBEDIT_LIBS)
 
 if (LLDB_ENABLE_CURSES)
   list(APPEND LLDB_CURSES_LIBS ${PANEL_LIBRARIES} ${CURSES_LIBRARIES})
+  if(NOT CURSES_HAS_TINFO)
+    list(APPEND LLDB_CURSES_LIBS ${TINFO_LIBRARIES})
+  endif()
----------------
ajordanr-google wrote:

I think that should be fine. Will test, and upload!

https://github.com/llvm/llvm-project/pull/126810


More information about the lldb-commits mailing list