[Lldb-commits] [PATCH] D153844: Summary: [lldb] Fix libncurses, libpanel library link order
Hau Hsu via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 28 00:01:05 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG28722dcc2556: Summary: [lldb] Fix libncurses, libpanel library link order (authored by hauhsu).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153844/new/
https://reviews.llvm.org/D153844
Files:
lldb/source/Core/CMakeLists.txt
Index: lldb/source/Core/CMakeLists.txt
===================================================================
--- lldb/source/Core/CMakeLists.txt
+++ lldb/source/Core/CMakeLists.txt
@@ -10,7 +10,7 @@
set(LLDB_LIBEDIT_LIBS)
if (LLDB_ENABLE_CURSES)
- list(APPEND LLDB_CURSES_LIBS ${CURSES_LIBRARIES} ${PANEL_LIBRARIES})
+ list(APPEND LLDB_CURSES_LIBS ${PANEL_LIBRARIES} ${CURSES_LIBRARIES})
if(LLVM_ENABLE_TERMINFO)
list(APPEND LLDB_CURSES_LIBS ${TERMINFO_LIB})
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153844.535252.patch
Type: text/x-patch
Size: 482 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230628/8893fdfe/attachment.bin>
More information about the lldb-commits
mailing list