[Lldb-commits] [PATCH] D36885: [cmake] Explicitly link dependency libraries in the Host library
Zachary Turner via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 18 16:25:07 PDT 2017
zturner added inline comments.
================
Comment at: source/Host/CMakeLists.txt:166-168
+ if (LIBXML2_FOUND)
+ list(APPEND EXTRA_LIBS ${LIBXML2_LIBRARIES})
+ endif()
----------------
Even if libxml is found, that doesn't mean the build is configured to use it, does it? Correct me if I'm wrong. if "libxml exists" is the same as "i want to use libxml" then this seems fine.
Repository:
rL LLVM
https://reviews.llvm.org/D36885
More information about the lldb-commits
mailing list